/* ─────────────────────────────────────────
   Variables & Reset
───────────────────────────────────────── */
:root {
  --blue-primary:  #000083;
  --blue-dark:     #000060;
  --blue-link:     #2979d0;
  --blue-topbar:   #000083;
  --text:          #656565;
  --bg-gray:       #f5f5f5;
  --max-w:         1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Droid Sans', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
}

a { color: var(--blue-link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─────────────────────────────────────────
   Top bar
───────────────────────────────────────── */
.topbar {
  background: var(--blue-topbar);
  color: #fff;
  padding: 7px 0;
  font-size: 12px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-email,
.topbar-phone {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-email svg,
.topbar-phone svg { flex-shrink: 0; }

.lang-switcher {
  background: var(--blue-dark);
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .5px;
  user-select: none;
}

/* ─────────────────────────────────────────
   Header
───────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-primary);
  flex-shrink: 0;
  line-height: 1;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.logo-text strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
  letter-spacing: -.5px;
}

.logo-text span {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 3px;
  letter-spacing: .3px;
}

/* Nav */
#main-nav .nav-list {
  list-style: none;
  display: flex;
  align-items: stretch;
}

#main-nav .nav-list > li > a {
  display: block;
  padding: 10px 14px;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}

#main-nav .nav-list > li > a:hover { color: var(--blue-primary); }

/* Dropdowns */
.has-drop { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #dde;
  min-width: 200px;
  z-index: 900;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.dropdown-nested {
  top: 0;
  left: 100%;
}

.dropdown li a {
  display: block;
  padding: 8px 15px;
  color: #444;
  font-size: 12px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s;
}

.dropdown li a:hover {
  background: #e8f0fb;
  color: var(--blue-primary);
}

.has-drop:hover > .dropdown { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--blue-primary);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* ─────────────────────────────────────────
   Hero Slider
───────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 371px;
  overflow: hidden;
  background: var(--blue-dark);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  transition: opacity .85s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Halftone / dot pattern — two layered backgrounds:
   1. repeating dot grid  2. radial gradient glow */
.dot-bg {
  background:
    radial-gradient(circle, rgba(255,255,255,.22) 2px, transparent 2px) 0 0 / 20px 20px,
    radial-gradient(ellipse at 40% 50%, #1a1ac8 0%, #000075 42%, #00004a 100%);
}

.slide-side {
  width: 16%;
  flex-shrink: 0;
}

.slide-center {
  width: 58%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

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

/* Caption panel */
.slide-caption-panel {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 38px 28px;
}

.slide-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 1px 2px 5px rgba(0,0,0,.45);
}

/* Placeholder machinery images */
.mock-green {
  background:
    linear-gradient(160deg, #0d2b0d 0%, #1a4a1a 30%, #2a6a2a 55%, #1a4a1a 80%, #0d2b0d 100%);
}

.mock-silver {
  background:
    linear-gradient(160deg, #5a6270 0%, #8090a0 30%, #b0bcc8 55%, #8090a0 80%, #5a6270 100%);
}

.mock-gray {
  background:
    linear-gradient(160deg, #7a8090 0%, #9aaab8 30%, #c8d4dc 55%, #9aaab8 80%, #7a8090 100%);
}

/* Slider navigation dots */
.slider-dots {
  position: absolute;
  bottom: 14px;
  right: calc(16% + 10px);
  display: flex;
  gap: 7px;
  z-index: 20;
}

.sdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.3);
  cursor: pointer;
  padding: 0;
  transition: background .25s;
}

.sdot.active { background: #fff; }

/* ─────────────────────────────────────────
   Company banner
───────────────────────────────────────── */
.company-banner {
  background: var(--bg-gray);
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  padding: 16px 20px;
  text-align: center;
}

.company-banner p {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  letter-spacing: .2px;
}

/* ─────────────────────────────────────────
   Main content
───────────────────────────────────────── */
.main-content {
  padding: 40px 0 60px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product/service column photos */
.content-img {
  width: 285px;
  height: 190px;
  margin-bottom: 20px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-products {
  background: linear-gradient(145deg, #1a3a5c 0%, #2055a0 45%, #1a3a5c 100%);
}

.img-services {
  background: linear-gradient(145deg, #1a2a3a 0%, #2a4a6a 45%, #1a2a3a 100%);
}

.col-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 10px;
}

.content-col > p {
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.65;
}

.sub-heading {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-top: 16px;
  margin-bottom: 7px;
}

.link-list {
  list-style: none;
  margin-bottom: 6px;
}

.link-list li {
  padding: 2px 0;
  color: var(--blue-link);
}

.link-list li::before {
  content: "• ";
  color: var(--blue-link);
}

.link-list li a {
  color: var(--blue-link);
  font-size: 13px;
}

.link-list li a:hover { text-decoration: underline; }

/* Secondhand machinery block */
.secondhand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

.secondhand-img {
  width: 285px;
  height: 190px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-secondhand {
  background: linear-gradient(145deg, #c8b870 0%, #e8d890 45%, #c8b870 100%);
}

.secondhand-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.2;
}

.secondhand-body p {
  font-size: 13px;
  color: var(--text);
}

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #000070 0%, #000055 100%);
  color: #b0b8c8;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 36px;
}

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

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

.footer-logo-text strong {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1;
  display: block;
}

.footer-logo-text sup {
  font-size: 11px;
  vertical-align: super;
}

.footer-logo-text span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin-top: 3px;
  letter-spacing: .02em;
}

.footer-col > p {
  font-size: 12px;
  line-height: 1.75;
  color: #a0acc0;
  margin-bottom: 18px;
}

/* EU badge */
.eu-badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  background: rgba(255,255,255,.04);
}

.eu-flag {
  width: 48px;
  background: #003399;
  color: #ffcc00;
  font-size: 7px;
  text-align: center;
  padding: 6px 4px;
  line-height: 1.3;
  flex-shrink: 0;
  border-radius: 1px;
  letter-spacing: 2px;
}

.eu-text {
  font-size: 11px;
  color: #8898b8;
  line-height: 1.6;
  margin: 0 !important;
}

/* Footer contact column */
.footer-contact-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-map {
  width: 100%;
  height: 108px;
  background: #c0c8d0;
  border-radius: 2px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.footer-map::after {
  content: "📍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
}

.footer-phone {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.footer-col a {
  color: #a0acc0;
  font-size: 12px;
}

.footer-col a:hover { color: #fff; }

.footer-col .footer-address {
  font-size: 12px;
  color: #a0acc0;
  margin-top: 5px;
  line-height: 1.6;
}

/* Social buttons */
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s;
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(255,255,255,.25);
  text-decoration: none;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 20px;
  text-align: center;
  font-size: 11px;
  color: #6878a0;
}

.footer-bottom a {
  color: #6878a0;
}

.footer-bottom a:hover { color: #fff; text-decoration: underline; }

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 900px) {
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .hamburger { display: block; }

  #main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #dde;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    z-index: 999;
  }

  #main-nav.open { display: block; }

  #main-nav .nav-list {
    flex-direction: column;
  }

  #main-nav .nav-list > li > a {
    border-bottom: 1px solid #eee;
    padding: 12px 18px;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid #eee;
    background: #f8f9fb;
    padding-left: 18px;
  }

  .dropdown-nested {
    left: 0;
  }

  .hero-slider { height: 240px; }
  .slide-text { font-size: 15px; }

  .site-header { position: relative; }
}

@media (max-width: 480px) {
  .topbar-left { flex-direction: column; gap: 4px; align-items: flex-start; }
  .hero-slider { height: 200px; }
  .slide-text { font-size: 13px; }
  .slide-side { width: 12%; }
  .slide-center { width: 54%; }
}
