/* ========================================
   VOCEA SECTORULUI 1 — Public CSS
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #0a2f6e;
  --primary-light: #1a4a9e;
  --accent: #e8372a;
  --accent2: #f5a623;
  --green: #27ae60;
  --yellow: #f39c12;
  --red: #e74c3c;
  --blue-light: #ebf2ff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.25s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--gray-100); color: var(--gray-800); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 1.75rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.section-subtitle { color: var(--gray-600); font-size: 1rem; margin-bottom: 36px; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-green  { background: #d4edda; color: #155724; }
.badge-yellow { background: #fff3cd; color: #856404; }
.badge-blue   { background: #d0e8ff; color: #0a2f6e; }
.badge-red    { background: #f8d7da; color: #721c24; }
.badge-gray   { background: var(--gray-200); color: var(--gray-600); }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .9rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.section { padding: 64px 0; }
.section-alt { background: white; }
.empty-state { text-align: center; padding: 48px; color: var(--gray-600); font-size: 1rem; }

/* TOPBAR */
.topbar { background: var(--primary); color: rgba(255,255,255,0.8); font-size: .8rem; padding: 6px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-right { display: flex; gap: 16px; }
.topbar a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.topbar a:hover { color: white; }

/* NAVBAR */
.navbar { background: white; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--accent); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-icon svg { width: 24px; height: 24px; fill: white; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.brand-tagline { font-size: .7rem; color: var(--gray-600); }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a { padding: 8px 12px; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 500; color: var(--gray-800); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { background: var(--blue-light); color: var(--primary); }
.nav-links .nav-cta a { background: var(--accent); color: white; font-weight: 600; }
.nav-links .nav-cta a:hover { background: #c0291e; color: white; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #2261c4 100%); color: white; padding: 80px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.hero-label { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px; }
.hero-label span { width: 6px; height: 6px; background: var(--accent2); border-radius: 50%; display: block; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { color: var(--accent2); font-style: normal; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 520px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: .95rem; cursor: pointer; transition: var(--transition); border: none; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #c0291e; }
.hero-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); color: var(--gray-800); }
.hero-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.quick-links { display: flex; flex-direction: column; gap: 10px; }
.quick-link-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--gray-200); transition: var(--transition); cursor: pointer; }
.quick-link-item:hover { border-color: var(--primary); background: var(--blue-light); }
.quick-link-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.quick-link-text { font-size: .88rem; font-weight: 600; }
.quick-link-sub { font-size: .75rem; color: var(--gray-600); }

/* STATS BAR */
.stats-bar { background: white; box-shadow: var(--shadow-sm); padding: 24px 0; border-bottom: 1px solid var(--gray-200); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 8px 20px; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .8rem; color: var(--gray-600); font-weight: 500; }

/* NEWS */
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
.news-featured { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer; }
.news-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-featured-image { height: 260px; background: linear-gradient(135deg, #1a4a9e, #0a2f6e); position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.news-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%); }
.news-img-placeholder { font-size: 5rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%); opacity: .2; }
.news-featured-content { padding: 24px; }
.news-featured-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin: 10px 0; line-height: 1.4; }
.news-featured-content p { color: var(--gray-600); font-size: .92rem; line-height: 1.6; }
.news-meta { display: flex; gap: 12px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.news-meta-date { font-size: .8rem; color: var(--gray-600); }
.news-meta-cat { font-size: .75rem; font-weight: 600; color: var(--primary); background: var(--blue-light); padding: 3px 10px; border-radius: 20px; }
.news-sidebar { display: flex; flex-direction: column; gap: 16px; }
.news-card { background: white; border-radius: var(--radius-sm); padding: 16px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; cursor: pointer; transition: var(--transition); border-left: 3px solid transparent; }
.news-card:hover { border-left-color: var(--primary); box-shadow: var(--shadow-md); transform: translateX(2px); }
.news-card-thumb { width: 72px; height: 72px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; overflow: hidden; }
.news-card-content h4 { font-size: .88rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; line-height: 1.4; }
.news-card-content span { font-size: .75rem; color: var(--gray-600); }

/* NEWS CARD GRID (stiri.php) */
.news-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.news-grid-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-grid-img { height: 180px; position: relative; overflow: hidden; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.news-grid-img img { width: 100%; height: 100%; object-fit: cover; }
.news-grid-img-placeholder { opacity: .4; }
.news-grid-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-grid-body h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.news-grid-body p { font-size: .85rem; color: var(--gray-600); flex: 1; margin-bottom: 12px; }
.news-grid-date { font-size: .78rem; color: var(--gray-600); }

/* FILTER BAR */
.filter-bar { margin-bottom: 32px; }
.search-form { display: flex; gap: 10px; margin-bottom: 16px; }
.search-input { flex: 1; padding: 10px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .9rem; font-family: inherit; max-width: 400px; }
.search-input:focus { outline: none; border-color: var(--primary); }
.cat-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-btn { padding: 6px 14px; border-radius: 20px; font-size: .82rem; font-weight: 600; background: white; border: 2px solid var(--gray-200); color: var(--gray-800); transition: var(--transition); cursor: pointer; }
.cat-btn:hover, .cat-btn.active { border-color: var(--primary); background: var(--blue-light); color: var(--primary); }

/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer; }
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.project-header { padding: 20px 20px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.project-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.project-body { padding: 16px 20px; }
.project-body h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; line-height: 1.4; }
.project-body p { font-size: .83rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 14px; }
.project-progress { margin-bottom: 12px; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .78rem; }
.progress-label { color: var(--gray-600); font-weight: 500; }
.progress-pct { color: var(--primary); font-weight: 700; }
.progress-bar { height: 6px; background: var(--gray-200); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 10px; }
.project-footer { padding: 14px 20px; border-top: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; }
.project-budget { font-size: .8rem; color: var(--gray-600); }
.project-budget strong { color: var(--primary); font-weight: 700; }
.project-location { font-size: .75rem; color: var(--gray-600); }

/* SESIZARI */
.sesizari-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.sesizare-form { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-control { width: 100%; padding: 11px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: .9rem; font-family: inherit; color: var(--gray-800); transition: var(--transition); background: var(--gray-100); }
.form-control:focus { outline: none; border-color: var(--primary); background: white; }
textarea.form-control { resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tracker-card { background: white; border-radius: var(--radius-sm); padding: 18px; box-shadow: var(--shadow-sm); border-left: 4px solid transparent; cursor: pointer; transition: var(--transition); }
.tracker-card:hover { box-shadow: var(--shadow-md); }
.tracker-card.resolved { border-left-color: var(--green); }
.tracker-card.in-progress { border-left-color: var(--yellow); }
.tracker-card.pending { border-left-color: var(--gray-400); }
.tracker-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.tracker-id { font-size: .75rem; color: var(--gray-600); font-family: monospace; }
.tracker-title { font-size: .92rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.tracker-meta { font-size: .78rem; color: var(--gray-600); }
.tracker-steps { display: flex; gap: 0; margin-top: 12px; }
.tracker-step { flex: 1; position: relative; }
.tracker-step::after { content: ''; position: absolute; top: 6px; left: 50%; width: 100%; height: 2px; background: var(--gray-200); }
.tracker-step:last-child::after { display: none; }
.tracker-step-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gray-200); position: relative; z-index: 1; margin: 0 auto 4px; }
.tracker-step.done .tracker-step-dot { background: var(--green); }
.tracker-step.active .tracker-step-dot { background: var(--yellow); box-shadow: 0 0 0 3px rgba(243,156,18,.25); }
.tracker-step.done::after { background: var(--green); }
.tracker-step-label { font-size: .65rem; text-align: center; color: var(--gray-600); }

/* AGENDA */
.agenda-list { display: flex; flex-direction: column; gap: 16px; max-width: 780px; margin: 0 auto; }
.agenda-item { background: white; border-radius: var(--radius-sm); padding: 20px 24px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 70px 1fr auto; gap: 20px; align-items: center; cursor: pointer; transition: var(--transition); }
.agenda-item:hover { box-shadow: var(--shadow-md); }
.agenda-date-box { background: var(--primary); color: white; border-radius: var(--radius-sm); text-align: center; padding: 10px 8px; }
.agenda-day { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.agenda-month { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; opacity: .8; }
.agenda-body h4 { font-size: .95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.agenda-body p { font-size: .82rem; color: var(--gray-600); }

/* NEWSLETTER SECTION */
.newsletter-section { background: var(--primary); color: white; padding: 48px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-inner h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.newsletter-inner p { color: rgba(255,255,255,.8); font-size: .9rem; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-input { flex: 1; padding: 12px 18px; border: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: .9rem; font-family: inherit; min-width: 260px; }
.newsletter-btn { background: var(--accent); color: white; border: none; padding: 12px 24px; font-weight: 700; cursor: pointer; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: inherit; transition: var(--transition); }
.newsletter-btn:hover { background: #c0291e; }

/* FOOTER */
.footer { background: #071e4a; color: rgba(255,255,255,.7); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 10px; }
.footer-desc { font-size: .85rem; line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { background: rgba(255,255,255,.1); padding: 6px 12px; border-radius: 6px; font-size: .8rem; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-social a:hover { background: rgba(255,255,255,.2); color: white; }
.footer-col h4 { color: white; font-size: .88rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a, .footer-col ul li { font-size: .85rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,.4); }

/* RICH CONTENT */
.rich-content h2 { font-size: 1.4rem; color: var(--primary); margin: 24px 0 12px; }
.rich-content h3 { font-size: 1.1rem; color: var(--primary); margin: 18px 0 8px; }
.rich-content p { margin-bottom: 14px; line-height: 1.7; }
.rich-content ul, .rich-content ol { margin: 14px 0; padding-left: 24px; }
.rich-content li { margin-bottom: 6px; }
.rich-content a { color: var(--primary-light); text-decoration: underline; }

/* PAGINATION */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.page-btn { padding: 8px 14px; border-radius: var(--radius-sm); border: 2px solid var(--gray-200); font-size: .85rem; font-weight: 600; color: var(--gray-800); transition: var(--transition); }
.page-btn:hover, .page-btn.active { border-color: var(--primary); background: var(--primary); color: white; }

/* FAB */
.fab { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); cursor: pointer; z-index: 999; transition: var(--transition); font-size: 1.4rem; border: none; }
.fab:hover { background: #c0291e; transform: scale(1.1); }
.scroll-top { position: fixed; bottom: 96px; right: 28px; width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: var(--transition); z-index: 998; border: none; box-shadow: var(--shadow-md); font-size: 1rem; }
.scroll-top.visible { opacity: 1; }

/* TICKER */
.ticker { background: var(--accent); color: white; padding: 10px 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; gap: 0; }
.ticker-label { background: rgba(0,0,0,.25); padding: 4px 14px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; flex-shrink: 0; margin-right: 20px; }
.ticker-track { display: flex; gap: 48px; animation: ticker-scroll 35s linear infinite; white-space: nowrap; font-size: .88rem; overflow: hidden; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,.6); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* MAP SECTION */
.map-section { background: white; padding: 64px 0; }
.map-grid { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.map-sidebar { display: flex; flex-direction: column; gap: 10px; }
.map-filter-title { font-size: .85rem; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.map-filter-btn { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); border: 2px solid var(--gray-200); background: white; cursor: pointer; transition: var(--transition); font-size: .88rem; font-weight: 500; color: var(--gray-800); width: 100%; text-align: left; }
.map-filter-btn:hover, .map-filter-btn.active { border-color: var(--primary); background: var(--blue-light); color: var(--primary); }
.map-filter-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.map-filter-count { margin-left: auto; font-size: .78rem; background: var(--gray-200); padding: 2px 7px; border-radius: 10px; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 460px; border: 2px solid var(--gray-200); }
#map { height: 100%; width: 100%; }

/* UPLOAD AREA */
.upload-area { border: 2px dashed var(--gray-400); border-radius: var(--radius-sm); padding: 28px; text-align: center; cursor: pointer; transition: var(--transition); background: var(--gray-100); }
.upload-area:hover { border-color: var(--primary); background: var(--blue-light); }
.upload-area .upload-icon { font-size: 2rem; margin-bottom: 8px; }
.upload-area p { font-size: .85rem; color: var(--gray-600); }
.sesizari-tracker { display: flex; flex-direction: column; gap: 16px; }

/* BUGET */
.buget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.buget-chart { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.buget-chart h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.buget-item { margin-bottom: 18px; }
.buget-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.buget-item-name { font-size: .88rem; font-weight: 600; color: var(--gray-800); display: flex; align-items: center; gap: 8px; }
.buget-item-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.buget-item-amount { font-size: .88rem; font-weight: 700; color: var(--primary); }
.buget-bar { height: 10px; background: var(--gray-200); border-radius: 10px; overflow: hidden; }
.buget-bar-fill { height: 100%; border-radius: 10px; }
.buget-stats { display: flex; flex-direction: column; gap: 20px; }
.buget-stat-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.buget-stat-label { font-size: .82rem; color: var(--gray-600); font-weight: 500; margin-bottom: 6px; }
.buget-stat-value { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.buget-stat-sub { font-size: .78rem; color: var(--gray-600); margin-top: 4px; }

/* GHID */
.ghid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ghid-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); cursor: pointer; transition: var(--transition); border-bottom: 3px solid transparent; }
.ghid-card:hover { box-shadow: var(--shadow-md); border-bottom-color: var(--primary); transform: translateY(-2px); }
.ghid-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.ghid-card h3 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.ghid-card p { font-size: .82rem; color: var(--gray-600); line-height: 1.5; }
.ghid-steps { margin-top: 12px; display: flex; flex-direction: column; gap: 4px; }
.ghid-step { font-size: .78rem; color: var(--gray-600); display: flex; align-items: flex-start; gap: 6px; }
.ghid-step::before { content: '→'; color: var(--primary); flex-shrink: 0; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .news-card-grid { grid-template-columns: repeat(2, 1fr); }
  .ghid-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 12px 20px 20px; box-shadow: var(--shadow-md); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .news-grid { grid-template-columns: 1fr; }
  .sesizari-grid { grid-template-columns: 1fr; }
  .buget-grid { grid-template-columns: 1fr; }
  .ghid-grid { grid-template-columns: 1fr; }
  .agenda-item { grid-template-columns: 60px 1fr; }
  .agenda-type { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-input { border-radius: var(--radius-sm); min-width: unset; }
  .newsletter-btn { border-radius: var(--radius-sm); }
  .form-row { grid-template-columns: 1fr; }
  .news-card-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .map-container { height: 300px; }
}
