/* ===================================================
   CỔNG THÔNG TIN PHƯỜNG VŨNG TÀU - TP.HCM
   Global Stylesheet
   =================================================== */

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

/* --- CSS Variables --- */
:root {
  --primary: #005bac;
  --primary-light: #0077d4;
  --primary-dark: #003d7a;
  --primary-pale: #e8f2fb;
  --surface: #f0f6ff;
  --dark: #001f4e;
  --accent-red: #c0392b;
  --accent-gold: #d4a017;
  --text-main: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #c5def5;
  --bg-white: #ffffff;
  --bg-light: #f8fafb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
  --font: "Inter", "Segoe UI", sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad {
  padding: 56px 0;
}
.section-pad-sm {
  padding: 36px 0;
}
.bg-surface {
  background: var(--surface);
}
.bg-dark {
  background: var(--dark);
}
.bg-primary {
  background: var(--primary);
}
.text-center {
  text-align: center;
}
.text-muted {
  color: var(--text-muted);
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.gap-1 {
  gap: 8px;
}
.gap-2 {
  gap: 16px;
}
.gap-3 {
  gap: 24px;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.w-100 {
  width: 100%;
}

/* --- Section Title --- */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
}
.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-title.white {
  color: #fff;
}
.section-title.white::after {
  background: rgba(255, 255, 255, 0.6);
}

/* --- Breadcrumb --- */
.breadcrumb-wrap {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 0.875rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--primary);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .sep {
  color: var(--text-light);
}
.breadcrumb .current {
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-red {
  background: var(--accent-red);
  color: #fff;
}
.btn-red:hover {
  background: #a93226;
}
.btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

/* ===================================================
   TOP BAR
   =================================================== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-right a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.topbar-right a:hover {
  color: #fff;
}
.font-size-controls button {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 3px;
  transition: var(--transition);
  font-family: var(--font);
}
.font-size-controls button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ===================================================
   SITE HEADER
   =================================================== */
.site-header {
  background: var(--bg-white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-emblem {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text {
  line-height: 1.3;
}
.logo-text .line1 {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.logo-text .line2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.logo-text .line3 {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--bg-light);
  transition: var(--transition);
}
.search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.1);
}
.search-form input {
  border: none;
  background: none;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-family: var(--font);
  outline: none;
  width: 220px;
  color: var(--text-main);
}
.search-form button {
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  transition: var(--transition);
}
.search-form button:hover {
  background: var(--primary-dark);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.main-nav {
  background: var(--primary);
  position: relative;
}
.nav-list {
  display: flex;
  align-items: stretch;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 20px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-item.active > .nav-link {
  background: var(--primary-dark);
  color: #fff;
}
.nav-item.active > .nav-link {
  border-bottom: 3px solid var(--accent-gold);
}
.nav-link .chevron {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 240px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 500;
  border-top: 3px solid var(--primary-light);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown a:last-child {
  border-bottom: none;
}
.dropdown a:hover {
  background: var(--primary-pale);
  color: var(--primary);
  padding-left: 26px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  padding: 8px;
  color: var(--primary);
  font-size: 1.4rem;
}
.mobile-nav {
  display: none;
  background: var(--primary-dark);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 900;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===================================================
   HERO SLIDER
   =================================================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 480px;
  background: var(--dark);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 20, 60, 0.75) 0%,
    rgba(0, 20, 60, 0.35) 60%,
    transparent 100%
  );
}
.slide-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
}
.slide-content-inner {
  max-width: 580px;
  color: #fff;
}
.slide-tag {
  display: inline-block;
  background: var(--primary-light);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.slide-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.slide-desc {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  cursor: pointer;
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.slider-arrow.prev {
  left: 20px;
}
.slider-arrow.next {
  right: 20px;
}

/* ===================================================
   QUICK INFO BAR
   =================================================== */
.quick-info {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.quick-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.quick-info-item:last-child {
  border-right: none;
}
.quick-info-item:hover {
  background: var(--primary-pale);
}
.quick-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-info-text .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.quick-info-text .value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

/* ===================================================
   PUBLIC SERVICES GRID
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}
.service-card p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

/* ===================================================
   NEWS SECTION
   =================================================== */
.news-featured-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
}
.news-main-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  height: 380px;
}
.news-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.news-main-card:hover img {
  transform: scale(1.04);
}
.news-main-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 15, 50, 0.88));
  padding: 32px 24px 24px;
  color: #fff;
}
.news-category-badge {
  display: inline-block;
  background: var(--primary-light);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.news-main-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.news-meta {
  font-size: 0.78rem;
  opacity: 0.8;
  display: flex;
  gap: 12px;
  align-items: center;
}

.news-side-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-side-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.news-side-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.news-side-item:hover .news-side-title {
  color: var(--primary);
}
.news-side-thumb {
  width: 88px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}
.news-side-body {
  flex: 1;
}
.news-side-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: var(--transition);
}
.news-side-meta {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* News list cards (tin-tuc.html) */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-list-card {
  display: flex;
  gap: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.news-list-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.news-list-thumb {
  width: 220px;
  flex-shrink: 0;
  object-fit: cover;
  align-self: stretch;
  min-height: 148px;
  background: var(--surface);
  display: block;
}
.news-list-body {
  padding: 16px 20px 16px 0;
  flex: 1;
}
.news-list-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.news-list-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.news-list-title:hover {
  color: var(--primary);
}
.news-list-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  gap: 14px;
}

/* ===================================================
   ANNOUNCEMENT & SCHEDULE TABS
   =================================================== */
.tab-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tab-header {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  flex: 1;
  padding: 13px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: #fff;
}
.tab-btn:hover:not(.active) {
  color: var(--primary-light);
}
.tab-pane {
  display: none;
  padding: 16px;
}
.tab-pane.active {
  display: block;
}
.tab-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.86rem;
  transition: var(--transition);
}
.tab-item:last-child {
  border-bottom: none;
}
.tab-item:hover {
  color: var(--primary);
}
.tab-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  margin-top: 7px;
  flex-shrink: 0;
}
.tab-item .date {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.tab-footer {
  padding: 10px 16px;
  text-align: right;
  border-top: 1px solid var(--border);
}
.tab-footer a {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===================================================
   STATS COUNTER
   =================================================== */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}
.stat-item:last-child {
  border-right: none;
}
.stat-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-size: 1.2rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ===================================================
   PROCEDURES ACCORDION
   =================================================== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  background: var(--bg-white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.accordion-header:hover {
  background: var(--primary-pale);
  color: var(--primary);
}
.accordion-header .acc-icon {
  color: var(--primary);
  font-size: 0.8rem;
  transition: transform 0.25s;
}
.accordion-item.open .acc-icon {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 14px 18px;
  background: var(--surface);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.accordion-item.open .accordion-body {
  display: block;
}

/* ===================================================
   GALLERY GRID
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 80, 0.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===================================================
   SIDEBAR
   =================================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sidebar-box-header {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-box-body {
  padding: 12px 0;
}
.sidebar-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 16px;
  border-bottom: 1px dashed var(--border);
  font-size: 0.84rem;
  transition: var(--transition);
}
.sidebar-item:last-child {
  border-bottom: none;
}
.sidebar-item:hover {
  background: var(--primary-pale);
  color: var(--primary);
}
.sidebar-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
  margin-top: 8px;
  flex-shrink: 0;
}
.sidebar-item img {
  width: 70px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}
.sidebar-item-body .title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}
.sidebar-item-body .meta {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.sidebar-search-form {
  display: flex;
  margin: 12px 16px 4px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sidebar-search-form input {
  flex: 1;
  border: none;
  padding: 8px 12px;
  font-size: 0.84rem;
  outline: none;
  font-family: var(--font);
}
.sidebar-search-form button {
  background: var(--primary);
  color: #fff;
  padding: 0 12px;
  font-size: 0.85rem;
}

.category-list {
  padding: 8px 0;
}
.category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  font-size: 0.86rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.category-list li:last-child a {
  border-bottom: none;
}
.category-list li a:hover {
  background: var(--primary-pale);
  color: var(--primary);
}
.category-list li a .count {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 50px;
}

/* ===================================================
   ARTICLE (chi-tiet)
   =================================================== */
.article-header {
  margin-bottom: 24px;
}
.article-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-featured-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.article-featured-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.article-featured-img .caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 6px 0;
  text-align: center;
  font-style: italic;
}
.article-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #2d2d2d;
}
.article-body p {
  margin-bottom: 16px;
}
.article-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--primary-dark);
}
.article-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 10px;
}
.article-body ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}
.article-body ul li {
  margin-bottom: 6px;
}
.article-body blockquote {
  border-left: 4px solid var(--primary-light);
  margin: 20px 0;
  padding: 12px 20px;
  background: var(--primary-pale);
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.tag {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 50px;
  transition: var(--transition);
}
.tag:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
  color: var(--primary);
}
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.share-fb {
  background: #1877f2;
  color: #fff;
}
.share-fb:hover {
  background: #0d65d8;
}
.share-zalo {
  background: #0068ff;
  color: #fff;
}
.share-zalo:hover {
  background: #0055d4;
}
.share-copy {
  background: var(--surface);
  color: var(--text-main);
  border: 1px solid var(--border);
}
.share-copy:hover {
  background: var(--border);
}

/* Related news */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.related-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.related-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  background: var(--surface);
}
.related-card-body {
  padding: 12px;
}
.related-card-body .cat {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.related-card-body .title {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}
.related-card-body .meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===================================================
   FEEDBACK FORM
   =================================================== */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-label .req {
  color: var(--accent-red);
  margin-left: 3px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--text-main);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.1);
}
.form-control::placeholder {
  color: var(--text-light);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
select.form-control {
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-light);
}
.upload-area:hover {
  border-color: var(--primary);
  background: var(--primary-pale);
}
.upload-area i {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.upload-area p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.upload-area input[type="file"] {
  display: none;
}
.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.captcha-code {
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--primary-dark);
  background: linear-gradient(120deg, #e8f5ee, #d4e8dc);
  padding: 6px 14px;
  border-radius: 4px;
  user-select: none;
  border: 1px dashed var(--border);
}
.captcha-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font);
}
.captcha-input:focus {
  border-color: var(--primary);
}
.captcha-refresh {
  color: var(--primary);
  font-size: 0.9rem;
  cursor: pointer;
}

/* Feedback stats */
.feedback-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.fb-stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.fb-stat-card:hover {
  box-shadow: var(--shadow-md);
}
.fb-stat-card i {
  font-size: 2rem;
  margin-bottom: 10px;
}
.fb-stat-card .num {
  font-size: 1.8rem;
  font-weight: 800;
}
.fb-stat-card .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.fb-stat-card.total i {
  color: var(--primary);
}
.fb-stat-card.total .num {
  color: var(--primary);
}
.fb-stat-card.done i {
  color: #16a34a;
}
.fb-stat-card.done .num {
  color: #16a34a;
}
.fb-stat-card.pending i {
  color: var(--accent-gold);
}
.fb-stat-card.pending .num {
  color: var(--accent-gold);
}

/* Lookup */
.lookup-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.lookup-form {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: flex-start;
}
.lookup-fields {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lookup-form input,
.lookup-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font);
  background: #fff;
  box-sizing: border-box;
}
.lookup-form input:focus,
.lookup-form select:focus {
  border-color: var(--primary);
}
@media (max-width: 600px) {
  .lookup-form {
    flex-direction: column;
  }
  .lookup-fields {
    grid-template-columns: 1fr;
  }
  .lookup-form .btn {
    width: 100%;
    justify-content: center;
  }
}
.lookup-result {
  display: none;
  margin-top: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lookup-result.show {
  display: block;
}
.lookup-result table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.lookup-result td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.lookup-result td:first-child {
  font-weight: 600;
  width: 40%;
  color: var(--text-muted);
}

/* ===================================================
   ABOUT PAGE SPECIFIC
   =================================================== */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.leader-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.leader-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.leader-card-img {
  height: 200px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.leader-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.leader-card-body {
  padding: 16px;
}
.leader-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.leader-title {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.leader-dept {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.org-chart {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow-x: auto;
}
.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.org-root {
  background: var(--primary);
  color: #fff;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}
.org-connector {
  width: 2px;
  height: 28px;
  background: var(--border);
}
.org-row {
  display: flex;
  justify-content: center;
  padding-top: 28px;
  position: relative;
}
.org-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 28px;
  background: var(--border);
}
.org-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 8px;
}
.org-col::before {
  content: "";
  width: 2px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}
.org-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}
.org-col:first-child::after {
  left: 50%;
}
.org-col:last-child::after {
  right: 50%;
}
.org-col:only-child::after {
  display: none;
}
.org-col:only-child::before {
  height: 0;
}
.org-level {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.org-box {
  background: var(--primary-pale);
  border: 1.5px solid var(--primary-light);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: var(--primary-dark);
  min-width: 140px;
}
.org-box-sm {
  background: var(--surface);
  border-color: var(--border);
  font-size: 0.78rem;
  padding: 8px 14px;
  min-width: 120px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-dot {
  position: absolute;
  left: -23px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary-light);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.info-table tr {
  border-bottom: 1px solid var(--border);
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table td {
  padding: 11px 14px;
}
.info-table td:first-child {
  font-weight: 600;
  width: 40%;
  color: var(--text-muted);
  background: var(--surface);
}

/* ===================================================
   PAGINATION
   =================================================== */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-main);
  background: var(--bg-white);
  transition: var(--transition);
  cursor: pointer;
}
.page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===================================================
   FILTER TABS
   =================================================== */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-tab {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}
.filter-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===================================================
   MAPS EMBED
   =================================================== */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe {
  display: block;
  border: none;
}

/* ===================================================
   PARTNER LINKS
   =================================================== */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.partner-logo {
  height: 52px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.partner-logo:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-brand .logo-circle {
  width: 54px;
  height: 54px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.footer-brand .name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
.footer-contact-item {
  display: flex;
  gap: 8px;
  font-size: 0.84rem;
  margin-bottom: 8px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--primary-light);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-links a i {
  font-size: 0.7rem;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-fb {
  background: #1877f2;
  color: #fff;
}
.social-yt {
  background: #ff0000;
  color: #fff;
}
.social-zalo {
  background: #0068ff;
  color: #fff;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.footer-hotline {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-hotline i {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-hotline .hl-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-hotline .hl-number {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 14px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a:hover {
  color: var(--primary-light);
}

/* ===================================================
   BACK TO TOP
   =================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===================================================
   LAYOUT HELPERS
   =================================================== */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: flex-start;
}
.two-col-layout > *,
.grid-2 > *,
.grid-4 > * {
  min-width: 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 36px 0;
  color: #fff;
}
.page-hero h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.page-hero p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .main-nav .nav-list {
    display: none;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .search-form input {
    width: 160px;
  }
  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-featured-grid {
    grid-template-columns: 1fr;
  }
  .two-col-layout {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-slider {
    height: 320px;
  }
  .slide-title {
    font-size: 1.4rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .news-list-card {
    flex-direction: column;
  }
  .news-list-thumb {
    width: 100%;
    height: 180px;
  }
  .news-list-body {
    padding: 14px;
  }
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feedback-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .quick-info-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leader-grid {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
