/* ==========================================================================
   Dominican Federation of Chambers & Organizations Abroad, Inc.
   Custom styles — Bootstrap 5.3 + CSS3 (no preprocessors)
   Author: Front-End Expert Agent
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --df-blue-dark: #002d72;
  --df-blue: #0057b8;
  --df-red: #ce1126;
  --df-white: #ffffff;
  --df-gray-light: #f5f7fa;
  --df-gray-dark: #2b2f38;
  --df-gold: #c9a227;

  --df-shadow-sm: 0 4px 16px rgba(0, 45, 114, 0.07);
  --df-shadow: 0 8px 28px rgba(0, 45, 114, 0.1);
  --df-shadow-lg: 0 16px 48px rgba(0, 45, 114, 0.16);

  --df-radius: 6px;
  --df-radius-lg: 14px;

  --df-font-heading: "Poppins", sans-serif;
  --df-font-body: "Inter", sans-serif;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--df-font-body);
  font-weight: 400;
  color: var(--df-gray-dark);
  background-color: var(--df-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--df-font-heading);
  font-weight: 600;
  color: var(--df-blue-dark);
  line-height: 1.25;
}

p {
  line-height: 1.75;
}

a {
  color: var(--df-blue);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--df-red);
}

::selection {
  background: var(--df-blue);
  color: var(--df-white);
}

img {
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   3. SECTION UTILITIES
   -------------------------------------------------------------------------- */
.df-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.df-section--gray {
  background-color: var(--df-gray-light);
}

.df-section--blue {
  background: linear-gradient(120deg, var(--df-blue-dark), var(--df-blue) 70%, var(--df-red) 160%);
  color: var(--df-white);
}

.df-section--blue h1,
.df-section--blue h2,
.df-section--blue h3,
.df-section--blue h4,
.df-section--blue h5,
.df-section--blue h6 {
  color: var(--df-white);
}

.df-section--blue p {
  color: rgba(255, 255, 255, 0.9);
}

.df-section--blue .df-divider-gold {
  background: var(--df-gold);
}

.df-section-head {
  margin-bottom: 56px;
}

.df-section-head--left {
  text-align: left;
}

.df-kicker {
  display: inline-block;
  font-family: var(--df-font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--df-blue);
  margin-bottom: 0.65rem;
}

.df-section--blue .df-kicker {
  color: var(--df-gold);
}

/* --------------------------------------------------------------------------
   4. BRAND / LOGO
   -------------------------------------------------------------------------- */

.brand-logo {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.df-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.df-brand:hover {
  color: inherit;
}

.brand-mark {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--df-blue-dark) 0% 50%, var(--df-red) 50% 100%);
  color: var(--df-white);
  font-family: var(--df-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.brand-text {
  line-height: 1.2;
  color: var(--df-blue-dark);
  font-family: var(--df-font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.brand-text small {
  display: block;
  font-family: var(--df-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--df-gray-dark);
  opacity: 0.75;
}

/* Light variant for dark backgrounds (footer) */
.df-brand--light .brand-text {
  color: var(--df-white);
}

.df-brand--light .brand-text small {
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn-df,
.btn-df-red,
.btn-df-gold,
.btn-df-outline,
.btn-df-white-outline {
  border-radius: var(--df-radius);
  font-family: var(--df-font-heading);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-df {
  background-color: var(--df-blue);
  border: 2px solid var(--df-blue);
  color: var(--df-white);
}

.btn-df:hover,
.btn-df:focus {
  background-color: var(--df-blue-dark);
  border-color: var(--df-blue-dark);
  color: var(--df-white);
}

.btn-df-red {
  background-color: var(--df-red);
  border: 2px solid var(--df-red);
  color: var(--df-white);
}

.btn-df-red:hover,
.btn-df-red:focus {
  background-color: #a90d1e;
  border-color: #a90d1e;
  color: var(--df-white);
}

.btn-df-gold {
  background-color: var(--df-gold);
  border: 2px solid var(--df-gold);
  color: var(--df-white);
}

.btn-df-gold:hover,
.btn-df-gold:focus {
  background-color: #a9861e;
  border-color: #a9861e;
  color: var(--df-white);
}

.btn-df-outline {
  background-color: transparent;
  border: 2px solid var(--df-blue);
  color: var(--df-blue);
}

.btn-df-outline:hover,
.btn-df-outline:focus {
  background-color: var(--df-blue);
  color: var(--df-white);
}

.btn-df-white-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: var(--df-white);
}

.btn-df-white-outline:hover,
.btn-df-white-outline:focus {
  background-color: var(--df-white);
  color: var(--df-blue-dark);
}

.btn-lg-custom {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn .spinner-border {
  display: none;
}

.btn.loading .spinner-border {
  display: inline-block;
}

.btn.loading .btn-label {
  margin-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   6. TOPBAR
   -------------------------------------------------------------------------- */
.df-topbar {
  background-color: var(--df-blue-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.55rem 0;
}

.df-topbar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.df-topbar a:hover {
  color: var(--df-white);
}

.df-topbar i {
  color: var(--df-gold);
}

/* --------------------------------------------------------------------------
   7. NAVBAR
   -------------------------------------------------------------------------- */
.df-navbar {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(0, 45, 114, 0.06);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  padding: 0.75rem 0;
}

.df-navbar.scrolled {
  box-shadow: 0 6px 24px rgba(0, 45, 114, 0.12);
  background-color: var(--df-white);
}

.df-navbar .navbar-nav .nav-link {
  color: var(--df-gray-dark);
  font-family: var(--df-font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
}

.df-navbar .navbar-nav .nav-link:hover,
.df-navbar .navbar-nav .nav-link.active,
.df-navbar .navbar-nav .nav-link[aria-current="page"] {
  color: var(--df-blue);
}

.df-navbar .navbar-toggler {
  border-color: transparent;
  padding: 0.25rem 0.4rem;
}

.df-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.25);
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.df-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--df-white);
  background-color: var(--df-blue-dark);
  overflow: hidden;
}

.df-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.02);
}

.df-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 45, 114, 0.94) 0%,
    rgba(0, 45, 114, 0.8) 45%,
    rgba(206, 17, 38, 0.6) 100%
  );
}

.df-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 110px;
  max-width: 780px;
}

.df-hero-content h1 {
  color: var(--df-white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  margin: 0.9rem 0 1.1rem;
}

.df-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.df-hero-kicker {
  font-family: var(--df-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--df-gold);
}

/* --------------------------------------------------------------------------
   9. CARDS
   -------------------------------------------------------------------------- */
.df-card {
  background-color: var(--df-white);
  border: 1px solid rgba(0, 45, 114, 0.08);
  border-radius: var(--df-radius-lg);
  box-shadow: var(--df-shadow);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.df-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--df-shadow-lg);
}

.df-card h3,
.df-card h4,
.df-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.df-card p {
  margin-bottom: 0;
}

.df-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(0, 87, 184, 0.1);
  color: var(--df-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.df-card:hover .df-icon-box {
  background: var(--df-blue);
  color: var(--df-white);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* --------------------------------------------------------------------------
   10. PILLAR / STATS
   -------------------------------------------------------------------------- */
.df-pillar {
  text-align: center;
  padding: 2.4rem 1.9rem;
}

.df-pillar .df-icon-box {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   11. IMAGE BLOCKS (Who we are)
   -------------------------------------------------------------------------- */
.df-img-frame {
  border-radius: var(--df-radius-lg);
  box-shadow: var(--df-shadow-lg);
  overflow: hidden;
  position: relative;
}

.df-img-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.df-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   12. MISSION / VISION
   -------------------------------------------------------------------------- */
.df-mv-card {
  background: var(--df-white);
  border-radius: var(--df-radius-lg);
  padding: 2.4rem;
  height: 100%;
  box-shadow: var(--df-shadow);
  border-top: 4px solid var(--df-blue);
}

.df-mv-card--red {
  border-top-color: var(--df-red);
}

.df-mv-card .df-kicker {
  margin-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   13. CTA BAND
   -------------------------------------------------------------------------- */
.df-cta-band {
  position: relative;
  background: linear-gradient(115deg, var(--df-blue-dark) 0%, var(--df-blue) 55%, var(--df-red) 130%);
  border-radius: var(--df-radius-lg);
  padding: 3.75rem 2rem;
  color: var(--df-white);
  text-align: center;
  overflow: hidden;
}

.df-cta-band h2 {
  color: var(--df-white);
}

.df-cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   14. PAGE BANNER (inner pages)
   -------------------------------------------------------------------------- */
.df-page-banner {
  background: linear-gradient(115deg, var(--df-blue-dark) 0%, var(--df-blue) 60%, var(--df-red) 140%);
  color: var(--df-white);
  padding: 130px 0 56px;
}

.df-page-banner h1 {
  color: var(--df-white);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 0.5rem;
}

.df-page-banner .breadcrumb {
  margin: 0;
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.6);
}

.df-page-banner .breadcrumb-item {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.df-page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.df-page-banner .breadcrumb-item a:hover {
  color: var(--df-gold);
}

.df-page-banner .breadcrumb-item.active {
  color: var(--df-white);
}

/* --------------------------------------------------------------------------
   15. BOARD CARDS
   -------------------------------------------------------------------------- */
.df-board-card {
  border-radius: var(--df-radius-lg);
  overflow: hidden;
  background: var(--df-white);
  box-shadow: var(--df-shadow);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.df-board-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--df-shadow-lg);
}

.df-board-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.df-board-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.df-board-card:hover .df-board-photo img {
  transform: scale(1.05);
}

.df-board-meta {
  padding: 1.25rem 1.5rem 1.5rem;
}

.df-board-meta .df-board-name {
  font-family: var(--df-font-heading);
  font-weight: 600;
  color: var(--df-blue-dark);
  margin-bottom: 0.2rem;
}

.df-board-meta .df-board-role {
  color: var(--df-blue);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   17. PRICING CARDS
   -------------------------------------------------------------------------- */
.df-pricing {
  border: 1px solid rgba(0, 45, 114, 0.1);
  border-radius: var(--df-radius-lg);
  background: var(--df-white);
  box-shadow: var(--df-shadow);
  padding: 2.4rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.df-pricing--featured {
  border: 2px solid var(--df-blue);
  box-shadow: var(--df-shadow-lg);
}

.df-pricing--featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--df-red);
  color: var(--df-white);
  border-radius: 30px;
  font-family: var(--df-font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  white-space: nowrap;
}

.df-pricing .df-pricing-icon {
  font-size: 2.2rem;
  color: var(--df-blue);
  margin-bottom: 1rem;
}

.df-pricing h3 {
  font-size: 1.25rem;
}

.df-pricing-tag {
  color: var(--df-blue);
  font-family: var(--df-font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.df-pricing--featured .df-pricing-tag {
  color: var(--df-red);
}

.df-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
  flex-grow: 1;
}

.df-plan-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  color: #3d4450;
  font-size: 0.92rem;
}

.df-plan-list li:last-child {
  margin-bottom: 0;
}

.df-plan-list i {
  flex: 0 0 auto;
  color: var(--df-blue);
  font-size: 1rem;
  margin-top: 0.1rem;
}

.df-pricing--featured .df-plan-list i {
  color: var(--df-red);
}

.df-price-value {
  font-family: var(--df-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--df-gold);
  letter-spacing: 0.02em;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   18. TIMELINE (Expected Impact)
   -------------------------------------------------------------------------- */
.df-timeline {
  position: relative;
  padding-left: 2.6rem;
}

.df-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--df-blue), var(--df-red));
}

.df-timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.2rem;
}

.df-timeline-item:last-child {
  padding-bottom: 0;
}

.df-timeline-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 14px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--df-white);
  border: 3px solid var(--df-blue);
  box-shadow: 0 0 0 5px rgba(0, 87, 184, 0.15);
}

.df-timeline-item:last-child::before {
  border-color: var(--df-red);
  background: var(--df-red);
  box-shadow: 0 0 0 5px rgba(206, 17, 38, 0.16);
}

.df-timeline-year {
  display: inline-block;
  background: var(--df-blue);
  color: var(--df-white);
  border-radius: 40px;
  font-family: var(--df-font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  margin-bottom: 1rem;
}

.df-timeline-item-body {
  background: var(--df-white);
  border-radius: var(--df-radius-lg);
  box-shadow: var(--df-shadow);
  border-left: 4px solid var(--df-blue);
  padding: 1.9rem 2.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.df-timeline-item-body:hover {
  transform: translateY(-4px);
  box-shadow: var(--df-shadow-lg);
}

.df-timeline-item:nth-child(even) .df-timeline-item-body {
  border-left-color: var(--df-red);
}

.df-timeline-item:nth-child(even) .df-timeline-year {
  background: var(--df-red);
}

.df-timeline-item-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.df-timeline-item-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.df-timeline-item-body li {
  position: relative;
  padding-left: 1.4rem;
  color: #3d4450;
  margin-bottom: 0.55rem;
}

.df-timeline-item-body li:last-child {
  margin-bottom: 0;
}

.df-timeline-item-body li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--df-gold);
}

/* --------------------------------------------------------------------------
   19. CONTACT INFO CARDS
   -------------------------------------------------------------------------- */
.df-info-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.df-info-card .df-icon-box {
  margin-left: auto;
  margin-right: auto;
}

.df-info-card h3 {
  font-size: 1.05rem;
}

.df-info-card .df-info-value {
  margin: 0;
  word-break: break-word;
}

/* --------------------------------------------------------------------------
   20. MAP
   -------------------------------------------------------------------------- */
.df-map {
  border-radius: var(--df-radius-lg);
  overflow: hidden;
  box-shadow: var(--df-shadow);
  border: 1px solid rgba(0, 45, 114, 0.08);
}

.df-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* --------------------------------------------------------------------------
   21. FORMS
   -------------------------------------------------------------------------- */
.df-form .form-label {
  font-family: var(--df-font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--df-blue-dark);
}

.df-form .form-control,
.df-form .form-select {
  border-radius: var(--df-radius);
  border-color: rgba(0, 45, 114, 0.18);
  padding: 0.7rem 1rem;
  color: var(--df-gray-dark);
}

.df-form .form-control:focus,
.df-form .form-select:focus {
  border-color: var(--df-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.15);
}

.df-form .form-check-input:checked {
  background-color: var(--df-blue);
  border-color: var(--df-blue);
}

.df-form .form-check-input:focus {
  border-color: var(--df-blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.15);
}

.df-form .invalid-feedback {
  font-size: 0.82rem;
}

.df-form-success,
.df-form-alert {
  border-radius: var(--df-radius);
}

/* --------------------------------------------------------------------------
   22. SOCIAL ICONS
   -------------------------------------------------------------------------- */
.df-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.6rem;
}

.df-social-list a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 87, 184, 0.1);
  color: var(--df-blue);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.df-social-list a:hover {
  background: var(--df-red);
  color: var(--df-white);
  transform: translateY(-2px);
}

.df-social-list--light a {
  background: rgba(255, 255, 255, 0.14);
  color: var(--df-white);
}

.df-social-list--light a:hover {
  background: var(--df-red);
  color: var(--df-white);
}

/* --------------------------------------------------------------------------
   23. FOOTER
   -------------------------------------------------------------------------- */
.df-footer {
  background-color: var(--df-blue-dark);
  color: rgba(255, 255, 255, 0.82);
}

.df-footer h5 {
  color: var(--df-white);
  font-family: var(--df-font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.df-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.df-footer a:hover {
  color: var(--df-gold);
}

.df-footer .df-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.df-footer .df-footer-links li {
  margin-bottom: 0.6rem;
}

.df-footer .df-footer-links a::before {
  font-family: "bootstrap-icons";
  content: "\F285";
  margin-right: 0.5rem;
  font-size: 0.7rem;
  color: var(--df-gold);
}

.df-footer .df-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.df-footer .df-footer-contact li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.df-footer .df-footer-contact i {
  color: var(--df-gold);
  margin-top: 0.2rem;
}

.df-footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   24. SCROLL TO TOP
   -------------------------------------------------------------------------- */
.df-scroll-top {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background-color: var(--df-blue);
  color: var(--df-white);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease,
    background-color 0.25s ease;
  z-index: 1030;
  cursor: pointer;
}

.df-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.df-scroll-top:hover {
  background-color: var(--df-red);
}

/* --------------------------------------------------------------------------
   25. PENDING NOTICES
   -------------------------------------------------------------------------- */
.df-pending-card {
  background: #fff8e6;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--df-radius);
  color: #6b5410;
  font-size: 0.88rem;
  padding: 0.85rem 1.1rem;
}

/* --------------------------------------------------------------------------
   26. MISC
   -------------------------------------------------------------------------- */
.text-df-blue {
  color: var(--df-blue) !important;
}

.text-df-red {
  color: var(--df-red) !important;
}

.text-df-gold {
  color: var(--df-gold) !important;
}

.bg-df-light {
  background-color: var(--df-gray-light) !important;
}

.df-divider-gold {
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--df-blue), var(--df-red));
  margin: 1.25rem 0;
}

.df-divider-alt {
    margin-inline: 0 !important;
}

.df-section-head .df-divider-gold {
  margin-left: auto;
  margin-right: auto;
}

/* Padding for anchor targets below sticky header */
.df-anchor-target {
  scroll-margin-top: 96px;
}

/* --------------------------------------------------------------------------
   29. EDITORIAL CARDS (What We Do)
   -------------------------------------------------------------------------- */
.df-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.df-editorial-col {
  position: relative;
}

.df-editorial-card {
  height: 100%;
  padding: 2rem 1.5rem;
}

@media (max-width: 767.98px) {
  .df-editorial-col:not(:last-child) .df-editorial-card {
    border-bottom: 1px solid rgba(0, 45, 114, 0.12);
  }
}

.df-editorial-num {
  display: block;
  font-family: var(--df-font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--df-gold);
  margin-bottom: 1.1rem;
}

.df-editorial-icon {
  font-size: 2.6rem;
  color: var(--df-blue);
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: color 0.3s ease;
}

.df-editorial-card:hover .df-editorial-icon {
  color: var(--df-red);
}

.df-editorial-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.8rem;
}

.df-editorial-card p {
  color: #5b6370;
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .df-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .df-editorial-card {
    border-bottom: 0;
    padding: 2.4rem 1.75rem;
  }

  .df-editorial-col:nth-child(even)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6%;
    bottom: 6%;
    width: 1px;
    background: rgba(0, 45, 114, 0.14);
  }

  .df-editorial-col:nth-child(-n + 2)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(0, 45, 114, 0.14);
  }
}

@media (min-width: 992px) {
  .df-editorial-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .df-editorial-col:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6%;
    bottom: 6%;
    width: 1px;
    background: rgba(0, 45, 114, 0.14);
  }

  .df-editorial-col:first-child::before,
  .df-editorial-col:nth-child(-n + 2)::after {
    content: none;
  }
}

/* --------------------------------------------------------------------------
   30. STATS BAR (The Case for Support)
   -------------------------------------------------------------------------- */
.df-stat {
  height: 100%;
  align-items: center;
}

.df-stat-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--df-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.df-stat-num {
  font-family: var(--df-font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--df-white);
  line-height: 1.15;
}

.df-stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

@media (max-width: 767.98px) {
  .df-stat-num {
    font-size: 2.1rem;
  }
}

/* --------------------------------------------------------------------------
   31. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.df-accordion .accordion-item {
  background: var(--df-white);
  border: 1px solid rgba(0, 45, 114, 0.1);
  border-radius: var(--df-radius-lg);
  box-shadow: var(--df-shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.df-accordion .accordion-button {
  font-family: var(--df-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--df-blue-dark);
  background: var(--df-white);
  box-shadow: none;
  padding: 1.25rem 1.5rem;
}

.df-accordion .accordion-button::after {
  transition: transform 0.3s ease;
}

.df-accordion .accordion-button:not(.collapsed) {
  color: var(--df-white);
  background: var(--df-blue);
  box-shadow: none;
}

.df-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.2);
}

.df-accordion .accordion-body {
  color: #3d4450;
  padding: 1.5rem 1.5rem 1.75rem;
  border-top: 1px solid rgba(0, 45, 114, 0.08);
}

.df-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.df-faq-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.df-faq-list li:last-child {
  margin-bottom: 0;
}

.df-faq-list i {
  flex: 0 0 auto;
  color: var(--df-red);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

.df-faq-list strong {
  display: block;
  color: var(--df-blue-dark);
  margin-bottom: 0.1rem;
}

.df-faq-list span {
  display: block;
  color: #3d4450;
}

/* --------------------------------------------------------------------------
   32. EVENT CARDS (event.html)
   -------------------------------------------------------------------------- */
.df-event-card {
  background: var(--df-white);
  border-radius: var(--df-radius-lg);
  box-shadow: var(--df-shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.df-event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--df-shadow-lg);
}

/* Calendar-style header: icon + title (2-line clamp) + status badge */
.df-event-cal {
  position: relative;
  background: linear-gradient(120deg, var(--df-blue-dark), var(--df-blue));
  color: var(--df-white);
  padding: 1.6rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.df-event-cal > i {
  font-size: 1.9rem;
  line-height: 1;
  color: var(--df-gold);
}

.df-event-title {
  font-family: var(--df-font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--df-white);
  margin: 0;
  min-height: calc(1.05rem * 1.35 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.df-event-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-family: var(--df-font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 40px;
  white-space: nowrap;
}

.df-event-badge--upcoming {
  background: #1f9d55;
  color: var(--df-white);
}

.df-event-badge--finished {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Body: date + address */
.df-event-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex-grow: 1;
}

.df-event-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0;
  color: #3d4450;
  font-size: 0.92rem;
}

.df-event-meta i {
  flex: 0 0 auto;
  color: var(--df-blue);
  font-size: 1.05rem;
  margin-top: 0.1rem;
}

.df-event-meta strong {
  display: block;
  color: var(--df-blue-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.1rem;
}

/* Clickable event title (event list -> detail page) */
.df-event-title a {
  color: inherit;
  text-decoration: none;
}

.df-event-title a:hover {
  color: var(--df-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Event detail sidebar */
.df-event-sidebar {
  background: var(--df-white);
  border-radius: var(--df-radius-lg);
  box-shadow: var(--df-shadow);
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.df-event-sidebar .df-event-cal {
  padding: 1.75rem 1.6rem;
}

.df-event-sidebar .df-event-body {
  padding: 1.5rem 1.6rem 1.75rem;
  gap: 1.1rem;
}

.df-event-sidebar .btn {
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   27. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .df-navbar .navbar-nav .nav-link {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 45, 114, 0.06);
  }

  .df-navbar .btn-df-red {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    width: 100%;
  }

  .df-hero {
    min-height: auto;
  }

  .df-hero-content {
    padding: 120px 0 90px;
  }

  .df-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .df-cta-band {
    padding: 2.75rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .df-hero-content p {
    font-size: 1rem;
  }

  .df-hero-content .d-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .df-hero-content .d-flex .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   28. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   29. CUSTOM STYLES
   -------------------------------------------------------------------------- */
.nosotros-stats-subtitle{
max-inline-size: 85ch;
    margin-inline: auto;
    text-wrap: pretty;
}