:root {
  --body-bg-color: #202627;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #000000;
  --link-color: #f34a23;
  --header-bg-color: #ffffff;
  --font-family: Georgia, serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color) !important;
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}
.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

.navbar {
  background-color: var(--header-bg-color) !important;
}

.hero-section {
  padding: 123px 0 25px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

@media screen and (min-width: 1199.98px) {
  .dropdown-menu {
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%);
  }
}

.navbar .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}

.custom-dropdown .dropdown-item i {
  width: 16px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.custom-dropdown .dropdown-item:hover i {
  color: #fff;
}

.dropdown-menu {
  opacity: 0;
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media (min-width: 1199.98px) {
  .custom-dropdown {
    max-width: 200px;
  }
}

@media (max-width: 1199.98px) {
  .custom-dropdown {
    display: none;
    background: #f8f9fa;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    border-top: 1px solid #dee2e6;
  }

  .custom-dropdown .dropdown-item:hover {
    margin: 0;
    border-radius: 0;
    transform: none;
  }
}

.dropdown-menu:hover,
.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible;
  opacity: 1;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #91919131 !important;
}

.floating-rounded-navbar {
  background: linear-gradient(
    135deg,
    #727272,
    #1b1b1b
  ) !important; /* soft metallic dark gradient */
  position: absolute !important;
  top: 8px !important;
  left: 7px !important;
  right: 7px !important;
  width: calc(100% - 11px) !important;
  z-index: 2000;
  border-radius: 21px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 179, 71, 0.15); /* dark + warm glow */
}

@media (max-width: 1199.98px) {
  .floating-rounded-navbar .navbar-collapse {
    top: 85px !important;
  }
}

.navbar-brand {
  margin-right: 0 !important;
}

.contact-container {
  width: 500px;
  margin: 250px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}

@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}
/* From Uiverse.io by jeremyssocial */
body {
  width: 100%;
  height: 100%;
  /* Add your background pattern here */
  background-image: repeating-radial-gradient(
    #0c0a0a 80%,
    #2f312f 90%,
    #3f4549 90%
  );
  background-size: 65px 65px;
}
/* === Modern Dark Mexican Style for .heading (no root variables) === */

.heading {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px 17px;
  color: #f0edea;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.7;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heading:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.6);
}

/* Headline */
.heading h2 {
  margin-bottom: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ff3b2f !important; /* chili red */
  text-transform: uppercase;
}

/* Subtle accent underline for headline */
.heading h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 0.4rem;
  border-radius: 2px;
  background-color: #f39300; /* cactus green */
}

/* Paragraph text */
.heading p {
  color: #c8c3bd;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  margin-bottom: 1rem;
}

/* First paragraph brighter for emphasis */
.heading p:first-of-type {
  color: #f0edea;
}

/* Accent inside text */
.heading em,
.heading strong {
  color: #f0edea;
  font-weight: 600;
}

/* Optional divider between paragraphs */
.heading p + p {
  border-top: 1px dashed rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}

/* Focus/keyboard accessibility */
.heading:focus,
.heading:focus-within {
  outline: 2px solid #16b66b;
  outline-offset: 3px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .heading {
    padding: 1rem 1.2rem;
  }
  .heading h2 {
    font-size: 1.8rem;
  }
}
.box {
  background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 25px 17px;
  color: #f1f1f1;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
  border-color: #ffb347; /* subtle warm highlight on hover */
}

.box h2 {
  font-family: "Poppins", sans-serif;
  color: #ffb347 !important; /* appetizing golden-orange */
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 179, 71, 0.3);
}

.box p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 12px;
}

.box img {
  border-radius: 12px;
  outline: 2px solid rgba(255, 179, 71, 0.2);
  transition: all 0.3s ease;
}

.box img:hover {
  transform: scale(1.03);
  border-color: #ffb347;
  box-shadow: 0 0 15px rgba(255, 179, 71, 0.4);
}
.cust-bg {
  background: linear-gradient(145deg, #111, #1b1b1b);
  border-radius: 18px;
  padding: 40px 21px;
  margin: 40px 0;
  color: #f3f3f3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Subtle golden glow accent for luxury vibe */
.cust-bg::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle at top left,
    rgba(255, 202, 110, 0.08),
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.cust-bg:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 202, 110, 0.2);
}

/* Headline styling */
.cust-bg h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffca6e; /* gold accent */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 202, 110, 0.2);
  z-index: 1;
  position: relative;
}

/* Body text */
.cust-bg p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

/* Optional accent border line */
.cust-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffca6e, transparent);
  transform: translateX(-50%);
  opacity: 0.3;
}
.footer {
  background: linear-gradient(145deg, #111, #1b1b1b);
  color: #f5f5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.4);
  font-family: "Open Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle glowing accent background */
.footer::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 180, 80, 0.1),
    transparent 70%
  );
  z-index: 0;
}

.footer * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ffb347;
  letter-spacing: 0.5px;
}

.footer-brand i {
  color: #ffb347;
}

/* Social links */
.social-links span {
  color: #dcdcdc;
  margin: 0 12px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.social-links span:hover {
  color: #ffb347;
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(255, 179, 71, 0.4);
}

/* Contact and privacy */
.footer-contact span,
.footer-contact a {
  display: inline-block;
  color: #ccc;
  font-size: 0.95rem;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #ffb347;
  text-decoration: none;
}

/* Icons */
.footer-contact i {
  color: #ffb347;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .footer-contact span,
  .footer-contact a {
    display: block;
    margin: 5px 0;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.error_page {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  color: #f1f1f1;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle warm background glow */
.error_page::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle at center,
    rgba(255, 179, 71, 0.08),
    transparent 70%
  );
  z-index: 0;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

/* Text & icons stay above glow */
.error_page * {
  position: relative;
  z-index: 1;
}

/* 404 main heading */
.error_page h1 {
  font-family: "Poppins", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  color: #ffb347;
  text-shadow: 0 0 20px rgba(255, 179, 71, 0.4);
  margin-bottom: 10px;
}

/* Subheading */
.error_page h2 {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Paragraph */
.error_page p {
  font-family: "Open Sans", sans-serif;
  color: #dcdcdc;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Icon style */
.error_page i {
  color: #ffb347;
  animation: bounceIcon 2s infinite ease-in-out;
  display: inline-block;
  margin-bottom: 20px;
}

/* Button */
.error_page_btn {
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  border: none;
  color: #111 !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 179, 71, 0.4);
}

.error_page_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 179, 71, 0.6);
}

/* Animations */
@keyframes pulseGlow {
  from {
    opacity: 0.15;
    transform: scale(1);
  }
  to {
    opacity: 0.35;
    transform: scale(1.1);
  }
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* Card container */
.newsletter-card {
  background: linear-gradient(145deg, #1c1c1c, #262626);
  color: #eeeeee;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  width: 279px !important;
}

/* subtle glow accent */
.newsletter-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -50%;
  width: 120%;
  height: 180%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 179, 71, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

/* Title */
.newsletter-card h3 {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
  color: #eeeeee;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  box-shadow: 0 0 10px rgba(255, 179, 71, 0.6);
  display: inline-block;
}

.newsletter-copy {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: #cfcfcf;
  line-height: 1.5;
}

/* Form */
.newsletter-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.input-wrap {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-direction: column;
}

.newsletter-form input[type="email"] {
  flex: 1 1 auto;
  background: #101010;
  color: #eeeeee;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: #9c9c9c;
}

.newsletter-form input[type="email"]:focus {
  border-color: #ffb347;
  box-shadow: 0 0 0 3px rgba(127, 209, 255, 0.25),
    0 0 12px rgba(255, 179, 71, 0.45);
  background: #0e0e0e;
}

/* Button */
.btn-submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  color: #111;
  box-shadow: 0 6px 18px rgba(255, 179, 71, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 179, 71, 0.5);
  filter: saturate(1.05);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Pure CSS arrow icon */
.btn-submit .arrow {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid #111;
  border-top: 2px solid #111;
  transform: rotate(45deg);
  margin-left: 2px;
}

/* Helper text */
.disclaimer {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #bdbdbd;
}

.disclaimer a {
  color: #ffb347;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 179, 71, 0.35);
}

.disclaimer a:hover {
  border-bottom-color: transparent;
}

/* Optional server message styles */
.form-msg {
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-msg.success {
  color: #7dffa7;
}

.form-msg.error {
  color: #ff5959;
}
.contact-container {
  background: linear-gradient(145deg, #1a1a1a, #262626);
  color: #f1f1f1;
  border-radius: 18px;
  padding: 30px 35px;
  max-width: 600px;
  margin: 150px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Soft background glow */
.contact-container::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at top left, rgba(255, 179, 71, 0.08), transparent 70%);
  z-index: 0;
}

/* Header section */
.contact-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.contact-header i {
  font-size: 2.5rem;
  color: #ffb347;
  margin-bottom: 10px;
}

.contact-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  margin: 0;
}

/* Subheading */
.contact-container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #ffb347;
  margin-bottom: 20px;
  text-align: center;
}

/* Form elements */
.form-label {
  font-size: 0.95rem;
  color: #dcdcdc;
  margin-bottom: 6px;
}

.form-control {
  background-color: #101010;
  color: #f1f1f1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #9c9c9c;
}

.form-control:focus {
  background-color: #0e0e0e;
  border-color: #ffb347;
  box-shadow: 0 0 10px rgba(255, 179, 71, 0.3);
}

/* Submit button */
.btn-primary {
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  border: none;
  color: #111;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 179, 71, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover:enabled {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 179, 71, 0.6);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Email link */
.email-link {
  text-align: center;
  margin-top: 25px;
  color: #ccc;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.email-link i {
  color: #ffb347;
  margin-right: 6px;
}

@media (max-width: 576px) {
  .contact-container {
    padding: 30px 20px;
  }
  .contact-header h1 {
    font-size: 1.6rem;
  }
}


.supporters-card {
    width: 100%;
    margin-top: 20px;
    padding: 18px 16px;
    text-align: center;

    background: linear-gradient(135deg, #111827, #1f2933);
    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.supporters-mini-card {
    width: 279px;
    margin-top: 16px;
    padding: 18px 16px;

    background: linear-gradient(145deg, #1b1b1b, #242424);
    color: #eeeeee;

    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);

    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.supporters-mini-card::before {
    content: "";
    position: absolute;
    top: -45%;
    right: -55%;
    width: 120%;
    height: 180%;
    background: radial-gradient(circle at top right,
            rgba(255, 179, 71, 0.07),
            transparent 60%);
    pointer-events: none;
}

.supporters-mini-card h3 {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.supporters-mini-card .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb347, #ff8c00);
    box-shadow: 0 0 10px rgba(255, 179, 71, 0.6);
}

.supporter-logo img {
    width: 220px;
    max-width: 100%;
    padding: 10px;

    background: rgba(24, 20, 20, 0.92);
    border-radius: 10px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.supporter-logo:hover img {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}