/* ==========================================================================
   HUMBERTO SOTO USA • CONSERVATIVE & PROFAMILY POLITICAL LEADER • NEW YORK
   Modern One-Page Campaign Website Design System & Styles
   ========================================================================== */

/* --- 1. Design System Tokens --- */
:root {
  /* Conservative Core Color Palette - Carmine Red, Traditional Navy Blue, and Charcoal Neutrals */
  --gop-red: #bf131a;
  --navy-gop: #002868;
  
  --bg-pure: #ffffff;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.90);
  --bg-glass-dark: rgba(0, 40, 104, 0.94);
  
  --navy-dark: #001f52;
  --navy-primary: #002868;
  --navy-mid: #003380;
  
  --sky-blue: #bf131a;
  --sky-light: #f3f4f6;
  --sky-glow: rgba(191, 19, 26, 0.20);
  
  --red-primary: #bf131a;
  --red-light: #fee2e2;
  --red-glow: rgba(191, 19, 26, 0.25);
  
  --text-main: #333333;
  --text-muted: #4a4a4a;
  --text-light: #666666;
  --border-color: #e2e8f0;
  --border-focus: #bf131a;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Spacing */
  --container-width: 1402px;
  --banner-max-width: 1402px;
  --header-height-initial: 90px;
  --header-height-final: 70px;

  /* Shadows & Glass */
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 24px -6px rgba(15, 23, 42, 0.12), 0 4px 10px -4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.18), 0 10px 20px -8px rgba(15, 23, 42, 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(30, 58, 138, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- 2. Base Reset & Typography --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-pure);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height-initial);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

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

img, iframe {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --- 3. Scroll Progress Indicator (Modern Web Guidance) --- */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 10000;
  pointer-events: none;
}

#scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sky-blue), var(--navy-primary), var(--red-primary));
  box-shadow: 0 0 12px var(--sky-blue);
  transform-origin: left center;
}

/* Native CSS Scroll-Driven Animation for Scroll Progress */
@supports (animation-timeline: scroll(root)) {
  @keyframes grow-progress {
    from { width: 0%; }
    to { width: 100%; }
  }
  #scroll-progress-bar {
    animation: grow-progress auto linear both;
    animation-timeline: scroll(root);
  }
}

/* --- 4. Header & Navigation (Modern Web Guidance Shrinking Header) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-initial);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: height var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
}

/* Native CSS Shrinking Header on Scroll */
@keyframes shrink-header {
  to {
    height: var(--header-height-final);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
  }
}

@supports ((animation-timeline: scroll()) and (animation-range: 0px 150px)) {
  .header {
    animation: shrink-header auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 150px;
  }
}

/* Fallback class added via JS for shrinking header */
.header.header-shrunk {
  height: var(--header-height-final);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.header-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gop-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-item {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 2px;
  transition: color var(--transition-fast);
}

.nav-item:hover, .nav-item.active {
  color: var(--gop-red);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gop-red);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Top Header Social Group */
.header-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--navy-gop);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.header-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.header-social-btn.fb-header-btn:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.header-social-btn.ig-header-btn:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.header-social-btn.mail-header-btn:hover { background: var(--gop-red); color: #fff; border-color: var(--gop-red); }

/* Language Switcher Button Group */
.lang-switcher {
  display: flex;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--gop-red);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(191, 19, 26, 0.35);
}

/* Header Call to Action Button - Solid GOP Red */
.header-cta {
  background: var(--gop-red) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(191, 19, 26, 0.35);
}

.header-cta:hover {
  background: #9a0f15 !important;
  box-shadow: 0 6px 18px rgba(191, 19, 26, 0.45);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* --- 5. Clean Hero Section (Hero Image directly under menu + ordered text below) --- */
.hero-section-clean {
  position: relative;
  background: linear-gradient(180deg, var(--bg-pure) 0%, var(--bg-light) 100%);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg-subtle {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-gradient-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(circle, rgba(191, 19, 26, 0.08) 0%, rgba(0, 40, 104, 0.06) 40%, rgba(255, 255, 255, 0) 70%);
}

/* Hero Banner Wrapper - exactly 1402px max width aligned with header right beneath menu */
.hero-banner-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--banner-max-width);
  margin: 20px auto 40px;
  padding: 0 20px;
}

.hero-banner-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--navy-gop);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 406;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Ordered, clean text area below hero banner */
.hero-text-wrapper {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.center-badges {
  justify-content: center;
  margin-bottom: 28px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.primary-pill {
  background: var(--gop-red);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(191, 19, 26, 0.35);
}

.secondary-pill {
  background: #ffffff;
  color: var(--navy-gop);
  font-weight: 700;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  to {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 6px;
}

.hero-name {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--navy-gop);
  letter-spacing: -0.03em;
  line-height: 1.05;
  background: none;
  -webkit-text-fill-color: var(--navy-gop);
}

.hero-slogan {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--gop-red);
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin: 0 auto 36px;
  max-width: 760px;
  line-height: 1.8;
}

.center-strip {
  justify-content: center;
  max-width: 760px;
  margin: 0 auto 40px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.hero-values-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 24px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-icon {
  font-size: 1.2rem;
}

.value-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.value-divider {
  width: 1px;
  height: 18px;
  background: var(--border-color);
}

.center-actions {
  justify-content: center;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Button Component System with Micro-Animations */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.08rem;
}

.btn-full {
  width: 100%;
  padding: 16px 24px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 58, 138, 0.4);
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-primary) 100%);
}

.btn-secondary {
  background: var(--bg-pure);
  color: var(--navy-primary);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--gop-red);
  color: var(--gop-red);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: linear-gradient(135deg, var(--red-primary) 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(220, 38, 38, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy-primary);
  border: 1.5px solid var(--navy-primary);
}

.btn-outline:hover {
  background: var(--navy-primary);
  color: #fff;
}

/* Micro-animation: Ripple & Glow Hover Effect */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.btn:active::after {
  animation: ripple 600ms ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0) translate(-50%, -50%);
    opacity: 0.5;
  }
  100% {
    transform: scale(40, 40) translate(-50%, -50%);
    opacity: 0;
  }
}

.center-social {
  justify-content: center;
}

.hero-social-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all var(--transition-spring);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.social-icon-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.fb-icon:hover { background: #1877f2; border-color: #1877f2; color: #fff; box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45); }
.ig-icon:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; color: #fff; box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45); }
.mail-icon:hover { background: var(--gop-red); border-color: var(--gop-red); color: #fff; box-shadow: 0 6px 18px rgba(191, 19, 26, 0.45); }

/* --- 6. Social Ticker / Highlights Bar --- */
.social-ticker-section {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-dark) 100%);
  color: #ffffff;
  padding: 16px 0;
  border-top: 2px solid var(--red-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.ticker-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--sky-light);
}

.ticker-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.ticker-item:hover {
  color: var(--sky-blue);
}

.ticker-icon {
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
}

.ticker-icon.fb { background: #1877f2; color: #fff; }
.ticker-icon.ig { background: #e1306c; color: #fff; }
.ticker-icon.em { background: var(--red-primary); color: #fff; }

.arrow-icon {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.ticker-item:hover .arrow-icon {
  transform: translateX(4px);
}

/* --- 7. Sections & Shared Component Layouts --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--red-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gop-red);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--red-primary));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Glass Panel Utilities */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* --- 8. About Us Section & Bilingual Statement Tabs --- */
.about-section {
  background: linear-gradient(180deg, var(--bg-pure) 0%, var(--bg-light) 100%);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-main-card {
  padding: 40px;
}

.bilingual-toggle-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 32px;
}

.lang-view-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.statement-tabs {
  display: flex;
  background: var(--bg-subtle);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active {
  background: #ffffff;
  color: var(--navy-primary);
  box-shadow: var(--shadow-sm);
}

.statement-pane {
  display: none;
  animation: fadeIn 300ms ease-out;
}

.statement-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--sky-blue);
  line-height: 0.8;
}

.quote-headline {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gop-red);
}

.statement-body p {
  font-size: 1.12rem;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.8;
}

.statement-body .lead-text {
  font-size: 1.25rem;
  color: var(--gop-red);
}

.highlight-callout {
  padding: 18px 24px;
  background: var(--sky-light);
  border-left: 4px solid var(--navy-primary);
  border-radius: 0 12px 12px 0;
  color: var(--navy-dark);
  font-size: 1.2rem !important;
}

/* Side by Side Pane */
.side-by-side-pane {
  display: none;
  grid-template-columns: 1fr 1px 1fr;
  gap: 32px;
}

.side-by-side-pane.active {
  display: grid;
}

.stmt-divider {
  background: var(--border-color);
}

.col-lang-heading {
  font-size: 1.2rem;
  color: var(--gop-red);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sky-blue);
}

.stmt-col-text {
  font-size: 1.02rem;
  margin-bottom: 14px;
  color: var(--text-main);
}

.stmt-col-highlight {
  padding: 12px 16px;
  background: var(--bg-subtle);
  border-radius: 8px;
  font-weight: 700;
  color: var(--navy-dark);
}

.statement-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.candidate-signature {
  display: flex;
  flex-direction: column;
}

.sig-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.sig-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red-primary);
}

.heritage-badge {
  background: var(--navy-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Key Pillars Grid with Hover Micro-Animations */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--navy-primary));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-blue);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform var(--transition-spring);
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.15) rotate(6deg);
}

.pillar-title {
  font-size: 1.25rem;
  color: var(--gop-red);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- 9. Media & Social Feed Section --- */
.media-section {
  background: var(--bg-pure);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.media-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.media-card-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

.yt-badge { color: #dc2626; }
.dot-red {
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
}

.ig-badge { color: #e1306c; }
.ig-gradient-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 50%;
}

.media-title-text {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy-dark);
}

.video-wrapper {
  padding: 24px;
  background: var(--bg-subtle);
}

.video-embed-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.media-card-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-caption {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Instagram Feed Mock / Grid */
.instagram-feed-mock {
  padding: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ig-profile-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.ig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e1306c;
  flex-shrink: 0;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ig-handle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy-dark);
}

.ig-bio {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.ig-btn {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ig-grid-item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal);
  background: var(--bg-subtle);
}

.ig-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.ig-img-placeholder {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-img-1 { background: linear-gradient(135deg, #1e3a8a, #0ea5e9); }
.bg-img-2 { background: linear-gradient(135deg, #dc2626, #f59e0b); }
.bg-img-3 { background-image: url('./assets/hero-image1.png'); background-size: cover; }
.bg-img-4 { background: linear-gradient(135deg, #0f172a, #334155); }

.ig-hover-info {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.ig-grid-item:hover .ig-hover-info {
  opacity: 1;
}

.ig-caption-snippet {
  padding: 10px 12px;
  font-size: 0.76rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #ffffff;
}

/* --- 10. Contact Us Section --- */
.contact-section {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition-normal);
}

.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 4px 0;
}

.link-highlight:hover {
  color: var(--sky-blue);
  text-decoration: underline;
}

.contact-note {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.contact-form-wrapper {
  padding: 40px;
  background: #ffffff;
}

.contact-form-title {
  font-size: 1.6rem;
  color: var(--gop-red);
  margin-bottom: 8px;
}

.contact-form-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.98rem;
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sky-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #065f46;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #991b1b;
}

.hidden { display: none !important; }

/* --- 11. Footer Section & Position Aware Back-to-Top --- */
.main-footer {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  border-top: 4px solid var(--red-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gop-red);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(191, 19, 26, 0.35);
}

.footer-title {
  color: #ffffff;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.38;
  margin-bottom: 12px;
}

.footer-slogan {
  color: var(--sky-light);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 24px;
  opacity: 0.9;
}

.footer-social-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gop-red);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--sky-light);
  font-size: 0.96rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.footer-contact-list.modern-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list.modern-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.footer-contact-list.modern-contact-list li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gop-red);
  transform: translateX(4px);
}

.contact-icon-mini {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
}

.contact-sublabel {
  font-size: 0.73rem;
  color: var(--sky-light);
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-link-val {
  font-size: 0.94rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link-val:hover {
  color: var(--sky-blue);
}

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.disclaimer-box {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--gop-red);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.03em;
}

.footer-copyright {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating Back-to-Top Button (Modern Web Guidance Position-Aware) */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--navy-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top:hover {
  background: var(--red-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.45);
}

.back-to-top.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.8);
}

/* --- 12. Scroll Reveal Micro-Animations (Modern Web Guidance) --- */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-up {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .scroll-reveal {
      animation: reveal-up auto linear both;
      animation-timeline: view(block);
      animation-range: entry 10% contain 35%;
    }
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- 13. Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .hero-banner-wrapper {
    padding: 0 12px;
    margin-bottom: 36px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .media-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .side-by-side-pane.active {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stmt-divider {
    width: 100%;
    height: 1px;
  }
}

/* --- Facebook News & Updates Banner Component --- */
.fb-banner-container {
  max-width: 1402px;
}

.fb-news-banner-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(0, 40, 104, 0.95) 0%, rgba(133, 4, 13, 0.92) 100%);
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  padding: 32px 42px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.fb-banner-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.fb-news-banner-card:hover .fb-banner-visual {
  transform: scale(1.05);
}

.fb-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 40, 104, 0.95) 10%, rgba(133, 4, 13, 0.85) 60%, rgba(0, 40, 104, 0.75) 100%);
}

.fb-banner-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 780px;
}

.fb-banner-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  margin-bottom: 14px;
}

.fb-banner-icon-badge {
  display: flex;
  align-items: center;
  color: #4da2ff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.fb-banner-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
}

.fb-banner-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.fb-banner-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.5;
  margin: 0;
}

.fb-banner-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.fb-banner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1877f2;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.fb-banner-cta-btn:hover {
  background: #0d65d9;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.65), 0 6px 16px rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border-color: #ffffff;
}

.fb-arrow {
  transition: transform var(--transition-spring);
}

.fb-banner-cta-btn:hover .fb-arrow {
  transform: translateX(4px);
}

/* --- Instagram News Section Header --- */
.instagram-section-header {
  margin-bottom: 30px;
}
.instagram-badge-pill {
  display: inline-block;
  background: rgba(191, 19, 26, 0.12);
  color: var(--gop-red);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.instagram-news-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--navy-gop);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.center-line {
  margin-left: auto;
  margin-right: auto;
}

/* --- Instagram Section CTA Button --- */
.instagram-cta-wrapper {
  margin-top: 36px;
  margin-bottom: 20px;
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
  transition: all var(--transition-spring);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-instagram:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 35px rgba(220, 39, 67, 0.65);
  background: linear-gradient(135deg, #f09433 0%, #dc2743 45%, #bc1888 100%);
}
.insta-arrow {
  transition: transform var(--transition-spring);
  font-size: 1.25rem;
}
.btn-instagram:hover .insta-arrow {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .instagram-news-title {
    font-size: 1.85rem;
  }
  .fb-news-banner-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
    gap: 22px;
  }
  .fb-banner-title {
    font-size: 1.55rem;
  }
  .fb-banner-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.02rem;
  }
  
  .nav-links, .header-cta, .header-social-icons {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .brand-name {
    font-size: 1.25rem;
  }
  
  .brand-sub {
    font-size: 0.68rem;
  }
  
  /* Mobile Nav Drawer state */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height-initial);
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--sky-blue);
    gap: 20px;
    z-index: 1001;
  }
  
  .header.header-shrunk .nav-links.mobile-open {
    top: var(--header-height-final);
  }
  
  .hero-banner-wrapper {
    margin-bottom: 28px;
  }
  
  .hero-values-strip {
    gap: 12px;
    padding: 14px;
  }
  
  .value-divider {
    display: none;
  }

  .contact-form-wrapper {
    padding: 24px 18px;
  }
  
  /* Enable Mobile Bottom Tab Bar and prevent content overlap */
  body {
    padding-bottom: 74px;
  }
  .mobile-tab-bar {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: space-around;
  }
  .back-to-top {
    bottom: 84px !important;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .brand-sub {
    font-size: 0.62rem;
  }
  .header-actions {
    gap: 10px;
  }
  .lang-switcher {
    padding: 2px;
  }
  .lang-btn {
    padding: 3px 8px;
    font-size: 0.72rem;
  }
}

/* --- 14. Mobile Fixed Bottom Tab Bar (Only visible on mobile <= 900px) --- */
.mobile-tab-bar {
  display: none; /* Hidden on desktop/laptop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgb(133, 4, 13); /* Exact rgb(133 4 13) requested by user */
  background: rgba(133, 4, 13, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -4px 24px rgba(133, 4, 13, 0.45);
  z-index: 1000;
  padding: 6px 16px env(safe-area-inset-bottom, 8px);
}

.tab-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  padding: 4px 0;
}

.tab-bar-item svg {
  width: 22px;
  height: 22px;
  transition: transform var(--transition-spring);
}

.tab-bar-item:hover, .tab-bar-item:active, .tab-bar-item.active {
  color: #ffffff;
}

.tab-bar-item:hover svg, .tab-bar-item:active svg {
  transform: translateY(-2px) scale(1.15);
}

.tab-bar-item.fb-tab:hover, .tab-bar-item.fb-tab:active {
  color: #4da2ff;
}

.tab-bar-item.ig-tab:hover, .tab-bar-item.ig-tab:active {
  color: #ff758c;
}

/* --- Candidates Modal System --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 49, 97, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  color: var(--gop-red);
  transform: scale(1.1);
}
