/* ============================================
   à¦…à¦¨à¦¿à¦¨à§à¦¦à§à¦¯ à¦‡à¦¸à¦²à¦¾à¦® à¦…à¦®à¦¿à¦¤ â€” Design System
   Premium Political Portfolio
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Sans+Bengali:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS Custom Properties === */
:root {
  /* Primary Colors (kept for reference / hero overlays) */
  --primary-dark: #0a1628;
  --primary-blue: #001f3f;
  --primary-navy: #0d2137;
  --primary-deep: #061220;

  /* Light theme surfaces */
  --page-white: #ffffff;
  --royal-blue: royalblue;
  --bg-secondary: #ffffff;

  /* Accent Colors */
  --accent-gold: #d4a843;
  --accent-gold-light: #f0d078;
  --accent-gold-dim: rgba(212, 168, 67, 0.3);
  --accent-emerald: #00b359;
  --accent-emerald-light: #00e070;
  --accent-red: #e74c3c;
  --accent-orange: #f39c12;

  /* BNP Party Colors */
  --bnp-green: #006a4e;
  --bnp-red: #f42a41;
  --bnp-wheat: #f5deb3;

  /* Glassmorphism (light surfaces) */
  --glass-bg: rgba(15, 23, 42, 0.04);
  --glass-bg-light: rgba(15, 23, 42, 0.07);
  --glass-bg-medium: rgba(15, 23, 42, 0.1);
  --glass-border: rgba(15, 23, 42, 0.1);
  --glass-border-light: rgba(15, 23, 42, 0.14);
  --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  --glass-blur: blur(20px);
  --glass-blur-heavy: blur(30px);

  /* Text (default: on white / light sections) */
  --text-primary: #1a1a2e;
  --text-secondary: rgba(26, 26, 46, 0.72);
  --text-muted: rgba(26, 26, 46, 0.5);
  --text-dark: #1a1a2e;
  --text-on-royal: #ffffff;
  --text-on-royal-muted: rgba(255, 255, 255, 0.85);

  /* Typography */
  --font-bengali: 'Noto Sans Bengali', 'Hind Siliguri', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', 'Hind Siliguri', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-Index */
  --z-nav: 1000;
  --z-hero: 1;
  --z-modal: 2000;
  --z-toast: 3000;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-bengali);
  background: var(--page-white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hero keeps light text over imagery */
.hero {
  color: #ffffff;
}

.hero .slide-title,
.hero .slide-desc,
.hero .slide-subtitle,
.hero .slide-tag,
.hero .btn-outline {
  color: #ffffff;
}

.hero .slide-desc,
.hero .slide-subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.hero .hero-scroll span {
  color: rgba(255, 255, 255, 0.55);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
}

/* === Utility Classes === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-4xl) 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent-gold);
}

.text-emerald {
  color: var(--accent-emerald);
}

/* === Section Header === */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(244, 42, 65, 0.08);
  border: 1px solid rgba(244, 42, 65, 0.45);
  border-radius: var(--radius-xl);
  color: var(--bnp-red);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-header h2 {
  font-family: var(--font-bengali);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--bnp-red);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-emerald));
  margin: var(--space-lg) auto;
  border-radius: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: 18px 0;
  transition: all var(--transition-med);
  background: var(--royal-blue);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(65, 105, 225, 0.97);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-emerald));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.nav-logo .logo-text {
  font-family: var(--font-bengali);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--text-on-royal);
}

.nav-logo .logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #ff6b6b;
  letter-spacing: 1px;
}

.nav-logo .logo-subtitle {
  font-family: var(--font-bengali);
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #ff6b6b;
  letter-spacing: 0.5px;
  line-height: 1.35;
  max-width: 14rem;
}

.nav-logo .logo-subtitle-secondary {
  display: none;
}

.navbar.scrolled .nav-logo .logo-subtitle-primary {
  display: none;
}

.navbar.scrolled .nav-logo .logo-subtitle-secondary {
  display: block;
}

.nav-logo .logo-img {
  width: auto;
  height: 52px;
  max-width: 320px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo .logo-img-secondary {
  display: none;
}

/* .navbar.scrolled .nav-logo .logo-img-primary {
  display: none;
} */

.navbar.scrolled .nav-logo .logo-img-secondary {
  display: block;
}

.footer-logo-img {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

a.dashboard-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

a.dashboard-link:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.2);
}

a.event-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu .nav-menu-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu .menu-item {
  position: relative;
}

.nav-menu .menu-item-has-children > a {
  padding-right: 30px;
}

.nav-menu .menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.nav-menu .menu-item-has-children:hover > a::before,
.nav-menu .menu-item-has-children:focus-within > a::before,
.nav-menu .menu-item-has-children.submenu-open > a::before {
  transform: translateY(-35%) rotate(-135deg);
  border-color: var(--accent-gold);
}

.nav-menu a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-on-royal-muted);
  position: relative;
  transition: all var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
  color: var(--text-on-royal);
  background: rgba(255, 255, 255, 0.12);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current-menu-ancestor > a::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(20, 38, 78, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 1200;
}

.nav-menu .menu-item:hover > .sub-menu,
.nav-menu .menu-item:focus-within > .sub-menu,
.nav-menu .menu-item.submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 24px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: rgba(20, 38, 78, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu .sub-menu li {
  width: 100%;
}

.nav-menu .sub-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-menu .sub-menu a::after {
  display: none;
}

.nav-menu .sub-menu a:hover,
.nav-menu .sub-menu .current-menu-item > a,
.nav-menu .sub-menu .current-menu-ancestor > a {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.22), rgba(212, 168, 67, 0.08));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(212, 168, 67, 0.28);
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--accent-gold), #c4942e) !important;
  color: var(--primary-dark) !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 168, 67, 0.5) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-on-royal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px) translateX(5px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-slide .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.7) 40%,
    rgba(10, 22, 40, 0.4) 70%,
    rgba(10, 22, 40, 0.6) 100%
  );
}

.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  padding-right: 40%;
  max-width: 1400px;
}

.hero-slide .slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-xl);
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-slide .slide-title {
  font-family: var(--font-bengali);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-slide .slide-title .highlight {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slide .slide-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 550px;
}

.hero-slide .slide-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Hero Navigation Dots */
.hero-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.hero-dots .dot.active {
  background: var(--accent-gold);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.hero-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--glass-bg-medium);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev {
  left: 30px;
}

.hero-arrow.next {
  right: 30px;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 120px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #c4942e);
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--glass-border-light);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--glass-bg-light);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--accent-emerald), #009147);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 179, 89, 0.35);
}

.btn-emerald:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 179, 89, 0.5);
}

.btn-glass {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-glass:hover {
  background: var(--glass-bg-medium);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-card:hover {
  background: var(--glass-bg-light);
  border-color: var(--glass-border-light);
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

/* ============================================
   QUICK INFO CARDS SECTION
   ============================================ */
.info-cards-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.info-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.info-card .card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-gold-dim), rgba(0, 179, 89, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-med);
}

.info-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-emerald));
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--bnp-red);
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   POSITIONS CAROUSEL
   ============================================ */
.positions-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
  position: relative;
  overflow: hidden;
}

.positions-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08), transparent 70%);
  border-radius: var(--radius-full);
}

.positions-track {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  padding: var(--space-lg) var(--space-xl);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.positions-track::-webkit-scrollbar {
  display: none;
}

.position-card {
  min-width: 280px;
  max-width: 300px;
  scroll-snap-align: start;
  flex-shrink: 0;
  padding: var(--space-2xl);
  text-align: center;
  cursor: pointer;
}

.position-card .pos-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.position-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.5;
  color: var(--bnp-red);
}

.position-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   180-DAY PLAN HIGHLIGHT
   ============================================ */
.plan-highlight {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--page-white);
  overflow: hidden;
}

.plan-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 179, 89, 0.06) 0%, transparent 60%);
}

.plan-counter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.plan-day-counter {
  text-align: center;
}

.plan-day-counter .day-number {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: var(--font-body);
}

.plan-day-counter .day-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
}

.plan-progress-bar {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.plan-progress-bar .progress-track {
  height: 10px;
  background: rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.plan-progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-emerald));
  border-radius: 10px;
  transition: width 2s ease-out;
  position: relative;
}

.plan-progress-bar .progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: white;
  border-radius: 50%;
  animation: progressGlow 1.5s ease-in-out infinite;
}

.plan-progress-bar .progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.plan-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.plan-cat-card {
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
}

.plan-cat-card .cat-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.plan-cat-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.plan-cat-card .cat-progress {
  font-size: 0.85rem;
  color: var(--accent-emerald);
  font-weight: 600;
}

/* ============================================
   COMPLAINT INFOGRAPHIC DASHBOARD
   ============================================ */
.complaint-dashboard {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
  position: relative;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.dashboard-stat {
  text-align: center;
  padding: var(--space-2xl);
  position: relative;
}

.dashboard-stat .stat-circle {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.dashboard-stat .stat-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.dashboard-stat .stat-circle .circle-bg {
  fill: none;
  stroke: rgba(15, 23, 42, 0.1);
  stroke-width: 8;
}

.dashboard-stat .stat-circle .circle-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s ease-out;
}

.dashboard-stat .stat-circle .circle-fill.received {
  stroke: var(--accent-gold);
}

.dashboard-stat .stat-circle .circle-fill.progress {
  stroke: var(--accent-orange);
}

.dashboard-stat .stat-circle .circle-fill.done {
  stroke: var(--accent-emerald);
}

.dashboard-stat .stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-body);
}

.dashboard-stat h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.dashboard-stat p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dashboard-stat .stat-emoji {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

/* ============================================
   BIOGRAPHY SECTION
   ============================================ */
.bio-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
  position: relative;
  overflow: hidden;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.bio-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.bio-image .bio-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-gold-dim), transparent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.bio-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.3;
  color: var(--bnp-red);
}

.bio-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.bio-content .bio-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
}

.bio-stat-item {
  text-align: center;
}

.bio-stat-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-body);
}

.bio-stat-item .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.mission-card {
  padding: var(--space-2xl);
  position: relative;
}

.mission-card .mission-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.mission-card:nth-child(1) .mission-icon {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.2), rgba(212, 168, 67, 0.05));
  color: var(--accent-gold);
}

.mission-card:nth-child(2) .mission-icon {
  background: linear-gradient(135deg, rgba(0, 179, 89, 0.2), rgba(0, 179, 89, 0.05));
  color: var(--accent-emerald);
}

.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  color: var(--bnp-red);
}

.mission-card p {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* ============================================
   REFORM POINTS (31/19/10 points)
   ============================================ */
.reform-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.reform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.reform-card {
  padding: var(--space-2xl);
  text-align: center;
  cursor: pointer;
}

.reform-card .reform-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-body);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.reform-card:nth-child(1) .reform-number {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reform-card:nth-child(2) .reform-number {
  background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reform-card:nth-child(3) .reform-number {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reform-card .reform-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.reform-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--bnp-red);
}

.reform-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   EVENTS / HAPPENINGS
   ============================================ */
.events-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.event-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-med);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow);
  border-color: var(--glass-border-light);
}

.event-card .event-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-image img {
  transform: scale(1.08);
}

.event-card .event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bnp-red);
}

.event-card .event-body {
  padding: var(--space-xl);
}

.event-card .event-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.event-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  color: var(--bnp-red);
}

.event-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  grid-auto-rows: 200px;
  gap: var(--space-md);
}

.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.92) 100%);
  opacity: 0;
  transition: opacity var(--transition-med);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   INFORM CTA BANNER
   ============================================ */
.inform-cta {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inform-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 168, 67, 0.05), transparent 60%);
}

.inform-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-3xl);
  position: relative;
}

.inform-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  color: var(--bnp-red);
}

.inform-cta p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--royal-blue);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-on-royal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.footer-about .footer-logo .logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-emerald));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.footer-about .footer-logo span {
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-about p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--accent-gold);
}

.footer-links .footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links .footer-menu-list li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.footer-contact-info p span {
  font-size: 1.1rem;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--accent-gold);
}

/* ============================================
   INNER PAGE HEADERS
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--royal-blue);
  color: var(--text-on-royal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.06), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(0, 179, 89, 0.04), transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: var(--space-md);
  position: relative;
  color: var(--text-on-royal);
}

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text-on-royal-muted);
  position: relative;
}

.page-hero .breadcrumb a {
  color: #ffb4b4;
}

.page-hero .breadcrumb .separator {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   TIMELINE PAGE
   ============================================ */
.timeline-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-emerald), var(--accent-gold));
}

.timeline-item {
  position: relative;
  padding: var(--space-xl) 0;
  display: flex;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 30px);
  text-align: left;
}

.timeline-item .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
  border: 3px solid var(--page-white);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
  z-index: 2;
}

.timeline-item .timeline-content {
  padding: var(--space-xl);
}

.timeline-item .timeline-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--bnp-red);
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   INFORM PAGE (Complaint Form)
   ============================================ */
.inform-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.inform-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.inform-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.category-btn {
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
  background: var(--accent-gold-dim);
  border-color: var(--accent-gold);
}

.category-btn .cat-emoji {
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
  display: block;
}

.category-btn .cat-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.category-btn.active .cat-name,
.category-btn:hover .cat-name {
  color: var(--accent-gold);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-group label .required {
  color: var(--accent-red);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: var(--glass-bg-light);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a843' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--page-white);
  color: var(--text-primary);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* File Upload */
.file-upload-zone {
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--glass-bg);
}

.file-upload-zone:hover,
.file-upload-zone.drag-over {
  border-color: var(--accent-gold);
  background: var(--accent-gold-dim);
}

.file-upload-zone .upload-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.file-upload-zone h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.file-upload-zone p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Voice Recording */
.voice-recorder {
  padding: var(--space-xl);
  text-align: center;
}

.voice-recorder .record-btn {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-red), #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

.voice-recorder .record-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(231, 76, 60, 0.6);
}

.voice-recorder .record-btn.recording {
  animation: recordPulse 1s ease-in-out infinite;
}

.voice-recorder p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Priority Selector */
.priority-selector {
  display: flex;
  gap: var(--space-md);
}

.priority-option {
  flex: 1;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  text-align: center;
  cursor: pointer !important;
  pointer-events: all !important;
  transition: all var(--transition-fast);
  user-select: none;
  -webkit-user-select: none;
  color: var(--text-primary);
  font-family: var(--font-bengali);
}

.priority-option:hover {
  border-color: var(--glass-border-light);
}

.priority-option.active.urgent {
  border-color: #e74c3c !important;
  background: rgba(231, 76, 60, 0.18) !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.25);
  transform: translateY(-2px);
}

.priority-option.active.normal {
  border-color: var(--accent-gold) !important;
  background: rgba(212, 168, 67, 0.18) !important;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.25);
  transform: translateY(-2px);
}

.priority-option.active.suggestion {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.18) !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  transform: translateY(-2px);
}

.priority-option .priority-emoji {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  display: block;
}

.priority-option .priority-label {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Inform Sidebar */
.inform-sidebar {
  position: sticky;
  top: 100px;
}

.inform-sidebar .sidebar-card {
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.inform-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.sidebar-stats .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--glass-border);
}

.sidebar-stats .stat-row:last-child {
  border-bottom: none;
}

.stat-row .stat-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.stat-row .stat-value {
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-body);
}

/* ============================================
   180-DAY PLAN PAGE
   ============================================ */
.plan-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.plan-tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
  justify-content: center;
}

.plan-tab {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.plan-tab:hover {
  background: var(--glass-bg-light);
}

.plan-tab.active {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.plan-items {
  display: grid;
  gap: var(--space-lg);
}

.plan-item {
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}

.plan-item .item-status {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-item .item-status.planned {
  background: rgba(108, 92, 231, 0.2);
}

.plan-item .item-status.ongoing {
  background: rgba(243, 156, 18, 0.2);
  animation: statusPulse 2s ease-in-out infinite;
}

.plan-item .item-status.completed {
  background: rgba(0, 179, 89, 0.2);
}

.plan-item .item-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--bnp-red);
}

.plan-item .item-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.plan-item .item-progress {
  text-align: right;
  min-width: 100px;
}

.plan-item .item-progress .progress-text {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-body);
}

.plan-item .item-progress .progress-text.planned {
  color: #6c5ce7;
}

.plan-item .item-progress .progress-text.ongoing {
  color: var(--accent-orange);
}

.plan-item .item-progress .progress-text.completed {
  color: var(--accent-emerald);
}

.plan-item .item-progress .progress-bar-mini {
  height: 4px;
  background: rgba(15, 23, 42, 0.1);
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}

.plan-item .item-progress .progress-bar-mini .fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s ease-out;
}

.plan-item .item-progress .progress-bar-mini .fill.planned {
  background: #6c5ce7;
}

.plan-item .item-progress .progress-bar-mini .fill.ongoing {
  background: var(--accent-orange);
}

.plan-item .item-progress .progress-bar-mini .fill.completed {
  background: var(--accent-emerald);
}

/* ============================================
   NEWS GRID
   ============================================ */
.news-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.news-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-med);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.news-card .news-image {
  height: 200px;
  overflow: hidden;
}

.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-card .news-body {
  padding: var(--space-xl);
}

.news-card .news-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.news-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  color: var(--bnp-red);
}

.news-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info-cards {
  display: grid;
  gap: var(--space-lg);
}

.contact-info-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
}

.contact-info-card .contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--bnp-red);
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ============================================
   MEDIA / GALLERY PAGE
   ============================================ */
.media-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.media-filter {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.media-masonry {
  columns: 3;
  column-gap: var(--space-md);
}

.media-masonry .masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.media-masonry .masonry-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.media-masonry .masonry-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--accent-gold);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212, 168, 67, 0.6);
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--glass-bg) 25%, var(--glass-bg-light) 50%, var(--glass-bg) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ============================================
   ABOUT PAGE - Education/Career Cards 
   ============================================ */
.about-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.about-detail-card {
  padding: var(--space-2xl);
}

.about-detail-card .detail-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--accent-gold-dim), rgba(0, 179, 89, 0.15));
}

.about-detail-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--bnp-red);
}

.about-detail-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-detail-card ul {
  padding-left: 0;
}

.about-detail-card ul li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-detail-card ul li::before {
  content: 'â–¸';
  color: var(--accent-gold);
  font-weight: 700;
}

/* ========== HERO RIBBON ========== */
.hero-ribbon {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 10;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: #fff;
  padding: 8px 28px 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
  box-shadow: 2px 2px 12px rgba(0,0,0,0.3);
  animation: ribbonSlide 0.6s ease-out;
}
@keyframes ribbonSlide {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ========== VIDEO & QR SECTION ========== */
.video-qr-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
}
.video-qr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-2xl);
}
.video-wrapper iframe {
  border-radius: var(--radius-xl);
}
#qr-code img {
  border-radius: 8px;
}
@media (max-width: 768px) {
  .video-qr-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== NEWS CARD AS LINK ========== */
a.news-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.news-card:hover {
  transform: translateY(-4px);
}

/* ========== NEWS TICKER ========== */
.news-ticker-bar {
  position: absolute;
  top: 90px;
  right: 0;
  width: calc(100% - 220px);
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 3px solid var(--bnp-red);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}
.ticker-badge {
  background: var(--bnp-red);
  color: #fff;
  padding: 8px 16px;
  font-weight: 600;
  white-space: nowrap;
}
.news-ticker-bar marquee {
  padding: 0 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .news-ticker-bar {
    width: 100%;
    top: 70px;
    border-radius: 0;
    border-left: none;
  }
  .hero-ribbon {
    top: 110px;
  }
}

/* Fix hero bg alignment globally */
.slide-bg {
  background-position: center top;
}

/* ========== PREMIUM FOOTER V2 ========== */
.footer {
  background: var(--royal-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0 0;
  color: var(--text-on-royal);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: var(--space-4xl);
  margin-bottom: var(--space-4xl);
}
.footer-logo-img {
  max-width: 220px;
  height: auto;
  max-height: none !important;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.footer-about p {
  color: #a0aec0;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
  max-width: 320px;
}
.footer h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #ff6b6b;
  border-radius: 2px;
}
.footer-links .footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links .footer-menu-list li {
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.footer-links a::before {
  content: 'â†’';
  font-family: monospace;
  margin-right: 8px;
  color: var(--accent-orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #fecaca;
  transform: translateX(5px);
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact-info p {
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-contact-info p span {
  color: #ff8787;
  font-size: 1.2rem;
  margin-top: 2px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--accent-gold);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom Banner Logo */
.bnp-banner-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 380px;
  height: 65px;
  background: linear-gradient(to bottom, #d32f2f 50%, #1b5e20 50%);
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 0 15px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  margin-bottom: var(--space-md);
}
.bnp-banner-logo span {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.bnp-banner-logo i {
  color: #fbbf24;
  font-size: 1.8rem;
}

/* ========== HERO BOTTOM RIBBON ========== */
.hero-bottom-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-xl);
  overflow-x: auto;
  scrollbar-width: thin;
  z-index: 10;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  min-width: 280px;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.ribbon-item:last-child {
  border-right: none;
}

.ribbon-num {
  font-family: var(--font-bengali);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(0, 179, 89, 0.3); /* Dark emerald */
  line-height: 1;
}

.ribbon-text h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.ribbon-text p {
  font-size: 0.8rem;
  color: var(--bnp-red);
  margin: 0;
  font-weight: 500;
}

/* Hide positions-section since we moved it to the ribbon */
.positions-section {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-bottom-ribbon {
    padding: 0 var(--space-md);
  }
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 20, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-modal img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.lightbox-caption {
  color: #ffffff;
  margin-top: var(--space-md);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 20px;
  transition: color 0.2s;
  user-select: none;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 20px; right: 20px; }
}

/* Fix for image distortion in galleries as requested */
.media-masonry .masonry-item img,
.news-card .news-image img,
.event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents distortion */
    object-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.news-image, .event-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.media-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: var(--space-md);
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    display: block;
}

/* Custom ribbon fix */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SITE POLISH: FINAL FIX  (overrides â€” append only)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* --- Hero slide centred content variant (Slide 2, 3, 4, 5) --- */
.hero-slide.slide-centered .slide-content {
  padding-left: 5% !important;
  padding-right: 5% !important;
  align-items: center !important;
  text-align: center !important;
  max-width: 100% !important;
  width: 100% !important;
  justify-content: center !important;
}
.hero-slide.slide-centered .slide-content > * {
  max-width: 860px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero-slide.slide-centered .slide-tag {
  margin-left: auto;
  margin-right: auto;
}
.hero-slide.slide-centered .slide-actions {
  justify-content: center !important;
}

/* --- Ribbon: auto-scrolling marquee so text never truncates --- */
.hero-bottom-ribbon {
  height: 68px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  gap: 0 !important;
}
.ribbon-track {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  animation: ribbonScroll 28s linear infinite !important;
  white-space: nowrap !important;
  will-change: transform;
}
@keyframes ribbonScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ribbon-track:hover { animation-play-state: paused !important; }
.ribbon-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 32px !important;
  border-right: 1px solid rgba(15, 23, 42, 0.08) !important;
  height: 68px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.ribbon-num {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: var(--accent-gold) !important;
  opacity: 0.8 !important;
  flex-shrink: 0 !important;
}
.ribbon-text h4 {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin: 0 0 2px 0 !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}
.ribbon-text p {
  font-size: 0.65rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

/* --- Ken Burns only on active slide bg --- */
@keyframes kenBurnsActive {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.06) translate(-1%,1%); }
}
.hero-slide.active .slide-bg {
  animation: kenBurnsActive 20s ease-out forwards !important;
}
.hero-slide:not(.active) .slide-bg {
  animation: none !important;
}

/* --- Donut cards equal height flex --- */
.donut-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 24px !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  margin-bottom: 28px !important;
}
.donut-card {
  flex: 1 !important;
  max-width: 220px !important;
  text-decoration: none !important;
}
.donut-card-inner {
  padding: 22px 16px !important;
  border-radius: 16px !important;
  text-align: center !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06) !important;
  backdrop-filter: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.donut-card-inner:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4) !important;
}
.donut-svg-wrap {
  position: relative !important;
  width: 110px !important;
  height: 110px !important;
  margin: 0 auto 14px !important;
}
.donut-svg-wrap svg {
  width: 110px !important;
  height: 110px !important;
  transform: rotate(-90deg) !important;
}
.donut-svg-wrap svg circle:first-of-type {
  stroke: rgba(15, 23, 42, 0.1) !important;
}
.donut-num {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%,-50%) !important;
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}
.donut-label {
  color: var(--text-primary) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  margin: 0 0 4px 0 !important;
}
.donut-sublabel {
  color: var(--text-muted) !important;
  font-size: 0.75rem !important;
  margin: 0 !important;
}

/* --- gallery-item has no overflow on hover effect broken --- */
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; }
.gallery-item img { width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease; }
.gallery-item:hover img { transform:scale(1.07); }
.gallery-overlay { position:absolute;inset:0;background:linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.92) 100%);display:flex;align-items:flex-end;padding:16px;opacity:0;transition:opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay span { color: var(--text-primary); }

/* --- Masonry hover --- */
.masonry-item { position:relative;overflow:hidden;cursor:pointer; }
.masonry-item img { width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease; }
.masonry-item:hover img { transform:scale(1.07); }

/* --- Footer QR fix --- */
.footer-avatar { width:50px;height:50px;object-fit:cover;border-radius:50%;border:2px solid var(--accent-gold); }

/* --- news/event card image proper fit --- */
.news-image img, .event-image img {
  width:100%;height:100%;object-fit:cover;object-position:center;
  transition:transform 0.5s ease;
}
.news-card:hover .news-image img,
.event-card:hover .event-image img { transform:scale(1.06); }

/* --- Responsive ribbon (â‰¤768) scrolls less vigorously --- */
@media (max-width: 768px) {
  .ribbon-track { animation-duration: 40s !important; }
  .ribbon-item  { padding: 0 20px !important; }
  .donut-row    { gap: 14px !important; }
  .donut-svg-wrap { width:80px !important; height:80px !important; }
  .donut-svg-wrap svg { width:80px !important; height:80px !important; }
  .donut-num { font-size:1.1rem !important; }
}
@media (max-width: 500px) {
  .donut-row { flex-wrap: wrap !important; gap: 10px !important; }
  .donut-card { max-width: 140px !important; }
}

/* --- Events grid: 9 cards responsive --- */
/* Desktop: 3 columns (default in CSS already) */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .events-grid {
    grid-template-columns: 1fr !important;
  }
  .event-card .event-image {
    height: 220px !important;
  }
}

/* --- News grid: consistent columns --- */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr !important;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FACEBOOK FOLLOW SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fb-follow-section {
  background: var(--page-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.fb-follow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(24,119,242,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.fb-follow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fb-follow-label {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.fb-follow-name {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--bnp-red);
  line-height: 1.1;
  margin-bottom: 12px;
}
.fb-follow-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: var(--space-xl);
}
.fb-social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: var(--space-lg);
}
.fb-icon-btn {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.fb-icon-btn.fb { background: #1877f2; }
.fb-icon-btn.yt { background: #ff0000; }
.fb-icon-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.fb-embed-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
@media (max-width: 900px) {
  .fb-follow-inner { grid-template-columns: 1fr; gap: 40px; }
  .fb-follow-right { display: flex; justify-content: center; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   YOUTUBE SPOTLIGHT (homepage)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.yt-spotlight-section {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.yt-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: start;
}
.yt-featured {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.yt-featured:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.yt-smalls { display: flex; flex-direction: column; gap: 16px; }
.yt-small-card {
  cursor: pointer;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: transform 0.25s, border-color 0.25s;
}
.yt-small-card:hover { transform: translateX(6px); border-color: #ff0000; }
.yt-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.yt-small-card .yt-thumb-wrap { aspect-ratio: unset; height: 100%; min-height: 80px; }
.yt-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.yt-featured:hover .yt-thumb-wrap img,
.yt-small-card:hover .yt-thumb-wrap img { transform: scale(1.06); }
.yt-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff; font-size: 3rem;
  transition: background 0.3s, font-size 0.2s;
}
.yt-play-btn.sm { font-size: 1.8rem; }
.yt-play-btn i { color: #ff0000; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
.yt-featured:hover .yt-play-btn,
.yt-small-card:hover .yt-play-btn { background: rgba(0,0,0,0.15); }
.yt-info { padding: 16px 20px; }
.yt-small-card .yt-info { padding: 14px 14px 14px 0; display: flex; flex-direction: column; justify-content: center; }
.yt-cat-tag {
  display: inline-block;
  background: rgba(255,0,0,0.12);
  color: #ff4444;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.yt-info h3 { font-size: 1.1rem; color: var(--bnp-red); line-height: 1.4; margin-bottom: 8px; }
.yt-info h4 { font-size: 0.88rem; color: var(--text-primary); line-height: 1.4; }
.yt-info p { font-size: 0.85rem; color: var(--text-secondary); }
@media (max-width: 900px) {
  .yt-grid { grid-template-columns: 1fr; }
  .yt-smalls { flex-direction: row; flex-wrap: wrap; }
  .yt-small-card { flex: 1; min-width: 280px; grid-template-columns: 110px 1fr; }
}
@media (max-width: 560px) {
  .yt-small-card { grid-template-columns: 1fr; }
  .yt-small-card .yt-thumb-wrap { height: 160px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   YOUTUBE MODAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.yt-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.yt-modal-box {
  position: relative;
  width: min(860px, 96vw);
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.yt-modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 10;
  background: rgba(0,0,0,0.7); border: none; color: #fff;
  font-size: 1.3rem; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}
.yt-modal-iframe-wrap {
  aspect-ratio: 16/9;
  width: 100%;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VIDEO THUMB GRID (media.html)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.video-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-thumb-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-thumb-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.video-thumb-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-thumb-card:hover .video-thumb-img-wrap img { transform: scale(1.07); }
.video-thumb-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
  font-size: 2rem; color: #ff0000;
  transition: background 0.3s;
}
.video-thumb-card:hover .video-thumb-play { background: rgba(0,0,0,0.15); }
.video-thumb-cat {
  position: absolute; bottom: 8px; left: 8px;
  background: #ff0000; color: #fff;
  font-size: 0.65rem; font-weight: 700;
  padding: 2px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.video-thumb-body { padding: 12px 14px; }
.video-thumb-body h4 { font-size: 0.85rem; color: var(--text-primary); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 1024px) { .video-thumb-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .video-thumb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px)  { .video-thumb-grid { grid-template-columns: 1fr; } }

/* â”€â”€ Facebook Section Alignment Fix â”€â”€ */
.fb-follow-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-xl);
  max-width: 380px;
}
.fb-follow-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-xl);
}
.fb-stats-row {
  display: flex;
  gap: 32px;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
  margin-top: var(--space-md);
}
.fb-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fb-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1877f2;
}
.fb-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
/* Remove the old misaligned QR block from fb section if still rendered */
.fb-follow-left > div[style*="qr"],
.fb-follow-left > p[style*="QR"] {
  display: none !important;
}
/* Tighter inner padding on mobile */
@media (max-width: 640px) {
  .fb-follow-section { padding: 50px 0; }
  .fb-follow-name { font-size: 1.9rem; }
  .fb-stats-row { gap: 20px; }
  .fb-stat-num { font-size: 1.1rem; }
  .fb-embed-wrap iframe { width: 100% !important; height: 420px !important; }
}

/* â”€â”€ FB Section: Desktop 2-col + mobile stack fix â”€â”€ */
.fb-follow-section { overflow: visible; }
.fb-follow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: start;
}
.fb-follow-right {
  display: flex;
  justify-content: flex-end;
}
.fb-embed-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
}
.fb-embed-wrap iframe {
  display: block;
  border-radius: 10px;
}
@media (max-width: 960px) {
  .fb-follow-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fb-follow-right {
    justify-content: center;
  }
  .fb-embed-wrap {
    max-width: 100%;
  }
  .fb-embed-wrap iframe {
    width: 100% !important;
    min-height: 480px;
  }
}

/* ============================================
   DO LETTER THEME PAGES
   ============================================ */
.do-theme-hero p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.do-theme-section {
  padding: var(--space-4xl) 0;
  background: var(--page-white);
}

.do-theme-header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.do-theme-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--bnp-red);
  margin-top: 10px;
}

.do-filter-bar {
  padding: 16px;
  margin-bottom: var(--space-2xl);
  display: grid;
  grid-template-columns: 2fr 1.3fr 1fr auto;
  gap: 12px;
  align-items: end;
  position: relative;
  overflow: visible;
  z-index: 30;
}

.do-filter-group {
  margin: 0;
}

.do-filter-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.do-filter-group .form-input,
.do-filter-group .form-select {
  height: 46px;
  padding: 10px 14px;
}

.do-search-wrap {
  position: relative;
  z-index: 40;
}

.do-search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
  z-index: 1200;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
}

.do-suggestion-item {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 600;
}

.do-suggestion-item:hover {
  background: rgba(65, 105, 225, 0.1);
}

.do-filter-actions {
  display: flex;
  gap: 8px;
}

.do-filter-actions .btn {
  height: 46px;
  padding: 0 18px;
}

.do-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}

.do-theme-card {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.do-theme-card.glass-card:hover,
.do-filter-bar.glass-card:hover,
.do-single-card.glass-card:hover,
.do-theme-empty.glass-card:hover {
  transform: none;
}

.do-theme-card-link {
  display: block;
  height: 100%;
}

.do-theme-media {
  height: 200px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.18), rgba(65, 105, 225, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.do-theme-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.do-theme-pdf-badge {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.34);
}

.do-theme-content {
  padding: var(--space-xl);
}

.do-theme-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.do-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(0, 179, 89, 0.18);
  color: #0f8a4d;
}

.do-theme-content h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--bnp-red);
}

.do-ministry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.do-ministry-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f3f8b;
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.16), rgba(212, 168, 67, 0.2));
  border: 1px solid rgba(65, 105, 225, 0.26);
}

.do-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.do-theme-readmore {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(65, 105, 225, 0.12);
  color: var(--royal-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.do-theme-pagination {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.do-page-link {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.do-page-link.active,
.do-page-link:hover {
  background: var(--royal-blue);
  color: #fff;
  border-color: var(--royal-blue);
}

.do-single-section {
  padding-top: var(--space-3xl);
}

.do-back-link {
  display: inline-flex;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--royal-blue);
}

.do-single-card {
  padding: var(--space-2xl);
}

.do-single-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.do-single-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.do-single-top h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--bnp-red);
}

.do-single-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
}

.do-ministry-list-single {
  margin-top: 8px;
  margin-bottom: 0;
}

.do-single-file {
  margin-bottom: var(--space-xl);
}

.do-single-file img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: #fff;
}

.do-single-body h3 {
  margin-bottom: 12px;
  color: var(--bnp-red);
}

.do-single-text {
  line-height: 1.9;
  color: var(--text-secondary);
}

.do-theme-empty {
  padding: var(--space-2xl);
  text-align: center;
}

/* ============================================
   GENERIC WP CONTENT PAGES
   ============================================ */
.content-hero {
  padding: 150px 0 70px;
}

.content-section {
  padding: var(--space-3xl) 0;
  background: var(--page-white);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--space-2xl);
  align-items: start;
}

.content-card {
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.content-card .entry-title {
  color: var(--bnp-red);
  line-height: 1.35;
  margin-bottom: 10px;
}

.content-card .entry-meta {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.content-card .entry-content,
.content-card .entry-summary {
  color: var(--text-secondary);
  line-height: 1.85;
}

.content-card .entry-content a,
.content-card .entry-summary a {
  color: var(--royal-blue);
}

.content-card .entry-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
}

.content-card .post-thumbnail {
  margin-bottom: 16px;
}

.content-card .post-thumbnail img {
  width: 100%;
  border-radius: 12px;
  max-height: 500px;
  object-fit: cover;
}

.content-sidebar .widget {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.content-sidebar .widget-title {
  color: var(--bnp-red);
  font-size: 1rem;
  margin-bottom: 10px;
}

.content-sidebar .widget ul li {
  margin-bottom: 8px;
}

.content-sidebar .widget a {
  color: var(--text-secondary);
}

.content-sidebar .widget a:hover {
  color: var(--royal-blue);
}

.post-navigation {
  margin: 20px 0;
  padding: 14px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: var(--glass-bg);
}

.post-navigation .nav-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.post-navigation .nav-title {
  color: var(--bnp-red);
  font-weight: 700;
}

.posts-navigation {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.posts-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
}

.comments-area .comments-title {
  color: var(--bnp-red);
  margin-bottom: 14px;
}

.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comments-area .comment-body {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
}

.comments-area .comment-form textarea,
.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"] {
  width: 100%;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}

.comments-area .form-submit .submit {
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent-gold), #c4942e);
  color: var(--primary-dark);
  font-weight: 700;
}

.error-widget-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================
   ROAD PLAN 180 TEMPLATE
   ============================================ */
.impact-stats-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.impact-stat-card {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  border-left: 4px solid transparent;
}

.impact-stat-card i {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.impact-stat-card h2 {
  font-size: 2rem;
  margin: 0;
  color: var(--text-primary);
}

.impact-stat-card p {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.impact-stat-card.impact-road { border-left-color: #3498db; }
.impact-stat-card.impact-road i { color: #3498db; }
.impact-stat-card.impact-health { border-left-color: var(--accent-gold); }
.impact-stat-card.impact-health i { color: var(--accent-gold); }
.impact-stat-card.impact-edu { border-left-color: var(--accent-emerald); }
.impact-stat-card.impact-edu i { color: var(--accent-emerald); }