:root {
  --belarus-red: #C8102E;
  --belarus-red-dark: #9B0C24;
  --belarus-green: #007A33;
  --belarus-green-dark: #005522;
  
  --gold: #FFD700;
  --gold-light: #FFE55C;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --dark-gray: #333333;
  --text-color: #2C3E50;
  
  --gradient-patriotic: linear-gradient(135deg, var(--belarus-red) 0%, var(--belarus-green) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-xl: 50px;
  
  --header-height: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-gray);
  overflow-x: hidden;
  padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-gray);
}

a {
  text-decoration: none;
  color: var(--belarus-green);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--belarus-red);
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  background: linear-gradient(180deg, #e8e8e8 0%, #d0d0d0 100%);
  box-shadow: var(--shadow-soft);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 4px solid var(--belarus-red);
  height: var(--header-height);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #f0f0f0 0%, #e0e0e0 100%);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--belarus-red) 0%, var(--belarus-red) 33%, var(--belarus-green) 33%, var(--belarus-green) 66%, var(--belarus-red) 66%);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 70px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

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

.logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--belarus-red);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--belarus-green);
  font-weight: 600;
  margin-top: 2px;
}

.year-2026-logo {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.year-logo-img {
  height: 70px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.year-logo-img:hover {
  transform: scale(1.05);
}

.coat-of-arms-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.coat-of-arms {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
  border-radius: 3px;
}

.coat-of-arms:hover {
  transform: scale(1.1);
}

.nav-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 3px;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 14px;
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--belarus-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--belarus-red);
  background: rgba(200, 16, 46, 0.05);
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  box-shadow: var(--shadow-strong);
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border-top: 3px solid var(--belarus-red);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--dark-gray);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: var(--light-gray);
  color: var(--belarus-red);
  border-left-color: var(--belarus-red);
  padding-left: 25px;
}

.tools-panel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-link {
  width: 32px;
  height: 22px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

.lang-link:hover,
.lang-link.active {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border-color: var(--belarus-red);
}

.lang-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-link.instagram {
  background: transparent;
}

.social-link.telegram {
  background: transparent;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-medium);
}

.social-link svg {
  width: 34px;
  height: 34px;
}

.telegram-bot {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0088cc 0%, #00a8e8 100%);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.telegram-bot:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.telegram-bot svg {
  width: 16px;
  height: 16px;
}

.vi-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

.vi-icon-img {
  width: 36px;
  height: 36px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  background: white;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.vi-icon-img:hover {
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--belarus-red);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.footer {
  background: linear-gradient(180deg, var(--dark-gray) 0%, #1a1a1a 100%);
  color: white;
  padding: 50px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--belarus-red) 0%, var(--belarus-red) 33%, var(--belarus-green) 33%, var(--belarus-green) 66%, var(--belarus-red) 66%);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--belarus-red);
  display: inline-block;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--gold);
}

.hotline-numbers {
  background: rgba(200, 16, 46, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 4px solid var(--belarus-red);
}

.hotline-numbers h4 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1rem;
}

.hotline-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: white;
}

.hotline-item::before {
  content: '📞';
}

.footer-bot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0088cc;
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  margin-top: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-bot:hover {
  background: #0099dd;
  color: white;
  transform: translateY(-2px);
}

.footer-bottom-new {
  background: #111;
  padding: 30px 20px;
  text-align: center;
}

.footer-copyright {
  margin-bottom: 20px;
}

.footer-copyright p {
  color: #888;
  font-size: 0.95rem;
  margin: 5px 0;
}

.footer-rights {
  font-size: 0.85rem !important;
  color: #666 !important;
}

.footer-color-bars {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.color-bar {
  height: 6px;
  border-radius: 3px;
}

.green-bar {
  background: var(--belarus-green);
  width: 45%;
}

.red-bar {
  background: var(--belarus-red);
  width: 45%;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--belarus-red) 0%, var(--belarus-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--belarus-red) 0%, var(--belarus-red-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--belarus-green) 0%, var(--belarus-green-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 122, 51, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 122, 51, 0.4);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #E5C100 100%);
  color: var(--dark-gray);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: var(--dark-gray);
}

.service-link,
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--belarus-green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-link::after,
.news-link::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.service-link:hover,
.news-link:hover {
  color: var(--belarus-red);
  gap: 12px;
}

.service-link:hover::after,
.news-link:hover::after {
  transform: translateX(5px);
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.card-header {
  padding: 20px;
  background: var(--gradient-patriotic);
  color: white;
}

.card-body {
  padding: 25px;
}

.card-footer {
  padding: 15px 25px;
  background: var(--light-gray);
  border-top: 1px solid var(--medium-gray);
}

.section {
  padding: 60px 20px;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-patriotic);
  border-radius: 2px;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

.symbols-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  padding: 40px 20px;
  border-top: 3px solid var(--belarus-red);
  border-bottom: 3px solid var(--belarus-green);
}

.symbols-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.symbol-item {
  text-align: center;
  transition: all 0.3s ease;
}

.symbol-item:hover {
  transform: scale(1.05);
}

.symbol-item img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.symbol-item p {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.info-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.info-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
}

.info-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.info-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-card:hover .info-card-image img {
  transform: scale(1.1);
}

.info-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.info-card:hover .info-card-overlay {
  opacity: 1;
}

.info-card-zoom {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.info-card:hover .info-card-zoom {
  transform: translateY(0);
}

.info-card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--belarus-red), var(--belarus-green));
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  color: var(--belarus-red);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.4);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-counter {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: 20px;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease forwards;
}

@media (max-width: 1200px) {
  .main-nav {
    gap: 2px;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .year-logo-img {
    height: 65px;
  }
  
  .coat-of-arms {
    width: 28px;
  }
  
  :root {
    --header-height: 90px;
  }
}

@media (max-width: 992px) {
  .header-container {
    flex-direction: row;
    gap: 10px;
  }
  
  .nav-section {
    flex-direction: column;
    width: 100%;
  }
  
  .main-nav {
    justify-content: center;
  }
  
  .tools-panel {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .year-logo-img {
    height: 55px;
  }
  
  .coat-of-arms {
    width: 26px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }
  
  .mobile-menu-btn {
    display: flex;
    position: absolute;
    right: 15px;
    top: 20px;
  }
  
  .nav-section {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    flex-direction: column;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 1001;
    margin-top: 0;
  }
  
  .nav-section.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .main-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .nav-item {
    width: 100%;
    position: relative;
    border-bottom: 1px solid var(--medium-gray);
  }
  
  .nav-link {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--belarus-red);
    margin-left: 20px;
    display: none;
    min-width: auto;
    background: var(--light-gray);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0;
  }
  
  .nav-item.active .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  .dropdown-item {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .nav-item.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  
  .logo-title {
    font-size: 0.85rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
  }
  
  .logo-img {
    width: 50px;
  }
  
  .coat-of-arms-row {
    display: none;
  }
  
  .year-2026-logo {
    margin-left: 5px;
    padding-left: 5px;
  }
  
  .year-logo-img {
    height: 50px;
  }
  
  .section {
    padding: 40px 15px;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .symbols-container {
    gap: 30px;
  }
  
  .symbol-item img {
    width: 80px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .logo-section {
    flex-direction: row;
    text-align: left;
  }
  
  .logo-img {
    width: 45px;
  }
  
  .telegram-bot span {
    display: none;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .mobile-menu-btn {
    top: 15px;
  }
  
  .footer-color-bars {
    flex-direction: column;
    gap: 5px;
  }
  
  .color-bar {
    width: 100% !important;
  }
  
  .tools-panel {
    gap: 8px;
  }
  
  .social-link {
    width: 30px;
    height: 30px;
  }
  
  .social-link svg {
    width: 30px;
    height: 30px;
  }
  
  .vi-icon-img {
    width: 28px;
    height: 28px;
  }
}

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

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }

.hidden { display: none !important; }
.visible { display: block !important; }

.patriotic-ribbon {
  background: linear-gradient(90deg, var(--belarus-red) 0%, var(--belarus-red) 33%, var(--belarus-green) 33%, var(--belarus-green) 66%, var(--belarus-red) 66%);
  height: 6px;
  width: 100%;
}

.checkmark {
  color: var(--belarus-green);
  font-weight: bold;
}

.year-badge {
  display: inline-block;
  background: var(--gradient-patriotic);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1.1rem;
}

.under-construction {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}

.under-construction-icon {
  font-size: 6rem;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.under-construction h1 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.under-construction p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin-bottom: 30px;
}

.under-construction .btn {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .under-construction h1 {
    font-size: 1.8rem;
  }
  
  .under-construction-icon {
    font-size: 4rem;
  }
}
