/*
Theme Name: Politician BD Pro
Theme URI: https://example.com/politician-bd-pro
Author: Your Developer
Author URI: https://example.com
Description: একজন রাজনীতিবিদ/সংসদ সদস্যের জন্য পেশাদার বাংলা ওয়েবসাইট থিম। Hero, পরিচিতি, ভিশন, ভিডিও গ্যালারি, সংবাদ, জনসংযোগ ও পোল সেকশন সহ।
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: politician-bd
Tags: bengali, politics, one-page, custom-colors, custom-logo, responsive-layout, blog, news, portfolio
*/

/* ===================================================
   CSS VARIABLES
=================================================== */
:root {
  --green:       #1a6b3a;
  --green-dark:  #145230;
  --green-light: #22854a;
  --red:         #dc2626;
  --red-dark:    #b91c1c;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --light-bg:    #f8f9fa;
  --dark:        #111827;
  --dark-card:   #1a2332;
  --text:        #1f2937;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;
  --border:      #e5e7eb;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.16);
  --radius:      12px;
  --radius-sm:   8px;
  --font-bn:     'Hind Siliguri', sans-serif;
  --font-serif:  'Noto Serif Bengali', serif;
  --max-w:       1200px;
}

/* ===================================================
   RESET & BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-bn);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.2s; }
ul { list-style: none; }
button { font-family: var(--font-bn); cursor: pointer; }
h1,h2,h3,h4,h5,h6 { line-height: 1.3; }

/* ===================================================
   LAYOUT
=================================================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* ===================================================
   NAVBAR
=================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
  height: 70px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  text-decoration: none;
}
.logo-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
  overflow: hidden; border: 2px solid var(--green); flex-shrink: 0;
}
.logo-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo-name {
  font-size: 1.05rem; font-weight: 700; color: var(--dark);
  line-height: 1.2; white-space: nowrap;
}
.main-navigation { margin-left: auto; }
.nav-menu {
  display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.nav-menu li a {
  display: block; padding: 8px 14px; border-radius: 6px;
  font-size: 0.95rem; font-weight: 500; color: var(--text);
  transition: all 0.2s;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
  color: var(--green); background: rgba(26,107,58,0.06);
}
.nav-menu li.current-menu-item > a {
  border-bottom: 2px solid var(--green); border-radius: 0;
}
/* Dropdown */
.nav-menu li { position: relative; }
.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: white; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); border-top: 3px solid var(--green);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s; z-index: 100; list-style: none; padding: 6px 0;
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a {
  padding: 9px 16px; border-radius: 0; font-size: 0.9rem;
  border-bottom: 1px solid var(--border); display: block;
}
.sub-menu li:last-child a { border-bottom: none; }
.nav-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.nav-social { display: flex; gap: 8px; align-items: center; }
.nav-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-muted);
  transition: all 0.2s; background: var(--light-bg);
}
.nav-social a:hover { background: var(--green); color: white; }
.nav-lang {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 6px;
  border: 1px solid var(--border); font-size: 0.85rem;
  background: white; color: var(--text); white-space: nowrap;
}
.nav-lang:hover { border-color: var(--green); color: var(--green); }
.btn-complaint {
  padding: 9px 20px; border-radius: 24px;
  background: var(--green); color: white;
  font-size: 0.88rem; font-weight: 600;
  border: none; white-space: nowrap;
  transition: all 0.2s;
}
.btn-complaint:hover {
  background: var(--green-dark); transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,107,58,0.35);
}
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all 0.3s;
}
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: white; padding: 20px 24px; flex-direction: column;
  overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.mobile-nav-close {
  background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark);
}
.mobile-nav-overlay a {
  display: block; padding: 14px 0;
  font-size: 1.1rem; font-weight: 600; color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-overlay a:hover { color: var(--green); }

/* ===================================================
   HERO SECTION
=================================================== */
.hero-section {
  background-color: var(--green);
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 80px);
  min-height: calc(100vh - 70px);
  display: flex; align-items: center; padding: 60px 0;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(139,0,0,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-text { color: white; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9); padding: 6px 16px; border-radius: 20px;
  font-size: 0.85rem; margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.7); }
.hero-heading {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: white;
}
.hero-heading-red {
  display: inline-block; background: var(--red); color: white;
  padding: 4px 18px; border-radius: 6px;
  font-family: var(--font-serif); font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800; margin-top: 4px;
}
.hero-desc {
  color: rgba(255,255,255,0.85); font-size: 1.05rem;
  line-height: 1.8; margin: 20px 0 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-white {
  padding: 12px 24px; border: 2px solid white;
  background: white; color: var(--dark);
  border-radius: 8px; font-size: 0.95rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-hero-white:hover { background: transparent; color: white; }
.btn-hero-red {
  padding: 12px 24px; background: var(--red); color: white;
  border: 2px solid var(--red); border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; transition: all 0.2s;
}
.btn-hero-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.hero-image-area {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-circle-bg {
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, #8b0000 0%, #6b0000 60%, transparent 75%);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-photo-frame {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-42%, -52%) rotate(-3deg);
  background: white; padding: 10px; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4); width: 220px;
  transition: transform 0.3s;
}
.hero-photo-frame:hover { transform: translate(-42%, -52%) rotate(0deg); }
.hero-photo-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2d7a4a, #1a5c35);
  border-radius: 6px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 3rem;
}
.hero-photo-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-hashtag {
  position: absolute; bottom: -10px; right: -20px;
  background: white; color: var(--dark);
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); white-space: nowrap;
}

/* ===================================================
   SECTION HEADINGS
=================================================== */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--dark); margin-bottom: 10px;
}
.section-heading .s-underline {
  width: 60px; height: 4px; background: var(--red);
  border-radius: 2px; margin: 0 auto 14px;
}
.section-heading p { color: var(--text-muted); font-size: 0.95rem; max-width: 550px; margin: 0 auto; }

/* ===================================================
   INTRO / BIOGRAPHY SECTION
=================================================== */
.intro-section { padding: 80px 0; background: white; }
.intro-grid {
  display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: center;
}
.intro-photo-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.intro-photo-main {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: linear-gradient(145deg, #1a4a2a, #0d2a18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 4rem;
}
.intro-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.photo-overlay-tags {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between;
}
.photo-tag-chip {
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  color: white; padding: 5px 10px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600; line-height: 1.4;
}
.photo-tag-chip.green-chip { background: var(--green); }
.photo-bottom-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 30px 20px 20px; color: white;
}
.photo-badge {
  display: inline-flex; gap: 6px; align-items: center;
  background: var(--red); color: white;
  padding: 4px 12px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 8px;
}
.photo-bottom-overlay h3 { font-size: 1.05rem; font-weight: 700; }
.intro-label {
  font-size: 0.82rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.intro-label::before { content: ''; width: 24px; height: 2px; background: var(--green); border-radius: 1px; }
.intro-content h2 {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 8px;
}
.intro-content h2 .green-name { color: var(--green); display: block; }
.intro-content p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.85; margin: 16px 0 28px; }
.btn-bio-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--dark); color: white;
  border-radius: 8px; font-size: 0.95rem; font-weight: 600;
  border: none; transition: all 0.2s;
}
.btn-bio-dark:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,107,58,0.3); }

/* ===================================================
   VISION SECTION
=================================================== */
.vision-section { background: var(--light-bg); padding: 80px 0; }
.vision-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.vision-card {
  background: white; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.25s;
}
.vision-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green); }
.vision-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--off-white); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; margin-bottom: 18px;
}
.vision-card h3 {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: var(--dark); margin-bottom: 10px;
}
.vision-card > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.vision-points { margin-bottom: 20px; }
.vision-point {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.5;
}
.vision-point i { color: var(--green); margin-top: 2px; flex-shrink: 0; font-size: 0.75rem; }
.vision-link {
  color: #2563eb; font-size: 0.85rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.vision-link:hover { gap: 10px; }
.vision-cta { text-align: center; }
.btn-vision-full {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 32px; border: 2px solid var(--dark); background: white; color: var(--dark);
  border-radius: 8px; font-size: 0.95rem; font-weight: 600; transition: all 0.2s;
}
.btn-vision-full:hover { background: var(--dark); color: white; }

/* ===================================================
   VIDEO SECTION
=================================================== */
.video-section { background: white; padding: 80px 0; }
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 36px; }
.video-card { cursor: pointer; }
.video-thumb {
  position: relative; border-radius: var(--radius); overflow: hidden;
  margin-bottom: 14px; aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a4a2a, #0d2a18);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 2.5rem;
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(220,38,38,0.5); transition: all 0.25s;
}
.video-card:hover .video-play-btn { transform: translate(-50%,-50%) scale(1.1); }
.video-label-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.7); color: white;
  padding: 3px 10px; border-radius: 4px;
  font-size: 0.72rem; font-weight: 600; backdrop-filter: blur(4px);
}
.video-see-more-badge {
  position: absolute; bottom: 10px; right: 12px;
  color: white; font-size: 0.72rem;
  background: rgba(220,38,38,0.8); padding: 3px 8px;
  border-radius: 4px; backdrop-filter: blur(4px);
}
.video-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--dark); line-height: 1.5; }
.video-cta { text-align: center; }
.btn-yt {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 32px; background: var(--red); color: white;
  border-radius: 8px; font-size: 0.95rem; font-weight: 600;
  border: none; transition: all 0.2s;
}
.btn-yt:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,38,38,0.35); }

/* ===================================================
   NEWS SECTION
=================================================== */
.news-section { background: var(--light-bg); padding: 80px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: all 0.25s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(135deg, #1a3a2a, #0d2018);
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); font-size: 2.5rem;
}
.news-cat-label {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; color: white;
  background: var(--green);
}
.news-cat-label.blue { background: #2563eb; }
.news-body { padding: 20px; }
.news-date-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px;
}
.news-date-row i { color: var(--green); font-size: 0.75rem; }
.news-body h3 {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  line-height: 1.55; margin-bottom: 10px;
}
.news-body p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-size: 0.85rem; font-weight: 600; transition: gap 0.2s;
}
.news-read-more:hover { gap: 10px; }

/* ===================================================
   CTA BANNER
=================================================== */
.cta-banner { background: var(--red); padding: 64px 0; text-align: center; }
.cta-banner h2 {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; color: white; margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-w {
  padding: 13px 28px; background: white; color: var(--red);
  border: 2px solid white; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; transition: all 0.2s;
}
.btn-cta-w:hover { background: transparent; color: white; }
.btn-cta-o {
  padding: 13px 28px; background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.7); border-radius: 8px;
  font-size: 0.95rem; font-weight: 700; transition: all 0.2s;
}
.btn-cta-o:hover { background: white; color: var(--red); }

/* ===================================================
   ENGAGEMENT SECTION
=================================================== */
.engagement-section { background: white; padding: 80px 0; }
.engagement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.invite-card { background: var(--off-white); border-radius: var(--radius); padding: 40px 36px; }
.invite-tag {
  display: inline-block; background: #fef3c7; color: #92400e;
  padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; margin-bottom: 20px;
}
.invite-card h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--dark); line-height: 1.35; margin-bottom: 16px;
}
.invite-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; margin-bottom: 28px; }
.btn-invite-orange {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; background: #d97706; color: white;
  border-radius: 8px; font-size: 0.93rem; font-weight: 700;
  border: none; transition: all 0.2s;
}
.btn-invite-orange:hover { background: #b45309; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217,119,6,0.35); }
.poll-card { background: var(--dark-card); border-radius: var(--radius); padding: 32px 28px; }
.poll-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.15); color: #4ade80;
  padding: 5px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; margin-bottom: 16px;
}
.poll-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}
.poll-card h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 20px;
}
.poll-options { display: flex; flex-direction: column; gap: 10px; }
.poll-option {
  background: rgba(255,255,255,0.07); border-radius: 8px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: all 0.2s; border: 1px solid transparent;
}
.poll-option:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.poll-option.voted { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.08); }
.poll-opt-label { color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 500; flex: 1; }
.poll-bar-wrap { flex: 1.5; background: rgba(255,255,255,0.08); border-radius: 3px; height: 6px; overflow: hidden; }
.poll-bar { height: 100%; border-radius: 3px; transition: width 0.6s ease; }
.c1 { background: var(--green); }
.c2 { background: #2563eb; }
.c3 { background: #f59e0b; }
.c4 { background: #8b5cf6; }
.poll-pct { color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 600; width: 36px; text-align: right; }
.poll-meta { margin-top: 16px; display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.poll-meta .highlight { color: var(--green); }

/* ===================================================
   FOOTER
=================================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 40px 0 20px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 32px; flex-wrap: wrap; margin-bottom: 20px;
}
.footer-brand .f-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 4px; }
.footer-brand .f-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-menu { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-menu a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-menu a:hover { color: var(--green); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--green); }

/* ===================================================
   BACK TO TOP
=================================================== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(26,107,58,0.45);
  opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 500;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ===================================================
   SCROLL REVEAL
=================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.22s; }
.fade-in.d3 { animation-delay: 0.34s; }
.fade-in.d4 { animation-delay: 0.46s; }
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .intro-grid { grid-template-columns: 340px 1fr; gap: 40px; }
  .vision-grid { grid-template-columns: repeat(2,1fr); }
  .video-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .main-navigation, .nav-divider, .nav-social, .nav-lang { display: none; }
  .menu-toggle { display: flex; }
  .btn-complaint { font-size: 0.78rem; padding: 7px 14px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-area { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 480px) {
  .vision-grid { grid-template-columns: 1fr; }
  .cta-btns, .hero-btns { flex-direction: column; align-items: center; }
  .hero-heading { font-size: 2.2rem; }
}

/* ===================================================
   WORDPRESS DEFAULTS
=================================================== */
.wp-block-image { margin: 20px 0; }
.alignleft { float: left; margin-right: 20px; margin-bottom: 10px; }
.alignright { float: right; margin-left: 20px; margin-bottom: 10px; }
.aligncenter { display: block; margin: 0 auto 20px; }
.wp-caption { max-width: 100%; background: var(--off-white); padding: 6px; border-radius: 6px; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-muted); text-align: center; padding: 6px 0 0; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
