/* ============================================================
   MANJUNATH S. VANDAL - POLITICAL WEBSITE
   Main Stylesheet
   ============================================================ */

/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --saffron:       #FF6B00;
  --saffron-light: #FF8C35;
  --saffron-dark:  #D45500;
  --white:         #FFFFFF;
  --off-white:     #FFF8F0;
  --green:         #138808;
  --green-light:   #1BAA0A;
  --navy:          #0A2342;
  --navy-light:    #163A6B;
  --gold:          #D4AF37;
  --gold-light:    #F0CE60;
  --gray-light:    #F5F5F5;
  --gray:          #888888;
  --text-dark:     #1A1A1A;
  --text-mid:      #444444;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 30px rgba(0,0,0,0.13);
  --shadow-lg:     0 12px 50px rgba(0,0,0,0.18);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   LOADER
   ============================================================ */
#page-loader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-lotus {
  font-size: 3.5rem;
  animation: spinPulse 1.4s ease-in-out infinite;
}
.loader-text {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@keyframes spinPulse {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.15) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--green));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#main-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#main-header.scrolled {
  background: rgba(10,35,66,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
#main-header.transparent { background: transparent; }

.header-top-bar {
  background: var(--saffron);
  padding: 5px 0;
  font-size: 0.75rem;
  color: var(--white);
}
.header-top-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.header-top-inner a { color: var(--white); margin-left: 16px; }
.header-top-inner a:hover { color: var(--gold-light); }
.scrolled .header-top-bar { display: none; }

nav.navbar {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-brand .brand-lotus { font-size: 2rem; }
.nav-brand .brand-text .name {
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.nav-brand .brand-text .title {
  font-size: 0.65rem; font-weight: 500;
  color: var(--gold-light); letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  color: var(--white); font-size: 0.85rem; font-weight: 500;
  padding: 8px 16px; border-radius: 50px;
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--saffron); border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 16px; right: 16px; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white) !important; padding: 9px 22px !important;
  border-radius: 50px !important; font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
  transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.5); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--navy);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--white); font-size: 1.4rem; font-weight: 600;
  padding: 10px 30px; border-radius: 50px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--saffron); background: rgba(255,255,255,0.05); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  color: var(--white); font-size: 1.8rem; cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0D3167 50%, #1a4a8a 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 90px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.10) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(19,136,8,0.08) 0%, transparent 40%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-flag-stripe {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--saffron) 33.3%, var(--white) 33.3% 66.6%, var(--green) 66.6%);
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}
.hero-content { z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.4);
  padding: 6px 16px; border-radius: 50px;
  color: var(--saffron-light); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--saffron); border-radius: 50%; animation: pulse 1.5s ease infinite; }
@keyframes pulse { 0%,100%{transform:scale(1); opacity:1;} 50%{transform:scale(1.4); opacity:0.6;} }

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
  animation: fadeInLeft 0.9s ease 0.2s both;
}
.hero-name span { color: var(--saffron); display: block; }
.hero-title {
  font-size: clamp(0.85rem, 2vw, 1.1rem); font-weight: 500;
  color: var(--gold-light); letter-spacing: 2px;
  text-transform: uppercase; margin: 14px 0 24px;
  animation: fadeInLeft 0.9s ease 0.35s both;
}
.hero-description {
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  max-width: 480px; margin-bottom: 36px;
  animation: fadeInLeft 0.9s ease 0.5s both;
}
.hero-stats {
  display: flex; gap: 32px; margin-bottom: 40px;
  animation: fadeInLeft 0.9s ease 0.65s both;
}
.hero-stat .number { font-size: 1.8rem; font-weight: 800; color: var(--saffron); line-height: 1; }
.hero-stat .label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInLeft 0.9s ease 0.8s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white); padding: 14px 32px;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(255,107,0,0.4);
  transition: var(--transition); display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(255,107,0,0.55); }

.btn-secondary {
  background: transparent; color: var(--white);
  padding: 13px 32px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition); display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }

/* Hero Image */
.hero-visual { display: flex; justify-content: center; align-items: center; z-index: 2; animation: fadeInRight 1s ease 0.4s both; }
.hero-image-wrap {
  position: relative; width: 360px; height: 460px;
}
.hero-image-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 50%, var(--green) 100%);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  opacity: 0.25;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%; }
  33% { border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%; }
  66% { border-radius: 60% 40% 40% 60% / 60% 30% 70% 40%; }
}
.hero-img-placeholder {
  position: absolute; inset: 20px;
  background: linear-gradient(160deg, rgba(255,107,0,0.15) 0%, rgba(10,35,66,0.8) 100%);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  border: 3px solid rgba(255,107,0,0.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img-placeholder .avatar-icon { font-size: 7rem; opacity: 0.6; }
.hero-img-placeholder .avatar-name {
  color: var(--white); font-size: 1rem; font-weight: 700;
  text-align: center; margin-top: 8px; opacity: 0.8;
}
.hero-floating-badge {
  position: absolute; padding: 10px 18px;
  background: rgba(10,35,66,0.92); backdrop-filter: blur(12px);
  border-radius: var(--radius); border: 1px solid rgba(255,107,0,0.3);
  color: var(--white); font-size: 0.75rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  animation: float 3s ease-in-out infinite;
}
.hero-floating-badge:nth-child(3) { bottom: 60px; left: -30px; animation-delay: 0s; }
.hero-floating-badge:nth-child(4) { top: 60px; right: -20px; animation-delay: 1.5s; }
.hero-floating-badge .badge-icon { font-size: 1.2rem; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* Scroll Indicator */
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; animation: fadeIn 2s ease 1.5s both;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.35); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-mouse::before {
  content: ''; width: 4px; height: 8px;
  background: rgba(255,255,255,0.5); border-radius: 2px;
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{opacity:1;transform:translateY(0);} 100%{opacity:0;transform:translateY(10px);} }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 90px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(255,107,0,0.1);
  color: var(--saffron); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px;
  border: 1px solid rgba(255,107,0,0.25); margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--navy); line-height: 1.25;
}
.section-title span { color: var(--saffron); }
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 16px auto 0;
}
.section-divider .line { height: 2px; width: 50px; background: var(--saffron); border-radius: 2px; }
.section-divider .lotus { font-size: 1.2rem; color: var(--saffron); }
.section-subtitle { font-size: 0.95rem; color: var(--gray); max-width: 560px; margin: 16px auto 0; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--navy); color: var(--white);
  padding: 12px 0; overflow: hidden;
}
.ticker-label {
  background: var(--saffron); color: var(--white);
  padding: 4px 16px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span { padding: 0 32px; font-size: 0.82rem; opacity: 0.85; }
.ticker-track span::before { content: '⚡ '; }
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ============================================================
   QUICK HIGHLIGHTS CARDS
   ============================================================ */
#highlights { background: var(--off-white); padding: 70px 0; }
.highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.highlight-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 22px; text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition); position: relative; overflow: hidden;
}
.highlight-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.highlight-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.highlight-card .card-icon { font-size: 2.4rem; margin-bottom: 14px; }
.highlight-card .card-number { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.highlight-card .card-plus { font-size: 1.4rem; color: var(--saffron); font-weight: 800; }
.highlight-card .card-label { font-size: 0.8rem; color: var(--gray); margin-top: 6px; font-weight: 500; }

/* ============================================================
   ABOUT PREVIEW (INDEX PAGE)
   ============================================================ */
#about-preview { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px;
  align-items: center;
}
.about-image-col { position: relative; }
.about-img-frame {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--off-white) 0%, #e8e8e8 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 50% 50% / var(--radius-lg) var(--radius-lg) 40% 40%;
  border: 4px solid rgba(255,107,0,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-frame .person-icon { font-size: 8rem; opacity: 0.35; }
.about-img-frame .person-name { font-size: 1rem; font-weight: 700; color: var(--navy); opacity: 0.5; }
.about-img-frame::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 40%;
  background: linear-gradient(0deg, rgba(255,107,0,0.12), transparent);
}
.about-badge-float {
  position: absolute; bottom: 30px; right: -20px;
  background: var(--navy); color: var(--white);
  padding: 14px 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-float .num { font-size: 1.6rem; font-weight: 800; color: var(--saffron); }
.about-badge-float .txt { font-size: 0.72rem; letter-spacing: 0.5px; opacity: 0.8; }

.about-content .section-header { text-align: left; }
.about-content .section-header .section-divider { justify-content: flex-start; }
.about-content .section-header .section-subtitle { margin-left: 0; }

.about-intro { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 28px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.info-item {
  background: var(--off-white); padding: 12px 16px;
  border-radius: var(--radius); border-left: 3px solid var(--saffron);
}
.info-item .info-label { font-size: 0.7rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.info-item .info-value { font-size: 0.88rem; color: var(--navy); font-weight: 600; margin-top: 3px; }

/* ============================================================
   POLITICAL JOURNEY TIMELINE (INDEX PAGE)
   ============================================================ */
#journey { background: var(--navy); }
#journey .section-title { color: var(--white); }
#journey .section-tag { background: rgba(255,255,255,0.08); color: var(--gold-light); border-color: rgba(255,255,255,0.15); }

.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--saffron), var(--gold), var(--green));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 40px; margin-bottom: 48px;
  align-items: flex-start;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-side { flex: 1; }
.timeline-item:nth-child(even) .timeline-card { text-align: right; }
.timeline-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 20px 22px;
  transition: var(--transition);
}
.timeline-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.timeline-card .t-icon { font-size: 1.6rem; margin-bottom: 8px; }
.timeline-card .t-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.timeline-card .t-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.timeline-dot {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(255,107,0,0.2), 0 0 0 8px rgba(255,107,0,0.08);
  align-self: center;
}

/* ============================================================
   CAUSES / VALUES SECTION
   ============================================================ */
#causes { background: var(--off-white); }
.causes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cause-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 26px; transition: var(--transition);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
  position: relative; overflow: hidden; group: true;
}
.cause-card .card-ribbon {
  position: absolute; top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(255,107,0,0.08) 50%);
}
.cause-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.cause-card:hover .cause-icon { transform: scale(1.1) rotate(5deg); }
.cause-icon { font-size: 2.8rem; margin-bottom: 18px; transition: var(--transition); display: inline-block; }
.cause-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.cause-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   PHOTO GALLERY PREVIEW
   ============================================================ */
#gallery-preview { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 16px; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/1; position: relative;
  background: var(--off-white); cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-placeholder {
  width: 100%; height: 100%; min-height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a8a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.8rem; gap: 8px;
  transition: var(--transition);
}
.gallery-placeholder .g-icon { font-size: 2rem; }
.gallery-item:hover .gallery-placeholder { background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 100%); }

/* ============================================================
   SOCIAL MEDIA SECTION
   ============================================================ */
#social-section { background: var(--off-white); padding: 70px 0; }
.social-bar {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  transition: var(--transition); border: 2px solid transparent;
}
.social-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.social-btn.twitter { background: #000; color: #fff; }
.social-btn.twitter:hover { background: #1a1a1a; }
.social-btn.email  { background: var(--saffron); color: var(--white); }
.social-btn.email:hover { background: var(--saffron-dark); }
.social-btn.phone  { background: var(--green); color: var(--white); }
.social-btn.phone:hover { background: var(--green-light); }
.social-btn .s-icon { font-size: 1.2rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: linear-gradient(135deg, var(--navy), #0D3167);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(212,175,55,0.10) 0%, transparent 40%);
}
#cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white); margin-bottom: 16px; position: relative;
}
#cta-banner p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; font-size: 0.95rem; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060F1E; color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 50px;
}
.footer-brand .brand-name { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand .brand-tag { font-size: 0.75rem; color: var(--saffron); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.8; max-width: 280px; }
.footer-links h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.83rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--saffron); padding-left: 6px; }
.footer-contact h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.83rem; }
.footer-contact-item .f-icon { font-size: 1rem; color: var(--saffron); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem;
}
.footer-flag {
  display: flex; gap: 6px; align-items: center;
}
.flag-stripe { width: 20px; height: 8px; border-radius: 2px; }
.flag-stripe.s { background: var(--saffron); }
.flag-stripe.w { background: var(--white); }
.flag-stripe.g { background: var(--green); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #163A6B);
  padding: 150px 0 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); font-weight: 700;
}
.page-hero h1 span { color: var(--saffron); }
.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 14px; color: rgba(255,255,255,0.6); font-size: 0.82rem;
}
.page-hero .breadcrumb a { color: var(--saffron-light); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* Biodata Table */
.biodata-section { background: var(--off-white); }
.biodata-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start;
}
.biodata-portrait {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); text-align: center;
}
.portrait-circle {
  width: 200px; height: 200px; border-radius: 50%;
  background: linear-gradient(135deg, var(--off-white), #e0e0e0);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--saffron);
  font-size: 5rem;
}
.portrait-name { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.portrait-role { font-size: 0.78rem; color: var(--saffron); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.portrait-party {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--off-white); padding: 8px 18px; border-radius: 50px;
  margin-top: 16px; font-size: 0.8rem; font-weight: 600; color: var(--navy);
}
.portrait-langs {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.06);
}
.portrait-langs .lang-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.lang-badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.lang-badge {
  background: var(--navy); color: var(--white);
  padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}

.biodata-table { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.biodata-table table { width: 100%; border-collapse: collapse; }
.biodata-table table thead tr { background: var(--navy); }
.biodata-table table thead th { color: var(--white); padding: 16px 20px; font-size: 0.85rem; font-weight: 600; text-align: left; }
.biodata-table table tbody tr { border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
.biodata-table table tbody tr:hover { background: var(--off-white); }
.biodata-table table tbody td { padding: 14px 20px; font-size: 0.87rem; }
.biodata-table table tbody td:first-child { color: var(--gray); font-weight: 600; width: 40%; }
.biodata-table table tbody td:last-child { color: var(--navy); font-weight: 500; }

/* Education & Skills */
.skills-section { background: var(--white); }
.education-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 50px; }
.edu-card {
  background: var(--off-white); padding: 28px;
  border-radius: var(--radius); border-left: 4px solid var(--saffron);
}
.edu-card .edu-icon { font-size: 1.8rem; margin-bottom: 12px; }
.edu-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.edu-card p { font-size: 0.84rem; color: var(--gray); }

/* ============================================================
   ACTIVITIES PAGE
   ============================================================ */
.activities-section { background: var(--white); }
.activities-filter {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 50px; border: 2px solid rgba(0,0,0,0.1);
  background: var(--white); color: var(--gray); font-size: 0.83rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--saffron); color: var(--white); border-color: var(--saffron); }

.activity-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.activity-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); transition: var(--transition);
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.activity-card-header {
  padding: 24px; background: linear-gradient(135deg, var(--navy), #163A6B);
  display: flex; align-items: center; gap: 14px;
}
.activity-card-header .a-icon { font-size: 2rem; }
.activity-card-header .a-cat {
  font-size: 0.7rem; color: var(--gold-light); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}
.activity-card-header .a-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-top: 3px; }
.activity-card-body { padding: 20px 24px; }
.activity-card-body p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }
.activity-card-body .a-tag {
  display: inline-block; margin-top: 14px; padding: 4px 12px;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  background: rgba(255,107,0,0.1); color: var(--saffron);
}

/* Org affiliations */
.orgs-section { background: var(--off-white); }
.org-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.org-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  text-align: center; box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--saffron); transition: var(--transition);
}
.org-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.org-card .org-icon { font-size: 2.5rem; margin-bottom: 14px; }
.org-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.org-card p { font-size: 0.82rem; color: var(--gray); }
.org-card .org-role { font-size: 0.75rem; color: var(--saffron); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.contact-item {
  display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start;
}
.contact-item-icon {
  width: 46px; height: 46px; background: rgba(255,107,0,0.1);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-text .c-label { font-size: 0.72rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text .c-value { font-size: 0.9rem; color: var(--navy); font-weight: 600; margin-top: 3px; }
.contact-item-text a { color: var(--saffron); }
.contact-item-text a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap p { font-size: 0.85rem; color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.08); border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; color: var(--text-dark);
  background: var(--off-white); outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--saffron); background: var(--white); box-shadow: 0 0 0 4px rgba(255,107,0,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: var(--white); border: none; border-radius: var(--radius); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.4); }
.form-success { display: none; background: rgba(19,136,8,0.08); border: 1px solid rgba(19,136,8,0.3); border-radius: var(--radius); padding: 16px; color: var(--green); font-size: 0.88rem; font-weight: 600; text-align: center; margin-top: 16px; }

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(135deg, var(--navy), #1a4a8a);
  border-radius: var(--radius-lg); height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-top: 28px; color: rgba(255,255,255,0.7);
}
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-placeholder p { font-size: 0.88rem; }
.map-placeholder .map-addr { font-size: 0.8rem; color: var(--saffron-light); margin-top: 6px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px; background: var(--saffron);
  color: var(--white); border-radius: 50%; border: none;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); z-index: 500;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--saffron-dark); transform: translateY(-4px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn       { from{opacity:0;} to{opacity:1;} }
@keyframes fadeInDown   { from{opacity:0; transform:translateY(-20px);} to{opacity:1; transform:translateY(0);} }
@keyframes fadeInLeft   { from{opacity:0; transform:translateX(-30px);} to{opacity:1; transform:translateX(0);} }
@keyframes fadeInRight  { from{opacity:0; transform:translateX(30px);} to{opacity:1; transform:translateX(0);} }
@keyframes fadeInUp     { from{opacity:0; transform:translateY(30px);} to{opacity:1; transform:translateY(0);} }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .causes-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .org-cards        { grid-template-columns: 1fr 1fr; }
  .activity-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner       { grid-template-columns: 1fr; text-align: center; }
  .hero-visual      { display: none; }
  .hero-stats       { justify-content: center; }
  .hero-buttons     { justify-content: center; }
  .hero-description { margin: 0 auto 28px; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-image-col  { display: none; }
  .about-content .section-header { text-align: center; }
  .about-content .section-header .section-divider { justify-content: center; }
  .about-content .section-header .section-subtitle { margin: 16px auto 0; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; }
  .timeline-item:nth-child(even) .timeline-card { text-align: left; }
  .timeline-dot { width: 36px; height: 36px; flex-shrink: 0; }
  .causes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .biodata-wrap { grid-template-columns: 1fr; }
  .education-grid { grid-template-columns: 1fr; }
  .org-cards { grid-template-columns: 1fr; }
  .activity-cards-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .hero-stat-divider { display: none; }
}
