/* ========================================
   SET Ministry — Design System
   ======================================== */
:root {
  /* Brand */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #7c3aed;
  --accent-light: #8b5cf6;
  --success: #059669;
  --dark: #0f172a;
  --darker: #020617;

  /* Neutrals */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Shapes */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Base
   ======================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary);
  color: #fff;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  color: var(--dark);
}

.display-4, .display-5 {
  letter-spacing: -0.03em;
}

.section-title {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  border-radius: var(--radius);
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  border: none;
}

.btn-light:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-sm {
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
}

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

/* ========================================
   Navbar
   ======================================== */
.navbar {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.6rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.navbar .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7) !important;
  padding: 0.4rem 0.8rem !important;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

.navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.1);
}

.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.navbar .btn-primary {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Dropdown */
.navbar .dropdown-menu {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.4rem;
  margin-top: 0.4rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.navbar .dropdown-item {
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7) !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}
.navbar .dropdown-item.active {
  background: rgba(37, 99, 235, 0.2);
  color: var(--primary-light) !important;
}
.navbar .dropdown-toggle::after {
  vertical-align: middle;
  margin-left: 0.4em;
  opacity: 0.6;
}

/* ========================================
   Cards
   ======================================== */
.card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
  border-color: var(--gray-300);
}

.card-img-top {
  border-radius: 0;
}

.card-body {
  padding: 1.5rem;
}

/* ========================================
   Hero Sections (Carousel)
   ======================================== */
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 90vh;
  min-height: 500px;
  max-height: 900px;
}

/* --- Background images --- */
#heroCarousel .carousel-item .slide-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

/* --- Cinematic gradient overlay --- */
#heroCarousel .carousel-item .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 30, 0.92) 0%,
    rgba(10, 10, 30, 0.65) 40%,
    rgba(10, 10, 30, 0.2) 70%,
    rgba(10, 10, 30, 0.05) 100%
  );
}

/* --- Caption layout --- */
#heroCarousel .carousel-caption {
  bottom: 0;
  padding-bottom: 6rem;
  padding-left: 5%;
  text-align: left;
  z-index: 2;
}

/* --- Staggered slide entrance ----- */

/* Subtitle label */
.slide-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.carousel-item.active .slide-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Heading */
#heroCarousel .carousel-caption h1,
#heroCarousel .carousel-caption h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.carousel-item.active .carousel-caption h1,
.carousel-item.active .carousel-caption h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* Accent divider */
.slide-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
  margin: 1rem 0;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform-origin: left;
}
.carousel-item.active .slide-divider {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.5s;
}

/* Paragraph */
#heroCarousel .carousel-caption .lead {
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 600px;
}
.carousel-item.active .carousel-caption .lead {
  opacity: 0.9;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Button container */
.slide-buttons {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.carousel-item.active .slide-buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* Carousel buttons */
#heroCarousel .btn-primary {
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
  transition: all var(--transition);
}
#heroCarousel .btn-primary:hover {
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}
#heroCarousel .btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* --- Indicators (progress bars) --- */
#heroCarousel .carousel-indicators {
  bottom: 2rem;
  gap: 6px;
  z-index: 3;
}

#heroCarousel .carousel-indicators button {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255,255,255,0.3);
  opacity: 1;
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: width 0.3s ease;
  cursor: pointer;
}

.indicator-fill {
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 0s linear;
}

#heroCarousel .carousel-indicators button.active .indicator-fill {
  width: 100%;
  transition: width 6s linear;
}

#heroCarousel .carousel-indicators button:hover {
  background: rgba(255,255,255,0.5);
}

/* --- Navigation arrows --- */
.carousel-control-prev,
.carousel-control-next {
  opacity: 0;
  transition: opacity 0.4s ease;
  width: 5%;
  z-index: 3;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-size: 1.5rem;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  transition: background-color var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(255,255,255,0.25);
}

/* --- Slide counter (top right) --- */
.carousel-counter {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 3;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transition: opacity 0.8s ease;
}
#heroCarousel:hover .carousel-counter {
  opacity: 1;
}
.counter-current { color: #fff; }

/* ========================================
   Inner Page Hero Banners
   ======================================== */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,58,138,0.75) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.page-hero .lead {
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ========================================
   Sections
   ======================================== */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.bg-soft {
  background-color: var(--gray-50);
}

/* ========================================
   Breadcrumbs
   ======================================== */
.breadcrumb-section {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0.7rem 0;
}

.breadcrumb-item {
  font-size: 0.85rem;
}

.breadcrumb-item a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--gray-700);
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--gray-300);
}

/* ========================================
   Forms
   ======================================== */
.form-control, .form-select {
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

/* ========================================
   Weekly Schedule
   ======================================== */
.schedule-card {
  min-width: 200px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  background: #fff;
}

.schedule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.schedule-card .day-badge {
  font-size: 0.72rem;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
}

.schedule-scroll {
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.5rem;
}

.schedule-scroll::-webkit-scrollbar { height: 5px; }
.schedule-scroll::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 10px; }

/* ========================================
   Gallery
   ======================================== */
.gallery-grid .gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.gallery-grid .gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

/* ========================================
   Leader Profile
   ======================================== */
.leader-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}

/* ========================================
   Search Modal
   ======================================== */
#searchModal .modal-content {
  border-radius: var(--radius-xl);
  background: var(--dark);
}

#searchModal .form-control {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.8rem 1.2rem;
}

#searchModal .form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

#searchModal .form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* ========================================
   Video Wrapper
   ======================================== */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* ========================================
   Progress Bars
   ======================================== */
.progress {
  border-radius: 10px;
  background: var(--gray-200);
}

.progress-bar {
  border-radius: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* ========================================
   Blockquote
   ======================================== */
.blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.2rem;
  color: var(--gray-600);
}

.blockquote-footer {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--darker);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-top {
  padding: 4rem 0 3rem;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--primary), var(--accent), var(--primary)) 1;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
}

.footer-contact p {
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

.footer-contact i {
  width: 1.2rem;
  color: var(--primary);
  margin-right: 0.3rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover { color: #fff; }

.footer-heading {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.7rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-text {
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-link.facebook:hover { background: #1877f2; }
.social-link.youtube:hover { background: #ff0000; }
.social-link.instagram:hover { background: #e4405f; }
.social-link.twitter:hover { background: #000; }
.social-link.whatsapp:hover { background: #25d366; }

.footer-cta .btn {
  border-radius: var(--radius);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
}

.footer-bottom {
  background: var(--darker);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom p strong {
  color: rgba(255,255,255,0.5);
}

.footer-bottom-link {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 1.2rem;
  transition: color var(--transition);
}

.footer-bottom-link:hover { color: #fff; }

/* ========================================
   Utilities
   ======================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
}

.shadow-hover {
  transition: all var(--transition);
}

.shadow-hover:hover {
  box-shadow: var(--shadow-lg);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s ease both;
}

.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

/* ========================================
   Blog
   ======================================== */
.post-card .card-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
}

.post-card .card-title a:hover {
  color: var(--primary);
}

/* ========================================
   Pagination
   ======================================== */
.pagination .page-link {
  border: none;
  color: var(--gray-600);
  border-radius: var(--radius);
  margin: 0 2px;
  font-weight: 500;
  transition: all var(--transition);
}

.pagination .page-link:hover {
  background: var(--gray-100);
  color: var(--dark);
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {
  .navbar .nav-link {
    padding: 0.5rem 1rem !important;
  }
  .navbar .nav-link.active::after { display: none; }
  .navbar .btn-primary { margin-top: 0.5rem; margin-left: 0 !important; }
}

@media (max-width: 768px) {
  #heroCarousel,
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 75vh;
    min-height: 380px;
  }
  #heroCarousel .carousel-caption {
    padding-bottom: 3.5rem;
    padding-left: 0;
    text-align: center;
  }
  #heroCarousel .carousel-caption h1,
  #heroCarousel .carousel-caption h2 {
    font-size: 1.6rem;
  }
  #heroCarousel .carousel-caption .lead {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .slide-divider { margin: 0.75rem auto; }
  .slide-subtitle { font-size: 0.75rem; }
  .carousel-counter { display: none; }
  #heroCarousel .carousel-indicators { bottom: 1.25rem; }
  #heroCarousel .carousel-indicators button { width: 32px; }
  .page-hero { min-height: 30vh; }
  .page-hero h1 { font-size: 1.8rem; }
  .section-padding { padding: 3rem 0; }
  .section-padding-sm { padding: 2rem 0; }
  .schedule-card { min-width: 160px; }
  .footer-bottom .text-md-end { text-align: left !important; margin-top: 0.5rem; }
  .footer-bottom-link { margin-left: 0; margin-right: 1rem; }
}