/* Define accent-yellow variable so this stylesheet is self-contained */
:root {
  --accent-yellow: #ffd54a;
  --footer-accent: #6b7280; /* muted grey accent for footer */
  /* Modal typography and color variables (overrides for a neutral, professional modal look) */
  --modal-bg: #ffffff; /* light, neutral background */
  --modal-border: #e6e9ee; /* subtle border */
  --modal-title-color: #0b1724; /* deep slate */
  --modal-subtitle-color: #334155; /* muted dark */
  --modal-body-color: #1f2937; /* body text */
  --modal-muted: #6b7280; /* muted accent */
  --modal-strong-color: #111827; /* strong / emphasis color */
  --modal-accent: #6b7280; /* link / subtle accent */
  --modal-title-weight: 700;
  --modal-body-weight: 400;
  --modal-strong-weight: 600;
}

/* Scrollbar styling for black scrollbars with light track */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #111827;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

/* Standard scrollbar for Firefox and other browsers */
* {
  scrollbar-color: #111827 #f1f5f9;
  scrollbar-width: thin;
}

/* UNIVERSAL FOOTER STYLES - Applied to all pages */

/* Base footer styling */
.site-footer.site-footer-modern {
  --fg-light: rgba(255,255,255,0.92);
  --fg-muted: rgba(255,255,255,0.72);
  --bg-charcoal: #75755C;
  --bg-charcoal-2: #75755C;
  background: linear-gradient(135deg, var(--bg-charcoal) 0%, var(--bg-charcoal-2) 100%);
  color: #f5f5f5 !important;
  padding: 80px 60px 32px !important;
  margin-top: 15px !important;
  display: block !important;
  font-family: "Montserrat", Arial, sans-serif !important;
}

.site-footer.site-footer-modern .container.footer-top {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.site-footer.site-footer-modern .footer-top {
  display: block !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}

.site-footer.site-footer-modern .footer-grid {
  display: grid !important;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.5fr !important;
  gap: 64px !important;
  align-items: flex-start !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  margin-left: -5px !important;
}

.site-footer.site-footer-modern .footer-brand {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  margin: 0 !important;
}

.site-footer.site-footer-modern .footer-brand .logo {
  display: inline-block !important;
  margin-bottom: 12px !important;
  text-decoration: none !important;
}

.site-footer.site-footer-modern .footer-brand .logo img {
  width: 180px !important;
  height: auto !important;
  margin-bottom: 12px !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}

.site-footer.site-footer-modern .footer-brand .logo img:hover {
  transform: scale(1.02) !important;
}

.site-footer.site-footer-modern .footer-brand .brand-desc {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--fg-muted) !important;
  max-width: 320px !important;
  letter-spacing: 0.35px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  font-family: "Montserrat", sans-serif !important;
  margin: 0 !important;
}

.site-footer.site-footer-modern .footer-brand .footer-socials {
  display: flex !important;
  gap: 20px;
  margin-top: 28px !important;
  align-items: center !important;
}

.site-footer.site-footer-modern .footer-brand .footer-socials .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #7a8976; /* muted greenish-gray */
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    position: relative;
    overflow: hidden;
}

.site-footer.site-footer-modern .footer-brand .footer-socials .social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(51, 65, 85, 0.12),
    rgba(51, 65, 85, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-footer.site-footer-modern .footer-brand .footer-socials .social:hover::before {
  opacity: 1;
}

.site-footer.site-footer-modern .footer-brand .footer-socials .social:hover {
  background: #6b7a68; /* darker greenish-gray on hover */
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.12);
}
/* when hovered we make the inner icon pop as white */
.site-footer.site-footer-modern .footer-brand .footer-socials .social:hover img,
.site-footer.site-footer-modern .footer-brand .footer-socials .social:hover lottie-player {
  /* preserve original icon color; add subtle brightness instead */
  filter: none;
  opacity: 1;
}

.site-footer.site-footer-modern .footer-brand .footer-socials .social img,
.site-footer.site-footer-modern .footer-brand .footer-socials .social lottie-player {
  width: auto; /* respect inline HTML sizes (e.g., width="36" on elements) */
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: none; /* preserve real, original icon colors */
  max-width: 36px; /* ensure icons don't grow beyond intended sizes */
  max-height: 36px;
}

.site-footer.site-footer-modern .footer-links-mobile {
  display: none !important;
}

.site-footer.site-footer-modern .footer-links {
  display: flex !important;
  gap: 72px;
  flex-wrap: nowrap !important;
}

.site-footer.site-footer-modern .footer-links .col {
  min-width: 140px;
  margin-left: 30px;
  margin-right: 30px;
}

.site-footer.site-footer-modern .footer-links h4 {
  font-size: 13px !important;
  letter-spacing: 1.6px !important;
  margin-bottom: 18px !important;
  color: var(--fg-light) !important;
  opacity: 0.96 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-family: "Montserrat", sans-serif !important;
  margin-top: 0 !important;
}

.site-footer.site-footer-modern .footer-links .col a {
  font-size: 15px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  font-weight: 500;
  text-transform: capitalize;
}

.site-footer.site-footer-modern .footer-links .col a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--footer-accent);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-footer.site-footer-modern .footer-links .col a:hover,
.site-footer.site-footer-modern .footer-links .col a:focus {
  color: var(--footer-accent);
}

.site-footer.site-footer-modern .footer-links .col a:hover::after,
.site-footer.site-footer-modern .footer-links .col a:focus::after {
  width: 100%;
}

/* Remove list styles from footer links */
.site-footer.site-footer-modern .footer-links ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.site-footer.site-footer-modern .footer-links ul li {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
}

.site-footer.site-footer-modern .footer-links-mobile ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.site-footer.site-footer-modern .footer-links-mobile ul li {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
}

.site-footer.site-footer-modern .footer-newsletter {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  max-width: 100% !important;
}

.site-footer.site-footer-modern .footer-newsletter h4 {
  font-size: 14px !important;
  letter-spacing: 2.2px !important;
  margin-bottom: 12px !important;
  opacity: 0.98 !important;
  color: rgba(255,255,255,0.92) !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

.site-footer.site-footer-modern .footer-newsletter .small {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  line-height: 1.6 !important;
  font-weight: 300 !important;
  text-transform: capitalize !important;
}

.site-footer.site-footer-modern .newsletter-form {
  display: flex !important;
  gap: 12px !important;
  align-items: stretch !important;
  margin-top: 16px !important;
  width: 100% !important;
}

.site-footer.site-footer-modern .newsletter-form input[type="email"] {
  flex: 1 !important;
  min-width: 200px !important;
  padding: 14px 18px !important;
  border-radius: 8px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: lowercase !important;
}

.site-footer.site-footer-modern .newsletter-form input[type="email"]::placeholder {
  color: #cfcdcd !important;
  opacity: 1 !important;
}
.site-footer.site-footer-modern .newsletter-form .btn-subscribe {
  background: #111827 !important; /* dark neutral CTA */
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: none !important;
  overflow: hidden !important;
  width: auto !important;
  height: auto !important;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
}

.site-footer.site-footer-modern .newsletter-form .btn-subscribe.subscribing {
  color: #ffffff !important;
  background: #0b1220 !important;
}

.site-footer.site-footer-modern .newsletter-form .btn-subscribe.subscribed {
  background: #4caf50 !important;
  color: #fff !important;
}

.site-footer.site-footer-modern .footer-contact {
  margin-top: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.site-footer.site-footer-modern .footer-contact .contact-item {
  display: flex !important;
  gap: 14px !important;
  align-items: flex-start !important;
  color: var(--fg-muted) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: normal !important;
}

.site-footer.site-footer-modern .footer-contact .contact-item:last-child {
  border-bottom: none !important;
}

.site-footer.site-footer-modern .footer-contact .icon {
  min-width: 24px !important;
  text-align: center !important;
  font-size: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.site-footer.site-footer-modern .footer-contact a {
  color: rgba(255, 255, 255, 0.76) !important;
  text-decoration: none !important;
  position: relative !important;
  padding-bottom: 2px !important;
  border-bottom: none !important;
  font-weight: 500 !important;
  transition: color 0.2s ease !important;
  display: inline !important;
}

.site-footer.site-footer-modern .footer-contact a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--footer-accent) !important;
  transition: width 0.3s ease !important;
}

.site-footer.site-footer-modern .footer-contact a:hover,
.site-footer.site-footer-modern .footer-contact a:focus {
  color: var(--footer-accent) !important;
}

.site-footer.site-footer-modern .footer-contact a:hover::after,
.site-footer.site-footer-modern .footer-contact a:focus::after {
  width: 100% !important;
}

.site-footer.site-footer-modern .footer-contact a:hover {
  color: var(--footer-accent);
}

.site-footer.site-footer-modern .site-footer-bottom {
  display: block !important;
  background: transparent !important;
  border-color: rgba(0, 0, 0, 0);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0);
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 16px 0 !important;
  margin-top: 24px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.site-footer.site-footer-modern .site-footer-bottom .bottom-inner {
  display: flex;
  gap: 24px !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.site-footer.site-footer-modern .footer-meta {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.site-footer.site-footer-modern .footer-meta a {
  color: rgba(255, 255, 255, 0.66) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  text-transform: capitalize !important;
  position: relative !important;
  display: inline-block !important;
  font-weight: 500 !important;
  letter-spacing: normal !important;
  padding-bottom: 2px !important;
}

.site-footer.site-footer-modern .footer-meta a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--footer-accent) !important;
  transition: width 0.3s ease !important;
}

.site-footer.site-footer-modern .footer-meta a:hover,
.site-footer.site-footer-modern .footer-meta a:focus {
  color: var(--footer-accent) !important;
}

.site-footer.site-footer-modern .footer-meta a:hover::after,
.site-footer.site-footer-modern .footer-meta a:focus::after {
  width: 100% !important;
}

.site-footer.site-footer-modern .copyright {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
  font-family: "Montserrat", sans-serif !important;
}

/* Floating WhatsApp button (global) */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #2bb826 100%);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.12);
  border: 2px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  touch-action: none; /* prevent default touch gestures while dragging */
  user-select: none;
}
.floating-whatsapp img {
  width: 28px;
  height: 28px;
  display: block;
}
.floating-whatsapp:focus, .floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.18);
}

.floating-whatsapp.dragging {
  transform: none !important; /* while dragging we move via left/top */
  transition: none !important;
  cursor: grabbing !important;
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.24) !important;
  opacity: 0.98;
}

@media (max-width: 520px) {
  .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .floating-whatsapp img { width: 24px; height: 24px; }
}

.site-footer.site-footer-modern .made-with {
  display: flex !important;
  gap: 16px !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: normal !important;
  text-transform: lowercase !important;
  flex-wrap: wrap !important;
}

.site-footer.site-footer-modern .byund {
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-transform: capitalize !important;
}

.site-footer.site-footer-modern .byund img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.site-footer.site-footer-modern .reach-us-btn {
  margin-left: 16px !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
}

.site-footer.site-footer-modern .reach-us-btn:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: rgba(255, 255, 255, 1) !important;
}

/* ========== MOBILE RESPONSIVENESS ========== */

@media (max-width: 1000px) {
  .site-footer.site-footer-modern .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .site-footer.site-footer-modern .footer-newsletter {
    grid-column: span 2;
    order: 3;
  }
}

@media (max-width: 640px) {
  .site-footer.site-footer-modern {
    padding: 32px 16px 40px !important;
  }

  .site-footer.site-footer-modern .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .site-footer.site-footer-modern .footer-brand {
    text-align: left;
  }

  .site-footer.site-footer-modern .footer-brand .logo img {
    width: 105px !important;
    margin-bottom: 4px !important;
  }

  .site-footer.site-footer-modern .footer-brand .brand-desc {
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: rgb(255, 255, 255) !important;
    margin-bottom: 8px !important;
  }

  .site-footer.site-footer-modern .footer-brand .footer-socials {
    justify-content: center;
    gap: 13px !important;
    margin-top: 13px !important;
  }

  .site-footer.site-footer-modern .footer-links-mobile {
    display: flex !important;
    gap: 0 !important;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin-top: 8px !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .site-footer.site-footer-modern .footer-links-mobile .col {
    text-align: center;
    flex: 1 1 auto;
    min-width: 120px;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-footer.site-footer-modern .footer-links-mobile .col:nth-child(3) {
    margin-top: 20px !important;
    width: 100% !important;
  }

  .site-footer.site-footer-modern .footer-links-mobile .footer-socials-mobile {
    margin-top: 16px !important;
  }

  .site-footer.site-footer-modern .footer-links-mobile h4 {
    font-size: 11px;
    letter-spacing: 1.4px;
    margin-bottom: 7px;
    opacity: 0.94;
  }

  .site-footer.site-footer-modern .footer-links-mobile .col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    display: inline-block;
    transition: color 0.25s ease;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-footer.site-footer-modern .footer-links-mobile .col a:hover {
    color: var(--footer-accent);
  }

  /* Remove all gaps and spacing from footer-links-mobile to match index footer */
  .site-footer.site-footer-modern .footer-links-mobile .col ul {
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-footer.site-footer-modern .footer-links-mobile .col ul li {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .site-footer.site-footer-modern .footer-links-mobile .col ul li a {
    padding: 0 !important;
    margin: 0 !important;
    display: inline !important;
  }

  .site-footer.site-footer-modern .footer-socials-mobile {
    display: none !important;
  }

  .site-footer.site-footer-modern .footer-socials {
    display: flex !important;
    gap: 13px !important;
    margin-top: 13px !important;
    justify-content: center !important;
  }

  .site-footer.site-footer-modern .footer-socials .social {
    width: 40px !important;
    height: 40px !important;
  }

  .site-footer.site-footer-modern .footer-links {
    display: none !important;
    flex-direction: column;
    gap: 18px !important;
    align-items: stretch;
  }

  .site-footer.site-footer-modern .footer-links .col {
    text-align: center;
    min-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .site-footer.site-footer-modern .footer-links h4 {
    font-size: 11px;
    letter-spacing: 1.4px;
    margin-bottom: 7px;
    opacity: 0.94;
  }

  .site-footer.site-footer-modern .footer-links .col a {
    font-size: 13px;
  }

  .site-footer.site-footer-modern .footer-newsletter {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
    justify-self: center !important;
    max-width: calc(100% - 16px) !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .site-footer.site-footer-modern .footer-newsletter h4 {
    font-size: 11px !important;
    letter-spacing: 1.4px !important;
    text-align: left !important;
    opacity: 0.94 !important;
    margin-bottom: 6px !important;
  }

  .site-footer.site-footer-modern .footer-newsletter .small {
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }

  .site-footer.site-footer-modern .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer.site-footer-modern .newsletter-form input[type="email"] {
    width: 100%;
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 9px;
    touch-action: manipulation;
  }

  .site-footer.site-footer-modern .newsletter-form .btn-subscribe {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    min-height: 48px;
    border-radius: 10px;
  }

  /* Make footer background span full viewport width on mobile while keeping inner layout unchanged */
  .site-footer.site-footer-modern {
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
    border-radius: 0 !important; /* remove any rounding that reveals background at edges */
    padding-left: 16px !important; /* keep internal padding for content */
    padding-right: 16px !important;
  }

  .site-footer.site-footer-modern .footer-contact {
    gap: 4px !important;
    margin-top: 11px !important;
  }

  .site-footer.site-footer-modern .footer-contact .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 2px !important;
    font-size: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.82);
    padding: 6px 0 !important;
  }

  .site-footer.site-footer-modern .site-footer-bottom {
    margin-top: 16px !important;
    padding-top: 15px !important;
  }

  .site-footer.site-footer-modern .footer-meta {
    gap: 12px !important;
    font-size: 11px;
  }

  .site-footer.site-footer-modern .footer-meta a {
    font-size: 11px;
  }

  .site-footer.site-footer-modern .copyright {
    font-size: 9px;
  }

  .site-footer.site-footer-modern .made-with {
    flex-direction: column;
    gap: 5px;
    font-size: 9px;
    justify-content: center;
    align-items: center;
  }

  .site-footer.site-footer-modern .reach-us-btn {
    margin-left: 0;
    padding: 5px 9px;
    font-size: 9px;
  }
}


/* Accessibility helpers */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* =====================
   GLOBAL MODAL STYLES
   ===================== */
.app-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.app-modal.hidden { display: none; }
.app-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.452) 0%, rgba(30, 30, 30, 0.55) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: overlayFadeIn 0.3s ease-out;
}
@keyframes overlayFadeIn {
  from { opacity: 0; backdrop-filter: blur(0px); }
  to { opacity: 1; backdrop-filter: blur(3px); }
}
.app-modal .modal-surface {
  position: relative;
  z-index: 10000;
  width: min(900px, calc(100% - 32px));
  max-height: 85vh;
  background: rgb(243, 240, 236);
  color: var(--modal-body-color);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.08);
  border: 1px solid var(--modal-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.app-modal .modal-head {
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--modal-border);
  background: transparent;
}
.app-modal .modal-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: var(--modal-title-weight);
  letter-spacing: 0.2px;
  color: var(--modal-title-color);
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: none;
}
.app-modal .modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  background: rgba(16, 24, 40, 0.04);
  border: 1px solid rgba(16, 24, 40, 0.06);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: rgba(16, 24, 40, 0.65);
  padding: 4px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-modal .modal-close:hover {
  background: rgba(16, 24, 40, 0.06);
  color: rgba(16, 24, 40, 0.9);
  border-color: rgba(51, 65, 85, 0.12);
  transform: scale(1.06);
}
.app-modal .modal-close:active {
  transform: scale(0.96);
}
.app-modal .modal-body {
  padding: 22px 30px 26px;
  overflow-y: auto;
  line-height: 1.75;
  font-size: 15px;
  color: var(--modal-body-color);
  font-family: "Montserrat", sans-serif;
  font-weight: var(--modal-body-weight);
  letter-spacing: 0.2px;
  text-transform: none;
}
.app-modal .modal-body .lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--modal-subtitle-color);
  margin-bottom: 12px;
}
.app-modal .modal-body p {
  margin-bottom: 18px;
  transition: transform 0.2s ease;
}
.app-modal .modal-body p:last-child {
  margin-bottom: 0;
}
.app-modal .modal-body a {
  color: var(--modal-accent);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}
.app-modal .modal-body a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--modal-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.app-modal .modal-body a:hover {
  color: #fff;
}
.app-modal .modal-body a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
/* Emphasis & utility typography for modals */
.app-modal .modal-body strong {
  color: var(--modal-strong-color);
  font-weight: var(--modal-strong-weight);
}
.app-modal .modal-body em {
  color: var(--modal-subtitle-color);
  font-style: italic;
  font-weight: 500;
}
.app-modal .modal-body .muted {
  color: var(--modal-muted);
  font-weight: 300;
  font-size: 14px;
}
.app-modal .modal-body ul {
  margin-left: 16px;
  margin-bottom: 12px;
}
.app-modal .modal-body ul li {
  margin-bottom: 8px;
  color: var(--modal-subtitle-color);
  font-weight: 400;
}
.app-modal .modal-body blockquote {
  margin: 12px 0;
  padding: 12px 16px;
  border-left: 3px solid rgba(255,213,74,0.24);
  background: rgba(255,255,255,0.02);
  color: var(--modal-subtitle-color);
  font-weight: 500;
}
/* Scrollbar styling for modal body */
.app-modal .modal-body::-webkit-scrollbar {
  width: 6px;
}
.app-modal .modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}
.app-modal .modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 213, 74, 0.5);
  border-radius: 3px;
  transition: background 0.2s ease;
}
.app-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 213, 74, 0.7);
}
@media (max-width: 768px){
  .app-modal .modal-surface {
    width: calc(100% - 30px);
    max-height: 70vh;
    border-radius: 12px;
  }
  .app-modal .modal-head {
    padding: 22px 24px 16px;
  }
  .app-modal .modal-head h2 {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .app-modal .modal-body {
    padding: 22px 24px;
    font-size: 14px;
    line-height: 1.7;
  }
  .app-modal .modal-close {
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
  }
}
