﻿:root {
  --navy: #653426;
  --navy-light: #7a4432;
  --amber: #D98B3F;
  --amber-dark: #b8712a;
  --text-dark: #2b1c15;
  --text-muted: #7a6a5f;
  --border-light: #ece4dc;
  --bg-light: #f8f5f0;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a { text-decoration: none; }

.section { padding: 70px 0; }

.eyebrow {
  color: var(--amber-dark);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.eyebrow-light { color: var(--amber); }

.section-heading h2 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-heading { max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

.btn-accent {
  background: var(--amber);
  border: none;
  color: var(--navy);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all .25s ease;
}
.btn-accent:hover { background: var(--amber-dark); color: #fff; transform: translateY(-2px); }

.btn-outline-light {
  border-radius: 6px;
  font-weight: 600;
  padding: 12px 28px;
}

.btn-dark-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  display: inline-block;
  transition: all .25s ease;
}
.btn-dark-outline:hover { background: var(--navy); color: #fff; }

/* ===== Top bar ===== */
.topbar {
  background: var(--navy-light);
  color: #e8ddd3;
  font-size: 0.85rem;
  padding: 9px 0;
}
.topbar-info span { margin-right: 24px; }
.topbar-info i { color: var(--amber); margin-right: 6px; }
.topbar-social a { color: #e8ddd3; margin-left: 14px; transition: color .2s; }
.topbar-social a:hover { color: var(--amber); }

/* ===== Navbar ===== */
.navbar {
  background: var(--navy);
  padding: 16px 0;
  transition: all .3s ease;
}
.navbar.navbar-scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.navbar-brand {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 1px;
}
.navbar-brand span { color: var(--amber); }
.navbar-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.nav-link {
  color: #ecdfd2 !important;
  font-weight: 500;
  padding: 8px 14px !important;
  position: relative;
}
.nav-link.active, .nav-link:hover { color: var(--amber) !important; }
.nav-link::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link.active::before, .nav-link:hover::before { transform: scaleX(1); }

.navbar .dropdown-menu {
  background: var(--navy-light);
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.navbar .dropdown-item {
  color: #ecdfd2;
  padding: 10px 18px;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color .15s ease;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
  background: transparent;
  color: var(--amber);
}
.navbar .dropdown-toggle::after { vertical-align: 2px; margin-left: 6px; }

/* ===== Hero Slider (full width) ===== */
.hero-slider-wrap { position: relative; }
.hero-slider, .hero-slider .swiper-wrapper { min-height: 100vh; }
.hero-slider .swiper-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slider .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(101,52,38,0.92) 0%, rgba(101,52,38,0.72) 45%, rgba(101,52,38,0.35) 100%);
}
.hero-slider .container { position: relative; z-index: 2; }
.hero-slider h1 {
  color: #fff;
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-slider .lead-text {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-slider .swiper-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 12px;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  position: static;
  width: 48px; height: 48px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after { content: none; }
.hero-slider .swiper-button-prev i,
.hero-slider .swiper-button-next i { font-size: 1.1rem; }

.hero-slider .swiper-pagination {
  bottom: 40px;
  left: 40px;
  width: auto;
  text-align: left;
}
.hero-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px; height: 10px;
}
.hero-slider .swiper-pagination-bullet-active {
  background: var(--amber);
  opacity: 1;
}

@media (max-width: 767px) {
  .hero-slider h1 { font-size: 2.4rem; }
  .hero-slider .swiper-nav { display: none; }
}

/* ===== Feature cards ===== */
.features-section { background: #fff; }
.feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 36px 28px;
  height: 100%;
  transition: all .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.1); background: #fff; }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h5 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); margin-bottom: 0; font-size: 0.95rem; }

/* ===== Services ===== */
.services-section { background: var(--bg-light); }
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 26px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  transition: all .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.12); }
.service-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(217,139,63,0.12);
  color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.service-card p { color: var(--text-muted); font-size: 0.92rem; }
.service-card a { color: var(--navy); font-weight: 600; font-size: 0.9rem; }
.service-card a:hover { color: var(--amber-dark); }

.support-strip .support-card {
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
}
.support-card i { font-size: 1.8rem; color: var(--amber); }
.support-card strong { display: block; }
.support-card span { color: #d9c6b3; font-size: 0.88rem; }

/* ===== Executive Summary ===== */
.exec-summary-section { background: var(--bg-light); }
.exec-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 40px 30px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  transition: all .25s ease;
}
.exec-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.12); }
.exec-num {
  position: absolute;
  top: 14px; right: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(101,52,38,0.07);
  line-height: 1;
}
.exec-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(217,139,63,0.12);
  color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.exec-card h5 { color: var(--navy); margin-bottom: 12px; }
.exec-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

.exec-highlight {
  background: var(--navy);
  border-radius: 18px;
  padding: 34px 20px;
  margin-top: 48px;
  gap: 20px;
}
.exec-stat { padding: 6px 30px; }
.exec-stat + .exec-stat { border-left: 1px solid rgba(255,255,255,0.14); }
.exec-stat span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
}
.exec-stat small { color: #d9c6b3; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.4px; }
@media (max-width: 575.98px) {
  .exec-stat + .exec-stat { border-left: none; }
}

/* ===== Why section ===== */
.why-section { background: #fff; }
.why-item {
  gap: 16px;
  margin-top: 22px;
}
.why-item i { color: var(--amber-dark); font-size: 1.4rem; margin-top: 2px; }
.why-item strong { display: block; margin-bottom: 4px; }
.why-item span { color: var(--text-muted); font-size: 0.93rem; }

/* ===== Get section ===== */
.get-section { background: var(--bg-light); padding-bottom: 50px; }
.get-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  transition: all .25s ease;
}
.get-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.12); }
.get-card i {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(217,139,63,0.12);
  color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.get-card h5 { color: var(--navy); }
.get-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }

/* ===== CTA section ===== */
.cta-section {
  background: linear-gradient(135deg, #0d234a 0%, var(--navy) 100%);
  color: #fff;
}
.cta-points { margin-top: 26px; }
.cta-points li { margin-bottom: 12px; color: #ecdfd2; }
.cta-points i { color: var(--amber); margin-right: 10px; }

/* ===== Vision & Mission ===== */
.vision-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.vision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(101,52,38,0.62) 0%, rgba(184,113,42,0.4) 100%);
}
.vision-section .container { position: relative; z-index: 1; }
.vision-section .section-heading { margin-bottom: 44px; }
.vm-card {
  background: rgba(43,28,21,0.28);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 46px 42px;
  height: 100%;
  backdrop-filter: blur(6px);
  transition: all .25s ease;
}
.vm-card:hover {
  background: rgba(43,28,21,0.4);
  border-color: rgba(217,139,63,0.55);
  transform: translateY(-6px);
}
.vm-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(217,139,63,0.16);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 24px;
}
.vm-card h3 { margin-bottom: 14px; }
.vm-card .cta-points { margin-top: 22px; }

.cta-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.cta-form .form-control, .cta-form .form-select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
.cta-form .form-control:focus, .cta-form .form-select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 0.2rem rgba(217,139,63,0.15);
}

/* ===== Team ===== */
.team-section { background: var(--bg-light); }
.team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  transition: all .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.12); }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-info { padding: 20px; text-align: center; }
.team-info h5 { margin-bottom: 2px; }
.team-info span { color: var(--text-muted); font-size: 0.88rem; }
.team-social { margin-top: 12px; }
.team-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--bg-light);
  color: var(--navy);
  border-radius: 50%;
  margin: 0 4px;
  transition: all .2s;
}
.team-social a:hover { background: var(--amber); color: #fff; }

/* ===== Stats ===== */
.stats-section { background: var(--navy); padding: 60px 0; }
.stat-item span.counter {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--amber);
}
.stat-item { color: #fff; font-size: 2.6rem; font-weight: 800; font-family: 'Poppins', sans-serif; }
.stat-item p { color: #d9c6b3; font-size: 0.95rem; font-weight: 500; margin-top: 6px; }

/* ===== Testimonials ===== */
.testimonial-section { background: #fff; padding-top: 60px; }
.testimonial-card {
  max-width: 700px;
  text-align: center;
  padding: 20px;
}
.testimonial-card i.bi-quote { font-size: 2.5rem; color: var(--amber); }
.testimonial-card p { font-size: 1.25rem; color: var(--navy); font-style: italic; margin: 18px 0 26px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; }
.testimonial-author span { color: var(--text-muted); font-size: 0.85rem; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: var(--border-light); padding: 0;
}
.carousel-dots button.active { background: var(--amber); }

/* ===== Partners ===== */
.partners-section { padding: 50px 0; background: var(--bg-light); }
.partner-logo {
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.6;
  transition: opacity .2s;
}
.partner-logo:hover { opacity: 1; color: var(--navy); }

/* ===== News ===== */
.news-section { background: #fff; }
.news-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  height: 100%;
  transition: all .25s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.12); }
.news-card img { width: 100%; height: 210px; object-fit: cover; }
.news-body { padding: 24px; }
.news-meta { color: var(--text-muted); font-size: 0.8rem; }
.news-body h5 { margin: 12px 0 10px; }
.news-body p { color: var(--text-muted); font-size: 0.92rem; }
.news-body a { color: var(--amber-dark); font-weight: 600; font-size: 0.9rem; }

/* ===== Newsletter ===== */
.newsletter-section {
  background: var(--navy);
  color: #fff;
  padding: 60px 0;
}
.newsletter-section h3 { margin-bottom: 8px; }
.newsletter-section p { color: #d9c6b3; margin-bottom: 0; }
.newsletter-form .form-control {
  padding: 14px 16px;
  border-radius: 8px 0 0 8px;
  border: none;
}
.newsletter-form .btn-accent { border-radius: 0 8px 8px 0; }
.newsletter-message { margin-top: 10px; font-size: 0.9rem; min-height: 1.2em; }
.newsletter-message.text-success { color: #7fd99a !important; }
.newsletter-message.text-danger { color: #ff9c9c !important; }

/* ===== Footer ===== */
.footer { background: #2a140d; color: #d9c6b3; padding: 70px 0 24px; }
.footer-brand { color: #fff; font-size: 1.6rem; }
.footer-brand span { color: var(--amber); }
.footer p { font-size: 0.92rem; margin: 14px 0 18px; }
.footer h6 { color: #fff; margin-bottom: 18px; }
.footer-links li, .footer-contact li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a { color: #d9c6b3; }
.footer-links a:hover { color: var(--amber); }
.footer-contact i { color: var(--amber); margin-right: 8px; }
.footer hr { border-color: rgba(255,255,255,0.1); margin: 40px 0 20px; }
.footer-social a { border: 1px solid rgba(255,255,255,0.15); width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 6px 0 0; }

.btn-to-top {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  border: none;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 991px) {
  .section { padding: 70px 0; }
}

/* ===== Page Banner (inner pages) ===== */
.page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(101,52,38,0.94) 0%, rgba(101,52,38,0.8) 60%, rgba(101,52,38,0.55) 100%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: 2.6rem; margin-bottom: 12px; }
.page-banner .breadcrumb-nav { color: #ecdfd2; font-size: 0.95rem; }
.page-banner .breadcrumb-nav a { color: #ecdfd2; }
.page-banner .breadcrumb-nav a:hover { color: var(--amber); }
.page-banner .breadcrumb-nav i { font-size: 0.7rem; margin: 0 8px; vertical-align: middle; }

/* ===== Events ===== */
.event-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  transition: all .25s ease;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.12); }
.event-date {
  background: var(--navy);
  color: #fff;
  width: 100px;
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 10px;
}
.event-date span { font-size: 1.8rem; font-weight: 800; font-family: 'Poppins', sans-serif; line-height: 1; }
.event-date small { color: var(--amber); font-weight: 600; font-size: 0.8rem; font-family: 'Inter', sans-serif; letter-spacing: 1px; margin-top: 4px; }
.event-date-range { padding: 16px 10px; }
.event-date-compact {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  word-break: break-word;
}
.event-date-compact span { display: block; }
.event-date-compact small { display: block; }
.event-body { flex: 1; min-width: 0; padding: 22px 26px; }
.event-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }
.event-meta i { color: var(--amber-dark); margin-right: 6px; }
.event-body h5 { margin-bottom: 10px; }
.event-body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 14px; }
.event-tag {
  display: inline-block;
  background: rgba(217,139,63,0.12);
  color: var(--amber-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  margin-right: 6px;
}
.event-tag-range {
  background: rgba(30,42,66,0.08);
  color: var(--navy);
}
.event-past { opacity: 0.65; }

/* ===== Contact page ===== */
.contact-info-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  transition: all .25s ease;
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.12); }
.contact-info-card i {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.contact-info-card h6 { margin-bottom: 8px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(101,52,38,0.08);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 380px; border: 0; filter: grayscale(0.15); }

@media (max-width: 575px) {
  .event-card { flex-direction: column; }
  .event-date { width: 100%; flex-direction: row; gap: 8px; padding: 12px; }
}

/* ===== Calendar page ===== */
.calendar-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 55px rgba(101,52,38,0.12);
  border: 1px solid var(--border-light);
}
.calendar-legend { gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.calendar-legend i { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.calendar-legend .dot-upcoming { background: var(--amber); }
.calendar-legend .dot-past { background: #b7a89b; }

#eventsCalendar {
  --fc-border-color: #ece1d6;
  --fc-neutral-bg-color: var(--bg-light);
  --fc-page-bg-color: transparent;
  --fc-button-bg-color: var(--navy);
  --fc-button-border-color: var(--navy);
  --fc-button-hover-bg-color: var(--amber-dark);
  --fc-button-hover-border-color: var(--amber-dark);
  --fc-button-active-bg-color: var(--amber);
  --fc-button-active-border-color: var(--amber);
  --fc-today-bg-color: rgba(217,139,63,0.12);
  --fc-more-link-bg-color: transparent;
  --fc-more-link-text-color: var(--amber-dark);
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

/* Toolbar */
#eventsCalendar .fc-toolbar { margin-bottom: 26px; flex-wrap: wrap; row-gap: 14px; }
#eventsCalendar .fc-toolbar-title { font-family: 'Poppins', sans-serif; color: var(--navy); font-size: 1.5rem; font-weight: 700; }
#eventsCalendar .fc-button {
  text-transform: capitalize;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 8px !important;
  box-shadow: none !important;
}
#eventsCalendar .fc-button:disabled { opacity: 0.45; }
#eventsCalendar .fc-button-group .fc-button { border-radius: 8px !important; }

/* Grid frame */
#eventsCalendar .fc-scrollgrid { border-color: #ece1d6; border-radius: 14px; overflow: hidden; }
#eventsCalendar table { font-size: 0.92rem; }

/* Weekday header row */
#eventsCalendar .fc-col-header-cell {
  background: var(--bg-light);
  border-color: #ece1d6;
  padding: 10px 0;
}
#eventsCalendar .fc-col-header-cell-cushion {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-decoration: none;
}

/* Day cells */
#eventsCalendar .fc-daygrid-day { transition: background-color .15s ease; }
#eventsCalendar .fc-daygrid-day:hover { background: var(--bg-light); }
#eventsCalendar .fc-daygrid-day-frame { padding: 4px; min-height: 90px; }
#eventsCalendar .fc-daygrid-day-number {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px;
  text-decoration: none;
}
#eventsCalendar .fc-day-other .fc-daygrid-day-number { color: #d3c3b6; }
#eventsCalendar .fc-day-today { background: rgba(217,139,63,0.1) !important; }
#eventsCalendar .fc-day-today .fc-daygrid-day-number {
  background: var(--amber);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 6px;
}

/* Events */
#eventsCalendar .fc-daygrid-event {
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.76rem;
  font-weight: 600;
  border: none;
  margin: 2px 4px;
}
#eventsCalendar .fc-daygrid-more-link {
  font-weight: 600;
  font-size: 0.75rem;
}
#eventsCalendar a { text-decoration: none; }

.agenda-toggle {
  display: inline-flex;
  background: var(--bg-light);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 40px;
}
.agenda-toggle button {
  border: none;
  background: transparent;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s ease;
}
.agenda-toggle button.active { background: var(--navy); color: #fff; }
.agenda-panel { display: none; }
.agenda-panel.active { display: block; }

/* ===== Event cards: clickable title ===== */
.event-body h5 a { color: var(--text-dark); }
.event-body h5 a:hover { color: var(--amber-dark); }

/* ===== Event detail page ===== */
.event-detail-body h2 { color: var(--navy); margin-top: 34px; margin-bottom: 14px; }
.event-detail-body h2:first-child { margin-top: 0; }
.event-detail-body p { color: var(--text-muted); margin-bottom: 18px; }
.event-detail-body ul { color: var(--text-muted); margin-bottom: 18px; padding-left: 20px; }
.event-detail-body li { margin-bottom: 10px; }
.event-detail-body li::marker { color: var(--amber-dark); }

.event-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 15px 45px rgba(101,52,38,0.1);
  position: sticky;
  top: 100px;
}
.event-sidebar-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.event-sidebar-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.event-sidebar-row:first-of-type { padding-top: 0; }
.event-sidebar-row i { color: var(--amber-dark); font-size: 1.25rem; width: 24px; margin-top: 2px; }
.event-sidebar-row strong { display: block; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.event-sidebar-row span { font-weight: 600; color: var(--navy); }
.event-ended-badge {
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 18px;
}
.event-detail-hero {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 34px;
  box-shadow: 0 15px 45px rgba(101,52,38,0.1);
}
.event-detail-hero img { width: 100%; height: 100%; object-fit: cover; max-height: 420px; }

.related-events .event-card { height: 100%; }

/* ===== News article detail page ===== */
.article-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 45px rgba(101,52,38,0.1);
  position: sticky;
  top: 100px;
}
.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 22px;
}
.article-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.article-author strong { display: block; color: var(--navy); }
.article-author span { color: var(--text-muted); font-size: 0.85rem; }

.article-share { padding-bottom: 22px; border-bottom: 1px solid var(--border-light); margin-bottom: 22px; }
.article-share strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--navy);
  margin-right: 8px;
  transition: all .2s ease;
}
.article-share a:hover { background: var(--amber); color: #fff; }

.article-related-list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.article-related-list a {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.article-related-list a:last-child { border-bottom: none; }
.article-related-list a:hover { color: var(--amber-dark); }

/* ===== Support Us: subscription cards (service-card styled) ===== */
.subscribe-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.subscribe-card {
  box-sizing: border-box;
  width: 340px;
  max-width: 100%;
  height: 440px;
  background: #fff;
  border-radius: 14px;
  padding: 44px 30px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  transition: all .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.subscribe-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(101,52,38,0.12); }
.subscribe-card h5 { color: var(--navy); margin-bottom: 14px; }
.subscribe-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 26px; }
.subscribe-card-featured { box-shadow: 0 20px 40px rgba(101,52,38,0.14); }
.subscribe-card-featured .service-icon { background: var(--amber); color: var(--navy); }
.subscribe-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(217,139,63,0.4);
}
.subscribe-price { color: var(--navy); margin-bottom: 12px; }
.subscribe-price .currency { font-size: 1.3rem; font-weight: 700; vertical-align: top; position: relative; top: 6px; }
.subscribe-price .amount { font-size: 2.8rem; font-weight: 700; font-family: 'Poppins', sans-serif; }
.subscribe-price .period { color: var(--text-muted); font-size: 0.95rem; }
.subscribe-card .btn { width: 100%; padding-top: 12px; padding-bottom: 12px; }
.subscribe-note { margin-top: 40px; color: var(--text-muted); }
.subscribe-note a { color: var(--amber-dark); font-weight: 600; }

/* ===== Event detail: gallery ===== */
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 24px rgba(101,52,38,0.06);
  transition: all .25s ease;
}
.event-gallery-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(101,52,38,0.14); }
.event-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.event-gallery-item:hover img { transform: scale(1.06); }
.event-gallery-more-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(101,52,38,0.72);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 0 12px;
  transition: background .25s ease;
}
.event-gallery-item-more:hover .event-gallery-more-overlay { background: rgba(101,52,38,0.85); }
@media (max-width: 767px) {
  .event-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

#galleryModal .modal-dialog { max-width: 900px; }
#galleryModal .modal-content {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 18px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
#galleryModal img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: var(--bg-light);
}
.gallery-modal-close,
.gallery-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  z-index: 3;
  transition: all .2s ease;
}
.gallery-modal-close {
  top: -16px;
  right: -16px;
  width: 34px;
  height: 34px;
  opacity: 1;
}
.gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  color: var(--navy);
  font-size: 1.3rem;
  cursor: pointer;
}
.gallery-nav:hover { background: var(--amber); color: #fff; }
.gallery-nav-prev { left: 10px; }
.gallery-nav-next { right: 10px; }
.gallery-counter {
  text-align: center;
  margin-top: 14px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Event quick-view modal ===== */
#eventModal .modal-content { border: none; border-radius: 16px; overflow: hidden; }
#eventModal .modal-header { background: var(--bg-light); border-bottom: none; align-items: flex-start; padding: 26px 28px 18px; }
#eventModal .modal-title { color: var(--navy); font-size: 1.25rem; }
#eventModal .modal-body { padding: 24px 28px; }
#eventModal .modal-footer { border-top: 1px solid var(--border-light); padding: 18px 28px; }
#eventModal .btn-close:focus { box-shadow: none; }
#eventModal #eventModalDesc { color: var(--text-muted); }


