/* # home style css */
:root {
  --bg: #faf8f5;
  --text: #1f2937;
  --muted: #667085;
  --primary: #f97316;
  --accent: #173b84;
  --secondary: hsl(145, 60%, 32%);
  --card: #fff;
  --border: #e5e7eb;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; background: var(--bg); color: var(--text); padding-top: 64px; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.header,
.wpb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 20;
  max-width: 100%;
  box-sizing: border-box;
}
.header-row,
.wpb-header-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.brand-dot {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}
.menu,
.wpb-main-menu {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}
.menu a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.menu a:not(.menu-call) {
  color: var(--accent);
  background: transparent;
}
.menu a.active,
.menu a[aria-current="page"] {
  background: var(--primary);
  color: #fff;
}
.menu a.active:hover,
.menu a[aria-current="page"]:hover {
  background: #ea580c;
  color: #fff;
}
.menu a:not(.menu-call):hover:not(.active):not([aria-current="page"]) {
  background: #f3f4f6;
  color: var(--accent);
}
/* WordPress wp_nav_menu() outputs UL/LI (ul.menu-list). Make it horizontal and remove bullets. */
.menu-list {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.menu-list > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.menu-call {
  margin-left: 6px;
  box-sizing: border-box;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.menu-call i {
  font-size: 14px;
  color: currentColor;
}
.menu-call:hover {
  background: #1a56db;
  color: #fff;
  border-color: #1a56db;
}
.mobile-call {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.mobile-call i {
  font-size: 14px;
  color: currentColor;
}
.mobile-call:hover {
  background: #f9fafb;
  color: var(--accent);
  border-color: #d1d5db;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #4b5563;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}
.mobile-toggle:hover { background: rgba(0, 0, 0, 0.05); }
.mobile-menu,
.wpb-mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu.open,
.wpb-mobile-menu.open {
  display: block;
}
.mobile-menu .container,
.wpb-mobile-menu .container {
  padding-top: 10px;
  padding-bottom: 12px;
  display: grid;
  gap: 6px;
}
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.mobile-menu-list > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-list > li > a[aria-current="page"] {
  background: var(--primary);
  color: #fff;
}
.mobile-menu a,
.wpb-mobile-menu a {
  text-decoration: none;
  color: var(--accent);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}
.mobile-menu a.active,
.wpb-mobile-menu a.active,
.mobile-menu a[aria-current="page"],
.wpb-mobile-menu a[aria-current="page"] {
  background: var(--primary);
  color: #fff;
}
.mobile-menu a:hover:not(.active):not([aria-current="page"]),
.wpb-mobile-menu a:hover:not(.active):not([aria-current="page"]) {
  background: #f3f4f6;
  color: var(--accent);
}
/* Hero: explicit two columns; safe inside WPBakery full-width rows */
.campaign-hero.hero,
section.campaign-hero {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  overflow-x: clip;
}
.hero { background: var(--accent); color: #fff; padding: 56px 0; }
.hero-container.container {
  width: 100%;
  max-width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  box-sizing: border-box;
}
.hero-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 4vw, 32px);
  width: 100%;
}
/* Columns layout without requiring classes on each column div */
.hero-columns > div {
  flex: 1 1 300px;
  min-width: 0;
}
.hero-columns > div:first-child {
  flex: 1 1 320px;
  max-width: 100%;
}
.hero-columns > div:last-child {
  flex: 0 1 460px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* Legacy class if old markup exists elsewhere */
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; }
.badge { display: inline-block; font-size: 13px; color: var(--primary); background: rgba(249,115,22,.14); border: 1px solid rgba(249,115,22,.3); border-radius: 999px; padding: 6px 12px; font-weight: 600; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.1; margin-top: 12px; }
.orange { color: var(--primary); }
.hero p { color: rgba(255,255,255,.86); max-width: 640px; }
.hero-social { display: flex; gap: 10px; margin: 14px 0 18px; padding: 6px 0; }
.hero-social a { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,.13); color: #fff; text-decoration: none; font-size: 14px; border: 1px solid rgba(255,255,255,.1); }
.hero-social a:hover { background: rgba(255,255,255,.22); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; padding: 6px 0; }
.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 16px;
  line-height: 1.2;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  min-width: 150px;
}
.btn i { font-size: 16px; color: currentColor; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #ea6c12; }
.btn-secondary {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
  color: #b45309;
}
.btn-secondary:hover {
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.33);
}
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(19,49,108,.55); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn-green { background: #16a34a; color: #fff; }
.btn-green:hover { background: #148a3f; }
.hero-photo {
  width: min(460px, 100%);
  height: auto;
  max-height: 420px;
  border-radius: 16px;
  border: none;
  background: transparent;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-left: auto;
  margin-right: 0;
}
/* Full width section */
.hero-marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  background: transparent;
}

/* Marquee wrapper */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 15s linear infinite;
}

/* Text */
.marquee-track span {
  white-space: nowrap;
  padding-right: 60px;
  font-size: 16px;
  font-weight: 500;
  color: #d32f2f;
}

/* KEY FIX: seamless continuous scroll */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.marquee-track:hover {
  animation-play-state: paused;
}
.section { padding: 72px 0; }
.title { text-align: center; margin-bottom: 30px; }
.title h2 { font-size: 3rem; line-height: 1.05; font-weight: 400; }
.title p { color: var(--muted); max-width: 660px; margin: 10px auto 0; font-size: 1.25rem; line-height: 1.75rem; }
.promises-title h2 { font-size: 2.5rem; line-height: 1.15; }
.promises-title p { font-size: 1rem; line-height: 1.5rem; }
.promises-container { width: min(1280px, 96%); margin: 0 auto; }
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 22px; box-shadow: 0 4px 14px rgba(16,24,40,.06); }
.card h3 { font-size: 20px; margin: 6px 0 6px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.bg-card { background: #fff; }
.rounded-xl { border-radius: 0.75rem; }
.p-8 { padding: 2rem; }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.border { border: 1px solid var(--border); }
.transition-shadow { transition: box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.promise-card {
  padding: 2rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.promise-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.promise-card h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
}
.promise-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 100%;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 400;
}
.promise-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.promise-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.promise-icon i {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.soft { background: #f2f1ef; }
.pill-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.events-title { margin-bottom: 2.25rem; }
.events-title p { max-width: 34rem; margin-top: 0.4rem; }
.slider { position: relative; width: 100%; max-width: 1024px; margin: 0 auto; z-index: 0; }

/* Upcoming slider scale (match screenshot: slightly smaller cards) */
.slider[data-layout="upcoming"] { max-width: 920px; }
.slider[data-layout="upcoming"] .event-image-wrap { height: 10.5rem; }
.slider[data-layout="upcoming"] .event-body { padding: 1rem; }
.slider[data-layout="upcoming"] .event-body h3 { font-size: 1.55rem; }
.slider[data-layout="upcoming"] .event-desc { font-size: 0.92rem; }
.slider .owl-carousel {
  width: 100%;
  display: block; /* fallback if Owl JS fails to init (Owl CSS defaults to display:none) */
}
.slider .owl-stage { display: flex; }
.slider .owl-item {
  /* Owl sets explicit widths inline; keep them intact inside flex layout */
  flex: 0 0 auto;
  display: flex;
  height: 100%;
}
.slider .owl-item > * {
  width: 100%;
  height: 100%;
}
.slider .owl-stage-outer { overflow: hidden; }

/* Owl nav styled like previous arrows */
.slider .owl-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.slider .owl-nav button.owl-prev,
.slider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.slider .owl-nav button.owl-prev:hover,
.slider .owl-nav button.owl-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
}
.slider .owl-nav button.owl-prev:focus-visible,
.slider .owl-nav button.owl-next:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.slider .owl-nav button.owl-prev { left: 6px; }
.slider .owl-nav button.owl-next { right: 6px; }
.slider .owl-nav button span {
  display: inline-block;
  color: currentColor;
  font-weight: 800;
  transform: translateY(-1px);
}
.slider .owl-nav button i {
  font-size: 0.95rem;
  line-height: 1;
}

@media (min-width: 901px) {
  .slider .owl-nav button.owl-prev { left: -16px; }
  .slider .owl-nav button.owl-next { right: -16px; }
}
.track-wrap {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.track {
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.slider[data-layout="upcoming"] .track,
.slider:not([data-layout]) .track {
  grid-auto-columns: calc(50% - 9px);
}
.slider[data-layout="past"] .track {
  grid-auto-columns: calc((100% - 36px) / 3);
}
.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  height: 100%;
}
.event-image-wrap { position: relative; height: 12rem; overflow: hidden; }
.event-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}
.event-img { width: 100%; height: 100%; object-fit: cover; }
.event-body { padding: 1.25rem; }
.event-body h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.875rem; line-height: 1.1; margin: 0 0 0.4rem; }
.event-desc { margin: 0 0 0.65rem; color: #4b5563; font-size: 0.95rem; line-height: 1.45rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; color: #6b7280; font-size: 0.75rem; }
.event-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.event-meta i { color: var(--primary); font-size: 0.75rem; }

/* Make upcoming cards uniform height inside Owl */
.slider[data-layout="upcoming"] .event-card { display: flex; flex-direction: column; }
.slider[data-layout="upcoming"] .event-body { flex: 1; display: flex; flex-direction: column; }
.slider[data-layout="upcoming"] .event-body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.1em);
}
.slider[data-layout="upcoming"] .event-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(3 * 1.45rem);
}
.slider[data-layout="upcoming"] .event-meta { margin-top: auto; }
.pill-badge--secondary {
  background: hsla(145, 60%, 32%, 0.12);
  color: hsl(145, 60%, 26%);
}
.past-events-title { margin-bottom: 2.25rem; }
.past-events-title h2 { font-size: 2rem; line-height: 1.2; }
.past-events-title .past-accent { color: var(--secondary); }
.past-events-title p { max-width: 32rem; margin-top: 0.45rem; font-size: 1rem; color: var(--muted); }
.section-past { padding: 72px 0; background: #fff; }
.past-event-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 0.75rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.past-event-card-link:hover .past-event-card,
.past-event-card-link:focus .past-event-card {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  transform: translateY(-3px);
}
.past-event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  height: 100%;
}
.past-image-wrap { position: relative; height: 10rem; overflow: hidden; }
.past-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}
.past-body { padding: 1rem; }
.past-body h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.past-desc {
  margin: 0 0 0.45rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.past-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.past-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.past-meta i { font-size: 0.75rem; color: #9ca3af; }
.section-gallery { padding: 72px 0; background: #f2f1ef; }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.pill-badge-visual {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.pill-badge-visual i { font-size: 0.875rem; }
.gallery-header h2 { font-size: 2rem; line-height: 1.15; font-weight: 400; margin: 0; }
.gallery-header p { max-width: 36rem; margin: 0.65rem auto 0; font-size: 1rem; line-height: 1.55rem; color: var(--muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  cursor: pointer;
  background: #e5e7eb;
}
.gallery-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.72) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: auto; 
  cursor: pointer;
}
.gallery-play span {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.gallery-play .fa-play { margin-left: 0.2rem; }
.gallery-item--video .gallery-caption { opacity: 1; }
.gallery-item--video::after {
  opacity: 1;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.75) 0%, transparent 50%);
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-header h2 { font-size: 2.5rem; }
}

/* ── Gallery interactive: anchor tiles ── */
a.gallery-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ── Raise caption and play button above hover media layer ── */
.gallery-caption { z-index: 3; }
.gallery-play    { z-index: 4; }

/* ── Local <video>: starts at opacity 0, reveals on hover ── */
.gallery-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.gallery-item:hover video { opacity: 1; }

/* ── YouTube IFrame API player container ── */
.yt-tile-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* ── API-created iframe: landscape 16:9 → cover 1:1 square ── */
.yt-tile-player iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 177.78%;
  height: 100%;
  transform: translateX(-50%);
  border: none;
  pointer-events: none;
}

/* ── API-created iframe: Shorts 9:16 → cover 1:1 square ── */
.yt-short-player iframe {
  top: 50%;
  left: 0;
  width: 100%;
  height: 177.78%;
  transform: translateY(-50%);
}

/* ── Thumbnail img: JS controls opacity on hover via inline style ── */
.gallery-item--video img {
  position: relative;
  z-index: 2;
  transition: opacity 0.4s ease;
}

/* ── On hover, hide gradient overlay and play button so the video plays clean ── */
.gallery-item--video:hover::after { opacity: 0; }
.gallery-item--video:hover .gallery-play { opacity: 0; transition: opacity 0.25s ease; }

/* ── Img transition driven by JS inline style on mouseenter/leave ── */
.gallery-item--video img { transition: opacity 0.4s ease; }

/* ── Play button pulse (before hover — while static thumbnail is shown) ── */
@keyframes gallery-play-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
  50%       { transform: scale(1.14); box-shadow: 0 6px 24px rgba(249,115,22,0.55); }
}
.gallery-item--video .gallery-play span {
  animation: gallery-play-pulse 1.6s ease-in-out infinite;
}
.gallery-item--video:hover .gallery-play span { animation: none; }

/* ── Gallery Modal overlay ── */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gallery-modal:target { display: flex; }

/* ── Modal inner — landscape video / YouTube 16:9 ── */
.gallery-modal-inner {
  position: relative;
  width: 100%;
  max-width: 860px;
}
.gallery-modal-inner video,
.gallery-modal-inner iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0.75rem;
  display: block;
}

/* ── Modal inner — YouTube Shorts portrait 9:16 ── */
.gallery-modal-inner--short {
  max-width: 380px;
}
.gallery-modal-inner--short iframe {
  aspect-ratio: 9 / 16;
}

/* ── Modal inner — Photo lightbox ── */
.gallery-modal-inner--photo {
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal-inner--photo img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 0.75rem;
  display: block;
}

/* ── Modal close button — overlaid inside top-right corner of media ── */
.gallery-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gallery-modal-close:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.section-complaint {
  padding: 64px 0;
  background: #fff5e9;
  text-align: center;
}
.section-complaint h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--text);
}
.section-complaint .lead {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55rem;
}
.complaint-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
}
.btn-complaint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  transition: filter 0.2s ease, background-color 0.2s ease;
}
.btn-complaint i { font-size: 1rem; }
.btn-complaint-primary {
  background: var(--primary);
  color: #fff;
}
.btn-complaint-primary:hover { filter: brightness(0.94); }
.btn-complaint-whatsapp {
  background: #16a34a;
  color: #fff;
}
.btn-complaint-whatsapp:hover { background: #15803d; }
.btn-complaint:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.section-social {
  padding: 64px 0;
  background: #fff;
  text-align: center;
}
.section-social h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--text);
}
.section-social .lead {
  max-width: 28rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55rem;
}
.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.social-grid a {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-grid a:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--primary);
}
.social-grid a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.social-grid a i { font-size: 1.25rem; }
@media (min-width: 768px) {
  .section-complaint h2 { font-size: 2rem; }
  .section-social h2 { font-size: 1.875rem; }
}
.section-vote {
  background: var(--accent);
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
}
.section-vote h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}
.section-vote .vote-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: 52rem;
  margin: 0 auto 2rem;
  text-wrap: balance;
}
.btn-vote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: Inter, system-ui, sans-serif;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, background-color 0.2s ease;
}
.btn-vote:hover { filter: brightness(0.92); }
.btn-vote:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.btn-vote i { font-size: 0.875rem; }
.events-cta-wrap { display: flex; justify-content: center; margin-top: 1.6rem; }
.events-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: #111827;
  text-decoration: none;
  border-radius: 0.6rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  transition: background-color .2s ease, box-shadow .2s ease;
}
.events-cta i { font-size: 0.85rem; }
.events-cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 3px 10px rgba(23, 59, 132, 0.25);
}
.events-cta:hover i { color: #fff; }
.nav-btn {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
  pointer-events: auto;
}
.nav-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
}
.nav-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.prev { left: -16px; }
.next { right: -16px; }
footer {
  background: var(--accent);
  color: #fff;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 28px; padding: 44px 0 32px; }
.footer-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}
.footer-grid h4 { margin: 0 0 12px; font-family: Inter, system-ui, sans-serif; font-size: 1rem; font-weight: 600; color: #fff; }
.footer-grid p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-grid > div > p:last-of-type { margin-bottom: 14px; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 4px;
}
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  background: rgba(249, 115, 22, 0.35);
  color: #fff;
}
.footer-social a i { font-size: 0.85rem; }
.footer-link-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-link-list li {
  margin: 0;
  padding: 0;
}
.footer-link-list a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer-link-list a:hover { color: #fff; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  margin-bottom: 10px;
  line-height: 1.45;
}
.footer-contact-row i {
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.85;
  width: 1rem;
  text-align: center;
}
.footer-contact-row a { color: inherit; text-decoration: none; }
.footer-contact-row a:hover { color: #fff; }
.footer-address-detail {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.footer-hours-line {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  margin-bottom: 8px;
  line-height: 1.45;
}
.foot-end { border-top: 1px solid rgba(255,255,255,.2); text-align: center; font-size: 12px; color: rgba(255,255,255,.7); padding: 14px 0 18px; }
.fab-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.fab-whatsapp:hover { filter: brightness(1.05); transform: scale(1.04); }
.fab-whatsapp i { font-size: 1.75rem; }
.fab-whatsapp:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (max-width: 1023px) {
  .slider[data-layout="past"] .track {
    grid-auto-columns: calc(50% - 9px);
  }
}
@media (min-width: 901px) {
  .past-events-title h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .past-events-title h2 { font-size: 2.5rem; }
}
@media (max-width: 900px) {
  .hero-columns { flex-direction: column; align-items: stretch; }
  .hero-col--media { order: 2; }
  .hero-col--content { order: 1; }
  .hero-grid, .cards3, .footer-grid { grid-template-columns: 1fr; }
  .hero-photo { margin: 0 auto; max-height: 360px; min-height: 240px; }
  .slider .owl-nav button.owl-prev { left: 6px; }
  .slider .owl-nav button.owl-next { right: 6px; }
  .menu,
  .wpb-main-menu {
    display: none;
    margin-left: 0;
  }
  .menu-call {
    margin-left: auto;
  }
  .mobile-toggle { display: inline-flex; }
  .title h2, .promises-title h2 { font-size: 2rem; line-height: 1.2; }
  .title p, .promises-title p { font-size: 1rem; line-height: 1.5rem; }
  .promise-card { min-height: auto; }
  .promise-card h3 { font-size: 1.2rem; line-height: 1.6rem; }
  .event-body h3 { font-size: 1.4rem; }
}

/* # about style css */
.about-page {
  min-height: 60vh;
}

.about-hero {
  padding: 64px 0;
  background: #fff;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-hero-media {
  display: flex;
  justify-content: center;
}

.about-photo-frame {
  width: 100%;
  max-width: 28rem; /* max-w-md */
  margin-left: auto; /* mx-auto */
  margin-right: auto; /* mx-auto */
  padding: 2.25rem 2.5rem;
  border-radius: 1rem; /* rounded-2xl */
  background: #fff;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); /* shadow-xl */
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: contain;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.about-title {
  margin: 0 0 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.1;
  color: var(--text);
}

.about-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 42rem;
}

.about-copy p {
  margin: 0 0 1rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy strong {
  color: var(--text);
  font-weight: 700;
}

.about-values {
  padding: 60px 0;
  background: #fff5e9;
}

.about-values .container {
  width: min(1400px, 92%);
}

.about-values-title {
  text-align: center;
  margin: 0 0 2.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 2.6vw, 2.6rem);
  line-height: 1.1;
  color: var(--text);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.value-card {
  background: #fff;
  border: 1px solid #eadfd7;
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  width: 100%;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.value-icon i {
  font-size: 1.1rem;
}

.value-card h3 {
  margin: 0 0 0.5rem;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }

  .values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* # event style css */
/* Events page (stacked cards like screenshots) */
.events-page {
  min-height: 60vh;
}

.events-hero {
  padding: 72px 0;
  background: var(--bg);
}

.events-hero-inner {
  max-width: 72rem;
}

.events-hero-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.events-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0.6rem 0 0.75rem;
  color: var(--text);
}

.events-subtitle {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.events-list {
  display: grid;
  gap: 1.25rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.event-list-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
  overflow: hidden;
}

.event-list-card.is-completed {
  opacity: 0.75;
}

.event-list-body {
  padding: 22px;
}

.event-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid rgba(17, 24, 39, 0.14);
  color: var(--text);
  background: #fff;
}

.chip-status {
  border-color: rgba(249, 115, 22, 0.25);
}

.chip-upcoming {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
  color: #b45309;
}

.chip-ongoing {
  background: hsla(145, 60%, 32%, 0.12);
  border-color: hsla(145, 60%, 32%, 0.22);
  color: hsl(145, 60%, 26%);
}

.chip-completed {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #6b7280;
}

.chip-category {
  border-color: rgba(17, 24, 39, 0.12);
  color: #374151;
  background: #fff;
}

.event-list-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.event-list-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  border: 1px solid rgba(249, 115, 22, 0.18);
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.event-list-icon i {
  font-size: 1.05rem;
}

.event-list-content {
  flex: 1 1 auto;
  min-width: 0;
}

.event-list-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: #111827;
}

.event-list-content p {
  margin: 0 0 0.9rem;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.55;
}

.event-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  color: #6b7280;
  font-size: 0.83rem;
}

.event-list-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.event-list-meta i {
  color: var(--primary);
}

.event-view-details.btn {
  margin-top: 14px;
  min-width: 0;
  padding: 10px 16px;
  border-radius: 12px;
}

.event-view-details i {
  font-size: 0.95rem;
}

.events-volunteer {
  margin-top: 2.75rem;
  background: #fff5e9;
  border-radius: 20px;
  padding: 44px 22px;
  text-align: center;
  border: 1px solid rgba(249, 115, 22, 0.12);
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.events-volunteer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.2);
  margin-bottom: 12px;
}

.events-volunteer h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--text);
}

.events-volunteer p {
  margin: 0 auto 18px;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.events-volunteer-btn.btn {
  min-width: 0;
  padding: 12px 22px;
}

@media (min-width: 640px) {
  .event-list-body {
    padding: 26px 30px;
  }

  .event-list-icon {
    display: inline-flex;
  }

  .event-list-content h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .events-list,
  .events-volunteer {
    max-width: 100%;
  }
}
/* # end event style css */

/* Event details page */
.event-details-page {
  min-height: 60vh;
  background: var(--bg);
}

.event-details-hero {
  padding: 46px 0 22px;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0) 65%), var(--bg);
}

.event-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 24, 39, 0.72);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.event-back-link:hover {
  color: rgba(17, 24, 39, 0.88);
}

.event-details-head {
  max-width: 56rem;
  margin: 0 auto;
}

.event-details-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.12;
  margin: 0.35rem 0 0.75rem;
  color: #111827;
}

.event-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.95rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  color: #6b7280;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
}

.event-details-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.event-details-meta i {
  color: var(--primary);
}

.event-details-desc {
  max-width: 56rem;
  margin: 14px auto 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.93rem;
}

.event-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 14px;
  color: #111827;
}

.event-media .event-section-title,
.event-highlights .event-section-title,
.event-participate .event-section-title {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.event-media,
.event-highlights,
.event-participate {
  padding: 22px 0;
}

.event-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.event-media-tile {
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
  height: 118px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.08);
}

.event-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Zoom on hover – tile pops out */
.event-media-tile--clickable {
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease, z-index 0s;
  z-index: 1;
  position: relative;
}
.event-media-tile--clickable:hover {
  transform: scale(1.45);
  z-index: 30;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

/* ── Lightbox ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.lb-overlay.lb-open {
  display: flex;
}
.lb-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.lb-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  display: block;
}
.lb-count {
  margin-top: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
  z-index: 10000;
}
.lb-close:hover { opacity: 1; }
.lb-arrow {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
  user-select: none;
}
.lb-arrow:hover { background: rgba(255,255,255,0.28); }

.event-media-tile--video .event-media-play {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.92);
  color: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.28);
}

/* Video tile with hover-to-play */
.event-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-media-tile--video-interactive {
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease;
}
.event-media-tile--video-interactive:hover {
  transform: scale(1.06);
  z-index: 30;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.event-media-play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.38);
  border-radius: inherit;
  transition: opacity 0.22s ease, background 0.22s ease;
  pointer-events: none;
}
.event-media-tile--video-interactive:hover .event-media-play-overlay {
  opacity: 0;
}

.event-media-play-overlay .play-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.92);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  transition: transform 0.18s ease;
}
.event-media-tile--video-interactive:hover .play-icon {
  transform: scale(1.1);
}

/* Video lightbox */
.lb-video-content {
  max-width: 90vw;
  max-height: 90vh;
}
.lb-video {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
  display: block;
  background: #000;
}

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.event-highlights-list {
  margin: 10px 0 0;
  padding: 0;
  color: #6b7280;
  line-height: 1.7;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  row-gap: 10px;
}

.event-highlights-list li {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.event-highlights-list li::before {
  content: "•";
  color: var(--primary);
  font-size: 1.1em;
  line-height: 1.4;
  flex: 0 0 auto;
}

.event-participate-card {
  background: #fff5e9;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 20px;
  padding: 18px;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.event-participate-card h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: #111827;
}

.event-participate-sub {
  margin: 0 0 14px;
  color: #6b7280;
}

.event-participate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-participate-actions .btn {
  min-width: 0;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.event-participate-actions .btn-outline {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}
.event-participate-actions .btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.event-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  color: rgba(17, 24, 39, 0.7);
  text-decoration: none;
  font-weight: 600;
}

.event-view-all:hover {
  color: rgba(17, 24, 39, 0.9);
}

@media (max-width: 900px) {
  .event-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-highlights-list {
    grid-template-columns: 1fr;
  }
}

/* # complaint page style css */
.complaint-page {
  min-height: 60vh;
}

.complaint-hero {
  padding: 72px 0;
  background: var(--bg);
}

.complaint-inner {
  width: min(720px, 92%);
}

.complaint-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.complaint-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.complaint-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.9vw, 2.05rem);
  line-height: 1.12;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.complaint-subtitle {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.complaint-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.08);
  display: grid;
  gap: 18px;
  min-height: 560px;
}

.complaint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #111827;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
  font-size: 0.78rem;
  color: #111827;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 170px;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%), linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  white-space: nowrap;
  border: 0;
}

.upload-drop {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.upload-drop i {
  color: #6b7280;
  font-size: 0.95rem;
}

.upload-text {
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-drop:hover {
  border-color: rgba(249, 115, 22, 0.45);
}

.upload-input:focus-visible + .upload-drop,
.upload-drop:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.complaint-submit {
  border: 0;
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 0.2s ease, transform 0.05s ease;
}

.complaint-submit:hover {
  filter: brightness(0.94);
}

.complaint-submit:active {
  transform: translateY(1px);
}

.complaint-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .complaint-card {
    padding: 30px;
  }

  .complaint-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

/* # end complaint page style css */

/* # contact page style css */
.contact-page {
  min-height: 60vh;
}

.contact-hero {
  padding: 72px 0;
  background: var(--bg);
}

.contact-inner {
  width: min(920px, 92%);
}

.contact-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.contact-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.6rem;
  color: var(--text);
}

.contact-subtitle {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 18px 18px;
  min-height: 88px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.contact-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  border: 1px solid rgba(249, 115, 22, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-icon i {
  font-size: 1rem;
}

.contact-card-body {
  min-width: 0;
}

.contact-label {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-link {
  display: inline-block;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-text-strong {
  margin: 0;
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-map-card {
  background: var(--card);
  border: 1px solid #eef2f7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.contact-map-head {
  padding: 22px 22px 12px;
}

.contact-map-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.contact-map-pin {
  color: var(--primary);
  font-size: 1rem;
}

.contact-map-title {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.contact-map-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.contact-map-frame {
  padding: 0 22px 22px;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid #eef2f7;
}

.contact-whatsapp-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 28px;
  border-radius: 12px;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.2);
  transition: filter 0.2s ease, transform 0.05s ease;
}

.contact-whatsapp-btn:hover {
  filter: brightness(0.96);
}

.contact-whatsapp-btn:active {
  transform: translateY(1px);
}

.contact-whatsapp-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* # end contact page style css */

/* # manifesto page style css */
.manifesto-page {
  min-height: 60vh;
}

.manifesto-hero {
  padding: 72px 0;
  background: var(--bg);
}

.manifesto-hero-inner {
  width: min(980px, 92%);
}

.manifesto-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.manifesto-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.manifesto-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.85rem, 3.9vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.manifesto-subtitle {
  margin: 0 auto;
  max-width: 44rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.manifesto-plan {
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.75rem;
}

.manifesto-plan-title {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
}

.manifesto-plan-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
}

.manifesto-plan-icon i {
  font-size: 0.95rem;
}

.manifesto-plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.manifesto-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.45;
  min-width: 0;
}

.manifesto-plan-list li > i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--primary);
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 0.98rem;
  line-height: 1;
}

/* When used inside white manifesto cards, switch to dark text */
.manifesto-card .manifesto-plan-list li {
  color: #6b7280;
}

/* Backward-compat: older markup used <span class="manifesto-check"><i/></span> */
.manifesto-check {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--primary);
  flex: 0 0 auto;
  margin-top: 1px;
}

.manifesto-check i {
  font-size: 0.98rem;
}

.manifesto-sections {
  display: grid;
  gap: 1.1rem;
}

.manifesto-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  padding: 16px 16px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.manifesto-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.manifesto-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  border: 1px solid rgba(249, 115, 22, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.manifesto-icon i {
  font-size: 0.95rem;
}

.manifesto-card h3 {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
}

.manifesto-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.manifesto-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.55;
}

.manifesto-bullet-icon {
  flex: 0 0 auto;
  margin-top: 0.45em;
  line-height: 0;
  color: var(--primary);
}

.manifesto-bullet-icon i {
  font-size: 0.35rem;
}

@media (min-width: 768px) {
  .manifesto-plan {
    padding: 26px 30px;
  }
  .manifesto-card {
    padding: 18px 20px;
  }
  .manifesto-card h3 {
    font-size: 1.05rem;
  }
}

/* # end manifesto page style css */