/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #b22234;
  --primary-light: #d4344e;
  --accent: #002868;
  --accent-hover: #001f52;
  --white: #ffffff;
  --light-bg: #f5f7fb;
  --dark-text: #1a1f2e;
  --gray-text: #5a6377;
  --border: #dde1e8;
  --shadow: 0 4px 24px rgba(2, 40, 104, 0.10);
  --shadow-lg: 0 8px 40px rgba(2, 40, 104, 0.15);
  --radius: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-wrap {
  justify-content: space-between;
}

.lang-select {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  opacity: 0.9;
}

.lang-select i {
  font-size: 0.9rem;
}

.lang-select select {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 0.78rem;
  cursor: pointer;
  outline: none;
}

.lang-select select option {
  color: var(--dark-text);
  background: var(--white);
}

.top-bar-right a {
  color: var(--white);
  opacity: 0.7;
  transition: opacity var(--transition);
  font-size: 0.9rem;
}

.top-bar-right a:hover {
  opacity: 1;
  color: var(--primary);
}

/* ===== MAIN NAVBAR ===== */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(2, 40, 104, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.nav-logo img {
  height: 80px;
  width: auto;
  border-radius: 6px;
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(2, 40, 104, 0.35));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.nav-logo-text h1 {
  font-size: 1.45rem;
  font-weight: 800;
  color: rgb(10, 10, 106);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-logo-text span {
  font-size: 0.62rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

/* ===== NAV DROPDOWN ===== */
.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item.has-dropdown > a i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.nav-item.has-dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 1001;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  color: var(--primary);
  background: var(--light-bg);
  padding-left: 24px;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BANNER / HERO SLIDER ===== */
.banner {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--primary);
}

.banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 40, 104, 0.75) 0%,
    rgba(2, 40, 104, 0.35) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.banner-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--white);
}

.banner-slide.active .banner-content {
  animation: bannerFloat 6s ease-in-out infinite;
}

@keyframes bannerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.banner-slide.active .banner-kicker {
  animation: bannerFadeUp 0.8s ease forwards;
}

.banner-slide.active .banner-content h2 {
  animation: bannerFadeUp 0.9s ease 0.2s forwards;
}

.banner-slide.active .banner-content p {
  animation: bannerFadeUp 0.9s ease 0.4s forwards;
}

.banner-slide.active .banner-buttons {
  animation: bannerFadeUp 0.9s ease 0.6s forwards;
}

@keyframes bannerFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-slide.active .banner-kicker,
.banner-slide.active .banner-content h2,
.banner-slide.active .banner-content p,
.banner-slide.active .banner-buttons {
  opacity: 0;
}

.banner-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: white;
  background: rgba(178, 34, 52, 0.9);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.banner-content h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 760px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.banner-content h2 span {
  color: var(--primary);
}

.banner-content p {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 36px;
  opacity: 0.9;
  line-height: 1.8;
  font-weight: 300;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 34, 52, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* Banner Controls */
.banner-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition);
}

.banner-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

.banner-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
  pointer-events: none;
}

.banner-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all var(--transition);
}

.banner-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== BANNER LEARN MORE MODAL ===== */
.banner-learn {
  font-family: inherit;
}

.banner-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.banner-modal.open {
  display: flex;
}

.banner-modal-box {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalPop 0.35s ease;
}

@keyframes modalPop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.banner-modal-img {
  width: 100%;
  height: 280px;
  min-height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.banner-modal-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.banner-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.banner-modal-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.banner-modal-body {
  padding: 28px 32px;
  text-align: left;
  overflow-y: auto;
}

.banner-modal-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 10px;
}

.banner-modal-body h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.banner-modal-body p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.banner-modal-body .btn-primary {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===== TEAM MODAL (portrait-friendly layout) ===== */
.team-modal-box {
  flex-direction: row;
  max-width: 760px;
}

.team-modal-img {
  width: 320px;
  height: auto;
  min-height: 100%;
  flex-shrink: 0;
  align-self: stretch;
}

.team-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top center;
}

.team-modal-body {
  flex: 1;
}

/* ===== SERVICE MODAL ===== */
.service-modal-box {
  overflow: hidden;
}

.service-modal-head {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 30px 32px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-modal-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.service-modal-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 6px;
}

.service-modal-head h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
}

.service-modal-body p {
  font-size: 1rem;
}

/* ===== SECTION SHARED ===== */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-header p {
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== ABOUT US ===== */
.about {
  background: var(--white);
  padding-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-image-badge .number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-text .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.25;
}

.about-text h2 span {
  color: var(--accent);
}

.about-text p {
  color: var(--gray-text);
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
}

.about-feature .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(178, 34, 52, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-read-more:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 40, 104, 0.25);
}

/* ===== LATEST NEWS ===== */
.news {
  background: var(--white);
  padding-top: 40px;
  padding-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(2, 40, 104, 0.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.news-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.news-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
}

.news-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-date i {
  color: var(--accent);
}

.news-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.news-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.news-link:hover {
  gap: 10px;
}

.news-more {
  text-align: center;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-explore:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 40, 104, 0.3);
}

/* ===== NEWS / EVENTS ARCHIVE ===== */
.news-archive {
  background: var(--light-bg);
}

.archive-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-filter {
  padding: 10px 24px;
  border: 1.5px solid var(--accent);
  border-radius: 50px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.archive-filter:hover,
.archive-filter.active {
  background: var(--accent);
  color: var(--white);
}

.archive-search {
  position: relative;
  min-width: 260px;
  flex: 1;
  max-width: 360px;
}

.archive-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-text);
  font-size: 0.9rem;
}

.archive-search input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark-text);
  background: var(--white);
  outline: none;
  transition: border var(--transition), box-shadow var(--transition);
}

.archive-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2, 40, 104, 0.1);
}

.archive-grid {
  min-height: 200px;
}

.archive-grid .news-card {
  animation: fadeInUp 0.4s ease;
}

.archive-grid .news-card-img {
  height: 210px;
}

.archive-grid .news-card-img img {
  height: 100%;
}

.news-status {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
}

.status-upcoming { background: var(--accent); }
.status-active { background: #28a745; }
.status-past { background: #6c757d; }

.archive-empty {
  display: none;
  text-align: center;
  padding: 70px 20px;
  color: var(--gray-text);
}

.archive-empty i {
  font-size: 3.5rem;
  color: var(--border);
  margin-bottom: 16px;
}

.archive-empty p {
  font-size: 1.05rem;
}

.load-more-wrap {
  margin-top: 20px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--light-bg);
  padding-top: 40px;
  padding-bottom: 40px;
}

.services-slider {
  position: relative;
  padding: 0 56px;
}

.services-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.services-grid .service-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 0;
  scroll-snap-align: start;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-arrow:hover {
  background: var(--accent);
  color: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(2, 40, 104, 0.12);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(2, 40, 104, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(2, 40, 104, 0.2);
}

.service-card-head {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 26px 24px 22px;
  color: var(--white);
}

.service-card-head h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.service-card-head p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 500;
}

.service-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: var(--light-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  transition: all var(--transition);
  border: 1px solid rgba(2, 40, 104, 0.1);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.service-card-body p {
  color: #4a5a78;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.service-card.hidden {
  display: none;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all var(--transition);
  margin-top: auto;
  align-self: flex-start;
}

.service-link:hover {
  background: var(--primary);
  color: var(--white);
  gap: 12px;
  box-shadow: 0 6px 18px rgba(2, 40, 104, 0.25);
}

.services-more {
  text-align: center;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-explore:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 40, 104, 0.25);
}

/* ===== EVENTS ===== */
.events {
  background: var(--light-bg);
  padding-top: 40px;
  padding-bottom: 40px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.event-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(2, 40, 104, 0.08);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.event-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.event-card:hover .event-card-img img {
  transform: scale(1.06);
}

.event-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.event-meta span {
  font-size: 0.78rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta i {
  color: var(--accent);
  width: 16px;
}

.event-card-body p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

/* ===== MEET OUR TEAM (ORGANOGRAM) ===== */
.team {
  background: var(--white);
  padding-top: 40px;
  padding-bottom: 40px;
}

.team-orgram {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.team-leader {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.team-card {
  width: 100%;
  max-width: 260px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(2, 40, 104, 0.08);
  transition: all var(--transition);
  text-align: center;
}

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

.team-card.leader {
  width: 300px;
  border: 2px solid var(--accent);
}
.team-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.team-card.leader .team-card-img {
  height: 300px;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition);
}

.team-card:hover .team-card-img img {
  transform: scale(1.06);
}

.team-social {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-social {
  opacity: 1;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
}

.team-social a:hover {
  background: var(--accent);
  color: var(--white);
}

.team-card-info {
  padding: 18px 16px;
}

.team-card-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card-info span {
  font-size: 0.8rem;
  color: var(--gray-text);
  display: block;
  margin-bottom: 14px;
}

.team-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--accent);
  transition: all var(--transition);
}

.team-read-more:hover {
  background: var(--accent);
  color: var(--white);
  gap: 10px;
}

.team-connector {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.team-hline {
  width: 1px;
  height: 30px;
  background: var(--border);
}

.team-vline {
  width: 80%;
  height: 1px;
  background: var(--border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
}

.team-card.hidden {
  display: none;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--white);
  padding-top: 40px;
  padding-bottom: 40px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-us-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.why-us-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-us-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.why-us-item-text p {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.why-us-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ===== FACEBOOK FEED ===== */
.facebook-feed {
  padding: 60px 0;
  background: #f5f7fa;
}

.facebook-feed .container {
  max-width: 1100px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-divider.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--gray-text);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.facebook-feed .fb-frame {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(2, 40, 104, 0.08);
}

.facebook-feed .fb-frame iframe {
  border: none;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: #0b0f2a;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-brand .tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: red;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.footer-contact-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(178, 34, 52, 0.1);
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 90px 0 80px;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter {
  padding: 10px 24px;
  border: 1.5px solid var(--accent);
  border-radius: 50px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--accent);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 20px rgba(2, 40, 104, 0.08);
}

.gallery-item.hide {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 40, 104, 0.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  display: inline-block;
  width: fit-content;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.gallery-overlay h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  transition: transform var(--transition);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1rem;
  text-align: center;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.contact-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--light-bg);
  transition: all var(--transition);
}

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

.contact-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-wrap {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}

.contact-form-wrap .label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}

.contact-form-wrap h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 8px 0 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark-text);
  background: var(--white);
  outline: none;
  transition: border var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2, 40, 104, 0.1);
}

.submit-btn {
  border: none;
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(34, 139, 34, 0.12);
  color: #228b22;
  border: 1px solid rgba(34, 139, 34, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .banner-content h2 {
    font-size: 2.6rem;
  }

  .about-grid {
    gap: 40px;
  }

  .services-grid {
    gap: 20px;
  }

  .services-grid .service-card {
    flex: 0 0 calc(50% - 10px);
  }

  .services-slider {
    padding: 0 44px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .facebook-feed .fb-frame {
    max-width: 100%;
  }

  .facebook-feed .fb-frame iframe {
    height: 450px !important;
  }

  .nav-logo img {
    height: 64px;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .top-bar-left {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 999;
    gap: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  /* Mobile dropdown */
  .nav-item.has-dropdown {
    width: 100%;
  }

  .nav-item.has-dropdown > a {
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--light-bg);
    padding: 0;
    display: none;
  }

  .nav-item.has-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu a:hover {
    background: var(--white);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
    display: block;
  }

  .banner {
    height: 72vh;
    min-height: 420px;
    max-height: 620px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 0.95rem;
  }

  .banner-arrows {
    padding: 0 12px;
  }

  .banner-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 320px;
  }

  .about-image-badge {
    bottom: 12px;
    right: 12px;
    padding: 14px 18px;
  }

  .about-image-badge .number {
    font-size: 1.6rem;
  }

  .services-slider {
    padding: 0 38px;
  }

  .services-grid {
    gap: 16px;
  }

  .services-grid .service-card {
    flex: 0 0 100%;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-connector .team-vline {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-image img {
    height: 300px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  /* ===== Inner page responsive (768px) ===== */
  .page-banner {
    padding: 70px 0 60px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 360px;
  }

  /* Banner modal mobile */
  .banner-modal-box {
    max-height: 85vh;
    flex-direction: column;
  }

  .team-modal-box {
    flex-direction: column;
  }

  .team-modal-img {
    width: 100%;
    height: 220px;
    min-height: 0;
  }

  .banner-modal-img {
    height: 180px;
  }

  .banner-modal-body {
    padding: 20px;
  }

  .banner-modal-body h3 {
    font-size: 1.3rem;
  }

  .service-modal-head {
    padding: 20px 18px 18px;
    gap: 14px;
  }

  .service-modal-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .service-modal-head h3 {
    font-size: 1.2rem;
  }

  /* Archive toolbar mobile */
  .archive-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .archive-search {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 60vh;
    min-height: 380px;
    max-height: 520px;
  }

  .banner-content h2 {
    font-size: 1.6rem;
  }

  .banner-buttons {
    flex-direction: column;
  }

  .banner-buttons .btn-primary,
  .banner-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  /* ===== Inner page responsive (480px) ===== */
  .page-banner h1 {
    font-size: 1.7rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap h2 {
    font-size: 1.6rem;
  }

}


/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.nav-overlay.open {
  display: block;
}

/* ===== NEWS TICKER ===== */
.news-ticker {
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--accent);
}

.news-ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 22px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}

.news-ticker-label i {
  font-size: 1rem;
}

.news-ticker-track {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.news-ticker-items {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  flex-shrink: 0;
  animation: tickerScroll 40s linear infinite;
}

.news-ticker:hover .news-ticker-items {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 12px 40px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.ticker-item strong {
  color: var(--white);
  font-weight: 700;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .news-ticker-label span {
    display: none;
  }
  .news-ticker-label {
    padding: 12px 14px;
  }
  .ticker-item {
    padding: 0 24px;
    font-size: 0.8rem;
  }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}
