/* ===================================================================
   UNA.MD — Modern IT Responsive Override
   Mobile-first, dark-navy theme with electric blue accents
   =================================================================== */

/* --- Google Font: Inter (modern IT standard) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --secondary: #1e40af;
  --accent: #3b82f6;
  --accent-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --accent-hover: #2563eb;
  --accent-soft: #dbeafe;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #10b981;
  --danger: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.06), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.04);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --header-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================================
   DARK THEME (overrides :root variables via data-theme attribute)
   =================================================================== */
[data-theme="dark"] {
  --primary: #e2e8f0;
  --primary-light: #cbd5e1;
  --secondary: #60a5fa;
  --accent: #60a5fa;
  --accent-gradient: linear-gradient(135deg, #60a5fa, #a78bfa);
  --accent-hover: #93bbfd;
  --accent-soft: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --bg-white: #0f172a;
  --bg-light: #1e293b;
  --bg-alt: #1e293b;
  --bg-dark: #020617;
  --border: #334155;
  --border-light: #1e293b;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.3);
  --shadow: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -4px rgba(0,0,0,0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.4), 0 8px 10px -6px rgba(0,0,0,0.3);
}

[data-theme="dark"] body {
  color: var(--text-primary);
  background: var(--bg-white);
}

[data-theme="dark"] header {
  background: rgba(15, 23, 42, 0.95);
  border-bottom-color: var(--border);
}

[data-theme="dark"] .hamburger span {
  background: var(--text-primary);
}

[data-theme="dark"] .hamburger,
[data-theme="dark"] .theme-toggle {
  border-color: var(--border);
}

[data-theme="dark"] .hamburger:hover,
[data-theme="dark"] .theme-toggle:hover {
  background: var(--bg-light);
}

[data-theme="dark"] .menu {
  background: var(--bg-white);
  border-top-color: var(--border);
}

[data-theme="dark"] .menu > li {
  border-bottom-color: var(--border-light);
}

[data-theme="dark"] .about-us-bl {
  background: var(--bg-light);
}

[data-theme="dark"] .about-us-bl p,
[data-theme="dark"] .about-us-bl * {
  color: #cbd5e1;
}

/* Logo invert in dark mode */
[data-theme="dark"] .logo a {
  filter: invert(1) brightness(1.05);
  transition: filter 0.35s ease;
}

[data-theme="dark"] .clients-list li a {
  background: var(--bg-light);
  border-color: var(--border);
}

[data-theme="dark"] .clients-list li a:hover {
  border-color: var(--accent);
}

[data-theme="dark"] .clients-list li a img {
  filter: brightness(0.9);
}

[data-theme="dark"] .clients-list li a:hover img {
  filter: brightness(1);
}

[data-theme="dark"] aside {
  background: var(--bg-light);
  border-color: var(--border);
}

[data-theme="dark"] .contact-form {
  background: var(--bg-light);
  border-color: var(--border);
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
  background: var(--bg-white);
  border-color: var(--border);
  color: var(--text-primary);
}

[data-theme="dark"] .contact-form h3 span {
  background: none;
}

[data-theme="dark"] footer {
  background: var(--bg-dark);
}

[data-theme="dark"] .footer-search input:focus {
  background: rgba(255,255,255,0.08);
}

[data-theme="dark"] .slider {
  background: var(--bg-dark);
}

/* Smooth theme transitions */
html {
  transition: background-color 0.35s ease;
}

body,
header,
.menu,
aside,
.about-us-bl,
.contact-form,
footer,
.clients-list li a,
.contact-form input,
.contact-form textarea,
.lang-menu li a,
.pagination ul li a {
  transition: background-color 0.35s ease,
              color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: 4px;
  margin-right: 4px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  order: 2;
  position: relative;
  z-index: 1001;
  overflow: hidden;
  transition: all var(--transition);
}

.theme-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.theme-toggle .theme-icon {
  display: block;
  font-size: 18px;
  line-height: 44px;
  color: var(--text-secondary);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 13px;
}

.theme-toggle:hover .theme-icon {
  color: var(--accent);
}

/* Icon states: only one visible at a time */
.theme-toggle .theme-icon-light,
.theme-toggle .theme-icon-dark,
.theme-toggle .theme-icon-auto {
  opacity: 0;
  transform: translateY(20px) scale(0.6);
  pointer-events: none;
}

.theme-toggle .theme-icon.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ===================================================================
   BASE RESET & TYPOGRAPHY
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.625;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Override old PT Sans !important on form elements */
input, button, select, textarea {
  font-family: var(--font) !important;
}

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

a:hover,
a:focus,
a:active {
  color: var(--accent-hover);
}

/* ===================================================================
   LAYOUT
   =================================================================== */
.wrapper-content {
  width: auto;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .wrapper-content {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .wrapper-content {
    padding: 0 40px;
  }
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 44px;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: #fff;
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===================================================================
   HEADER
   =================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

header .wrapper-content {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.logo {
  float: none;
  margin: 0;
  flex-shrink: 0;
}

.logo a {
  width: 160px;
  height: 30px;
  background-size: contain;
}

/* Language switcher */
.lang-menu {
  float: none;
  margin: 0 12px 0 auto;
  display: flex;
  align-items: center;
  gap: 2px;
  order: 2;
}

.lang-menu li {
  float: none;
  margin: 0;
}

.lang-menu li a {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--transition);
}

.lang-menu li a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.lang-menu li.active a {
  color: #fff;
  background: var(--accent-gradient);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  order: 3;
  position: relative;
  z-index: 1001;
  transition: all var(--transition);
}

.hamburger:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
  margin: 3px 0;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Main Navigation */
.menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  margin: 0;
  padding: 20px;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid var(--border);
}

.menu.open {
  display: block;
  height: fit-content;
}

.menu > li {
  float: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border-light);
}

.menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.menu > li > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(-45deg);
  transition: transform var(--transition);
}

.menu > li.active > a,
.menu > li > a:hover {
  color: var(--accent);
}

.menu .dropdown-menu {
  display: none;
  position: static;
  float: none;
  padding: 0 0 12px 16px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu > li.open .dropdown-menu {
  display: block;
}

.menu > li.open > a::after {
  transform: rotate(45deg);
}

.dropdown-menu li {
  margin: 0 0 4px;
  line-height: 1.5;
}

.dropdown-menu li a {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.dropdown-menu li a:hover {
  color: var(--accent);
}

.dropdown-menu .drop-title,
.dropdown-menu .second-drop-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 0 8px;
  display: block;
}

.dropdown-menu .second-drop-title {
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  margin-bottom: 8px;
  font-weight: 600;
}

.third-menu > li.column,
.third-menu > li.column2 {
  float: none;
  width: auto;
  margin: 0;
}

.third-menu > li.column2 > ul > li {
  float: none;
  width: auto;
  margin: 0;
}

.third-menu > li.column2 li:first-child {
  margin-right: 0;
}

/* ===================================================================
   SLIDER
   =================================================================== */
.slider {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 280px;
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--bg-dark);
}

.slider-img {
  position: relative;
  height: 280px;
}

.slider-img li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slider-img li.active {
  opacity: 1;
  position: relative;
}

.slider-img li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .wrapper-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  z-index: 2;
}

.slider .slider-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 50px;
}

.slider-nav li {
  float: none;
  margin: 0;
  width: 10px;
  height: 10px;
}

.slider-nav li a {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.3);
  transition: all var(--transition);
}

.slider-nav li.active a {
  background: var(--accent);
  width: 24px;
}

.slider-nav li a:hover {
  background: rgba(255,255,255,0.6);
}

.slider-content {
  position: absolute;
  bottom: 80px;
  left: 20px;
  right: 20px;
  height: auto;
  overflow: visible;
}

.slider-content li {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s;
  background: none;
  border-radius: 0;
  padding: 20px;
  z-index: 0;
}

.slider-content li:before {
  display: none;
}

.slider-content li.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.slider-content li p {
  display: block;
  white-space: normal;
  line-height: 1.4;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  max-width: 600px;
}

/* ===================================================================
   ABOUT US
   =================================================================== */
.about-us-bl {
  background: var(--bg-light);
  padding: 60px 0;
  max-height: none;
  overflow: visible;
}

.about-us-bl.open {
  max-height: none;
}

.about-us-bl p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.show-all {
  display: none;
}

/* ===================================================================
   CLIENTS
   =================================================================== */
.clients {
  padding: 60px 0 40px;
}

.clients-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}

.clients-nav li {
  float: none;
  margin: 0;
}

.clients-nav li a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-light);
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.clients-nav li a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.clients-nav li.active a {
  background: var(--accent-gradient);
  color: #fff;
}

.clients-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
}

.clients-list li {
  float: none;
  margin: 0;
}

.clients-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.clients-list li a:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.clients-list li a img {
  display: block;
  max-height: 40px;
  width: auto;
  opacity: 0.55;
  filter: none;
  transition: opacity var(--transition);
}

.clients-list li a:hover img {
  opacity: 1;
}

/* ===================================================================
   CONTACT SECTION (Homepage)
   =================================================================== */
.contact-us-bl {
  padding: 60px 0;
}

.contact-map {
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.contact-list {
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding-left: 36px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}

.contact-list li.map-marker {
  font-size: 16px;
  font-weight: 600;
}

.contact-list li.phone {
  font-size: 16px;
  line-height: 1.7;
}

.contact-list li.phone a {
  color: var(--text-primary);
}

.contact-list li.phone a:hover {
  color: var(--accent);
}

.contact-list li.envelope,
.contact-list li.link {
  color: var(--text-muted);
}

.contact-list li .fa {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
}

.contact-list li .fa:before {
  position: static;
  color: var(--accent);
  font-size: 18px;
}

.contact-list li .fa.fa-map-marker:before {
  top: auto;
}

.contact-list li .fa.fa-phone:before,
.contact-list li .fa.fa-link:before {
  top: auto;
  font-size: 18px;
}

.contact-list li .fa.fa-envelope:before {
  top: auto;
  font-size: 18px;
}

.transport-help {
  float: none;
  width: auto;
  margin-bottom: 32px;
}

.title-20 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
}

.title-16 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}

.tr-list {
  margin: 0 0 24px;
  padding: 0;
}

.tr-list li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.tr-list li .step-n {
  color: var(--accent);
  font-weight: 700;
}

/* ===================================================================
   INSIDE PAGES (aside + content)
   =================================================================== */
.content {
  padding: 0 0 60px;
  margin-top: var(--header-h);
}

.inside-page {
  padding: 24px 0 0;
}

.bread-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 20px;
  padding: 0;
}

.bread-crumb li {
  float: none;
  background: none;
  padding: 0;
  line-height: 1.6;
  font-size: 12px;
  color: var(--text-muted);
}

.bread-crumb li::after {
  content: '/';
  margin: 0 6px;
  color: var(--border);
}

.bread-crumb li:last-child::after {
  content: none;
}

.bread-crumb li:first-child {
  padding-left: 0;
}

.bread-crumb li a,
.bread-crumb li span {
  font-size: 12px;
  color: var(--text-muted);
}

.bread-crumb li a:hover {
  color: var(--accent);
}

aside {
  float: none;
  width: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
}

aside .last-news,
aside .inter-news,
aside .contact {
  padding: 0;
}

.aside-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  padding-left: 28px;
  margin-bottom: 16px;
  position: relative;
}

.aside-title .fa {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-size: 16px;
}

aside .aside-border {
  display: block;
  height: 1px;
  background: var(--border);
  margin: 24px 0;
  width: 100%;
}

.contact-aside-list {
  margin: 0 0 8px;
  padding: 0;
}

.contact-aside-list li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.contact-aside-list li a {
  color: var(--text-primary);
}

.contact-aside-list li a:hover {
  color: var(--accent);
}

.contact-aside-list li.email-link a {
  color: var(--accent);
}

aside .date-link {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.aside-news-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}

.aside-news-title a {
  color: var(--text-primary);
}

.aside-news-title a:hover {
  color: var(--accent);
}

aside p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.read-more {
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more .fa {
  position: static;
  font-size: 12px;
}

section.left-bl {
  margin-right: 0;
}

section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.title-36,
.news-title,
.page-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.page-title {
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
}

/* ===================================================================
   NEWS PAGES
   =================================================================== */
.news-single-bl {
  padding-top: 24px;
}

.news-title {
  font-size: 26px;
}

.news-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 24px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--border);
}

.news-info li {
  float: none;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.news-info li.category-link,
.news-info li.category-link a {
  color: var(--accent);
  font-weight: 500;
}

.news-info .fa:before {
  margin-right: 6px;
}

/* News list */
.news-list-bl {
  padding-top: 24px;
}

.news-list {
  margin: 0;
  padding: 0;
}

.news-list > li {
  float: none;
  width: auto;
  margin: 0 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.news-list > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.news-list .post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 4px;
}

.news-list li p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.news-list-info {
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.news-list-info li {
  float: none;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  padding: 0;
  background: none;
}

.news-list-info li.date-link {
  padding: 0;
}

.pagination {
  text-align: center;
  margin-top: 40px;
}

.pagination ul {
  display: inline-flex;
  gap: 8px;
}

.pagination ul li {
  float: none;
  margin: 0;
  line-height: 1;
}

.pagination ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50% !important;
  border: 1px solid var(--border);
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition);
}

.pagination ul li a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination ul li.active a {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
}

.pagination ul li.disabled a {
  opacity: 0.4;
  pointer-events: none;
}

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-page {
  padding-top: 24px;
}

.contact-form {
  float: none;
  width: auto;
  margin: 0 0 32px;
  padding: 28px 24px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-form h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px;
  background: none;
}

.contact-form h3 span {
  background: none;
  padding: 0;
}

.contact-form input,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  float: none;
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 16px;
  height: auto;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

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

.contact-form button {
  float: none;
  background: var(--accent-gradient);
  font-size: 15px;
  font-weight: 600;
  height: 48px;
  padding: 0 32px;
  border-radius: var(--radius-sm);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-form button:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.contact-form .f-help {
  float: none;
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--success);
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  margin-top: 0;
  background: var(--bg-dark);
  padding: 40px 0 32px;
  box-shadow: none;
}

footer .wrapper-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

footer .pull-top {
  position: static;
  margin: 0;
  width: auto;
  height: auto;
  background: none;
}

footer .pull-top.fa:before {
  position: static;
  font-size: 24px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

footer .pull-top.fa:hover:before {
  color: var(--accent);
}

footer .pull-top span {
  display: none;
}

.footer-search {
  float: none;
  margin: 0;
  width: 100%;
  max-width: 320px;
  position: relative;
}

.footer-search input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 44px;
  font-family: var(--font);
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}

.footer-search input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
}

.footer-search.fa:before {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}

footer .copy-right {
  float: none;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ===================================================================
   TABLET (≥768px)
   =================================================================== */
@media (min-width: 768px) {
  .slider {
    min-height: 360px;
  }

  .slider-img {
    height: 360px;
  }

  .slider-content {
    left: 32px;
    bottom: 100px;
  }

  .slider-content li p {
    font-size: 26px;
  }

  .clients-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-map {
    height: 320px;
  }

  .contact-list {
    margin-right: 0;
  }

  .news-list > li {
    width: 48%;
    float: left;
    margin-right: 4%;
    border-bottom: none;
    padding-bottom: 0;
  }

  .news-list > li:nth-child(2n+2) {
    margin-right: 0;
  }

  .title-36,
  .page-title {
    font-size: 32px;
  }

  .contact-form {
    width: auto;
    float: none;
  }

  footer .wrapper-content {
    flex-direction: row;
    justify-content: space-between;
  }

  footer .copy-right {
    text-align: left;
  }
}

/* ===================================================================
   DESKTOP (≥1024px)
   =================================================================== */
@media (min-width: 1024px) {
  body {
    min-width: 0;
    height: auto;
  }

  .wrapper {
    min-height: auto;
    height: auto;
  }

  .content {
    padding: 0 0 80px;
  }

  /* Header - desktop navigation */
  header {
    padding: 0;
    height: var(--header-h);
  }

  .hamburger {
    display: none;
  }

  .lang-menu {
    margin: 0 24px 0 auto;
  }

  .menu {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    padding: 0;
    overflow: visible;
    margin: 0;
    flex: 0 1 auto;
    align-items: center;
  }

  .menu > li {
    float: left;
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
  }

  .menu > li > a {
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    height: var(--header-h);
    line-height: var(--header-h);
    white-space: nowrap;
    position: relative;
  }

  .menu > li > a::after {
    display: none;
  }

  .menu > li.active > a {
    color: var(--text-primary);
  }

  .menu > li.active > a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transform: none;
    border: none;
    width: auto;
  }

  .menu > li > a:hover {
    color: var(--accent);
  }

  /* Desktop dropdowns */
  .menu .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 16px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
  }

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

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

  .dropdown-menu li {
    margin: 0 0 4px;
  }

  .dropdown-menu li a {
    padding: 6px 0;
    font-size: 13px;
  }

  .dropdown-menu .drop-title {
    font-size: 12px;
    padding: 12px 0 6px;
  }

  .second-menu {
    min-width: 260px;
  }

  .third-menu {
    width: 580px;
    padding: 20px 24px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
  }

  .menu > li:hover .third-menu {
    transform: translateX(-50%) translateY(0);
  }

  .third-menu > li.column {
    float: left;
    width: 140px;
    margin: 0 24px 0 0;
  }

  .third-menu > li.column2 {
    width: 380px;
  }

  .third-menu > li.column2 > ul > li {
    float: left;
    width: 170px;
    margin: 0 20px 0 0;
  }

  .third-menu > li.column2 li:first-child {
    margin-right: 20px;
  }

  /* Slider desktop */
  .slider {
    height: 480px;
    min-height: auto;
  }

  .slider-img {
    height: 480px;
  }

  .slider-content {
    left: 40px;
    bottom: 120px;
  }

  .slider-content li p {
    font-size: 32px;
    max-width: 600px;
  }

  /* Layout inside pages */
  aside {
    float: right;
    width: 300px;
    margin-bottom: 0;
  }

  section.left-bl {
    margin-right: 330px;
  }

  .contact-us-bl .wrapper-content {
    position: relative;
  }

  .contact-map {
    height: 360px;
  }

  .contact-list {
    margin-right: 460px;
  }

  .transport-help {
    float: right;
    width: 440px;
  }

  .contact-form {
    float: right;
    width: 420px;
  }

  .contact-list {
    margin-right: 0;
  }

  .clients-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ===================================================================
   WIDE DESKTOP (≥1280px)
   =================================================================== */
@media (min-width: 1280px) {
  .slider {
    height: 520px;
  }

  .slider-img {
    height: 520px;
  }

  .slider-content li p {
    font-size: 36px;
    max-width: 700px;
  }

  aside {
    width: 336px;
  }

  section.left-bl {
    margin-right: 366px;
  }
}

/* ===================================================================
   UTILITY
   =================================================================== */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* Touch-friendly scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Selection */
::selection {
  background: var(--accent);
  color: #fff;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
