/*
Theme Name: Omar Marcos - Alcalde de Ventanilla 2026
Theme URI: http://omarmarcos2026.pe/
Author: Antigravity AI
Author URI: https://google.com/
Description: Tema premium interactivo para la campaña municipal de Omar Marcos Arteaga en Ventanilla (Callao, Perú). Totalmente responsivo, con mapa SVG interactivo, buzón de propuestas integrado en LocalStorage y voluntariado.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: omar-marcos-2026
Tags: accessibility-ready, custom-menu, featured-images, one-column, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool!
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-primary: #0b132b;
  --bg-secondary: #1c2541;
  --bg-card: rgba(28, 37, 65, 0.6);
  --primary: #3a86c8;
  --primary-hover: #2a6fa8;
  --accent: #ffb703;
  --accent-hover: #fb8500;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --success: #2ec4b6;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: rgba(58, 134, 200, 0.15);

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent-gradient {
  background: linear-gradient(135deg, var(--accent) 30%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  color: var(--accent);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(58, 134, 200, 0.3);
  box-shadow: 0 12px 40px 0 rgba(58, 134, 200, 0.1);
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--glass-border);
  height: 70px;
}

header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-star {
  color: var(--accent);
  font-size: 1.8rem;
  animation: pulse-glow 2s infinite alternate;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-header {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--bg-primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(58, 134, 200, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(27, 38, 59, 0.6) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-tagline {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(58, 134, 200, 0.3);
  transition: var(--transition-normal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(58, 134, 200, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.metric-card {
  padding: 1rem;
  text-align: center;
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.metric-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  width: 100%;
  max-width: 450px;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 5;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-image-card:hover img {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.4) 70%, transparent 100%);
  z-index: 6;
}

.hero-img-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-img-subtitle {
  font-size: 0.9rem;
  color: var(--accent);
}

.hero-glow-back {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glass-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* Biography / Leader Section */
.biography {
  background: rgba(11, 19, 43, 0.5);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.bio-image-wrapper {
  position: relative;
}

.bio-stats-panel {
  padding: 2.5rem;
}

.bio-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.bio-quote {
  font-size: 1.2rem;
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.bio-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.bio-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.bio-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bio-feat-icon {
  color: var(--success);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.bio-feat-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.bio-feat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Timeline (Achievements) */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--bg-secondary) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-node {
  position: absolute;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 4px solid var(--accent);
  z-index: 10;
  box-shadow: 0 0 10px var(--accent);
  transition: var(--transition-fast);
}

.timeline-item:nth-child(even) .timeline-node {
  left: -10px;
}

.timeline-item:nth-child(odd) .timeline-node {
  right: -10px;
}

.timeline-item:hover .timeline-node {
  background: var(--accent);
  transform: scale(1.2);
}

.timeline-card {
  padding: 2rem;
}

.timeline-year {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Proposals Section */
.proposals-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.prop-tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.prop-tab-btn i {
  font-size: 1.1rem;
}

.prop-tab-btn:hover,
.prop-tab-btn.active {
  background: var(--primary);
  color: var(--text-primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(58, 134, 200, 0.3);
}

.prop-tab-btn.active i {
  color: var(--accent);
}

.proposals-content {
  position: relative;
  min-height: 400px;
}

.prop-tab-pane {
  display: none;
  animation: fade-in 0.5s ease forwards;
}

.prop-tab-pane.active {
  display: block;
}

.prop-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.prop-info-col h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.prop-info-col h3 i {
  color: var(--accent);
}

.prop-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.prop-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.prop-item {
  display: flex;
  gap: 1rem;
}

.prop-item-bullet {
  color: var(--success);
  margin-top: 0.3rem;
  font-size: 1.1rem;
}

.prop-item-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.prop-item-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.prop-visual-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 100% 0%, rgba(58, 134, 200, 0.1) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prop-vis-metric {
  margin-bottom: 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 2rem;
}

.prop-vis-val {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.prop-vis-lbl {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.prop-quote-box {
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
}

.prop-quote-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.prop-quote-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Sectors Map (Interactive Map) */
.sectors-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.map-card {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.map-svg-container {
  width: 100%;
  max-width: 400px;
}

/* Style SVG regions */
.map-region {
  fill: var(--bg-secondary);
  stroke: var(--bg-primary);
  stroke-width: 3px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.map-region:hover,
.map-region.active {
  fill: var(--primary);
  stroke: var(--accent);
  filter: drop-shadow(0 0 8px rgba(58, 134, 200, 0.5));
}

.map-region.active {
  fill: var(--primary-hover);
}

.sector-details-wrapper {
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.sector-details-placeholder {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-md);
  padding: 3rem;
}

.sector-details-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.sector-details-content {
  display: none;
  animation: slide-up 0.4s ease forwards;
}

.sector-details-content.active {
  display: block;
}

.sector-header {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.sector-title {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.sector-desc {
  color: var(--text-secondary);
}

.sector-proposals-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sector-prop-item {
  display: flex;
  gap: 1rem;
}

.sector-prop-num {
  width: 32px;
  height: 32px;
  background: rgba(58, 134, 200, 0.2);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.sector-prop-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.sector-prop-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Citizen Proposals Inbox */
.inbox {
  background: rgba(11, 19, 43, 0.3);
}

.inbox-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.inbox-form-card {
  padding: 2.5rem;
  align-self: start;
}

.inbox-form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(58, 134, 200, 0.25);
  background: rgba(11, 19, 43, 0.9);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--bg-primary);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.2);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

.inbox-feed-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.proposal-post-card {
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}

.proposal-post-card.success-card {
  border-left-color: var(--success);
}

.proposal-post-card.accent-card {
  border-left-color: var(--accent);
}

.proposal-post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.proposal-post-author {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proposal-post-author i {
  color: var(--primary);
}

.proposal-post-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: var(--accent);
}

.proposal-post-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.proposal-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.proposal-post-date {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.proposal-post-likes {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.proposal-post-likes:hover {
  color: var(--accent);
}

/* Volunteer & Contact Section */
.volunteer {
  background: radial-gradient(circle at 10% 20%, rgba(58, 134, 200, 0.1) 0%, transparent 60%);
}

.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.vol-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.vol-info p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.vol-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vol-step-item {
  display: flex;
  gap: 1.5rem;
}

.vol-step-num {
  width: 48px;
  height: 48px;
  background: rgba(58, 134, 200, 0.1);
  border: 1px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-title);
  flex-shrink: 0;
}

.vol-step-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.vol-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.vol-form-card {
  padding: 3rem;
}

.vol-form-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

/* Footer Section */
footer {
  background: #060b19;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem 0;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 350px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--text-primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-law-text {
  font-size: 0.75rem;
  max-width: 400px;
  line-height: 1.4;
}

/* Animations */
@keyframes pulse-glow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px var(--accent));
  }
  100% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent));
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Toast Notification Styles */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: #1c2541;
  color: var(--text-primary);
  border-left: 4px solid var(--success);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  animation: slide-up 0.3s ease forwards;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid,
  .bio-grid,
  .prop-grid,
  .sectors-grid,
  .inbox-grid,
  .volunteer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-image-wrapper {
    order: -1;
  }
  
  .hero-image-card {
    height: 400px;
  }
  
  .hero {
    text-align: center;
    padding-top: 120px;
  }
  
  .hero-description {
    margin: 0 auto 2.5rem auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-metrics {
    max-width: 600px;
    margin: 0 auto;
  }

  .timeline-line {
    left: 2rem;
  }
  
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 4rem;
  }
  
  .timeline-node {
    left: 10px !important;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  }

  .nav-menu.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

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

/* Carousel & Social Media Section styling */
.carousel-outer-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 10px 0 45px 0; /* Add bottom padding for indicator spacing */
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  position: relative;
  flex: 0 0 calc(33.333% - 13.333px);
  height: 250px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(58, 134, 200, 0.3);
  border-color: var(--primary);
}

@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 43, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 5;
}

.carousel-slide:hover .carousel-slide-overlay {
  opacity: 1;
  background: rgba(11, 19, 43, 0.7);
}

.fb-slide-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.carousel-slide:hover .fb-slide-icon {
  transform: translateY(0);
}

.carousel-slide-overlay span {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(11, 19, 43, 0.7);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  z-index: 10;
  backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(58, 134, 200, 0.5);
}

.carousel-arrow.prev {
  left: 20px;
}

.carousel-arrow.next {
  right: 20px;
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-normal);
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

/* Social Follow CTA Buttons below */
.social-cta-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-cta-btn:hover {
  transform: translateY(-5px);
}

.social-cta-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.6);
}

.social-cta-btn.tt:hover {
  background: #010101;
  border-color: #00f2fe;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5), 0 0 20px rgba(254, 44, 85, 0.5);
  color: #fff;
}

.social-cta-btn.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  box-shadow: 0 0 20px rgba(220, 39, 67, 0.6);
}
