* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Helvetica Neue', Arial, sans-serif; }

/* Top Bar */
.top-bar { background: #1abc9c; color: #fff; font-size: 13px; padding: 6px 0; }
.top-bar-container { display: flex; flex-direction: column; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.top-contact, .top-slogan { display: block; text-align: center; }
.top-slogan { font-weight: 500; margin-top: 2px; }

/* Main Header */
.site-header { position: sticky; top: 0; width: 100%; z-index: 999; background-color: #2c3e50; color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.main-header { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 15px 20px; flex-wrap: wrap; }
.logo img { height: 55px; }

/* Navigation */
.main-nav ul { display: flex; list-style: none; gap: 25px; flex-wrap: wrap; }
.main-nav a { color: #ecf0f1; text-decoration: none; font-weight: 600; transition: 0.3s; }
.main-nav a:hover { color: #1abc9c; transform: translateY(-2px); }
.nav-desc { display: block; font-size: 11px; font-weight: normal; color: #bdc3c7; margin-top: 2px; }

/* CTA */
.header-cta { margin-left: 20px; }
.btn-contact { background-color: #e74c3c; color: #fff; text-decoration: none; padding: 8px 16px; border-radius: 5px; font-weight: 600; transition: 0.3s; font-size: 14px; }
.btn-contact:hover { background-color: #c0392b; }

/* Mobile Menu */
.menu-toggle { display: none; background: none; border: none; font-size: 28px; color: #fff; cursor: pointer; margin-top: 10px; }

/* Responsive */
@media (max-width: 992px) {
  .main-nav ul { display: none; flex-direction: column; gap: 15px; background: #34495e; position: absolute; top: 100%; right: 0; width: 240px; padding: 20px; border-radius: 0 0 8px 8px; }
  .main-nav ul.active { display: flex; }
  .menu-toggle { display: block; }
  .header-cta { width: 100%; text-align: center; margin-top: 10px; }
  .top-bar-container { text-align: center; }
}
.logo-link {
  text-decoration: none;
  display: inline-block;
}

.logo-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff; /* базовий колір */
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Ефект при наведенні */
.logo-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background-color: #1abc9c; /* акцентний колір */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.logo-text:hover {
  color: #1abc9c; /* колір при наведенні */
  transform: translateY(-2px);
}

.logo-text:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Тінь для більшої помітності */
.logo-text {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Адаптивний розмір для мобільних */
@media (max-width: 992px) {
  .logo-text {
    font-size: 22px;
  }

  .btn-contact {
    display: none;
  }

  .main-header {
    flex-wrap: nowrap
  }
}

.site-footer {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #ecf0f1;
  background-color: #2c3e50;
}

/* Footer Top */
.footer-top { padding: 50px 20px; border-bottom: 1px solid #34495e; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; gap: 30px; }

/* Footer Blocks */
.footer-block h4 {
  font-size: 16px;
  color: #1abc9c;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-block p, .footer-block ul li { font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.footer-block a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}
.footer-block a:hover {
  color: #1abc9c;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.footer-block p {
  width: 350px;
}

/* Quick Links */
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { display: inline-block; position: relative; transition: color 0.3s, transform 0.3s; }
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #1abc9c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer-links a:hover { transform: translateX(2px); }

/* Footer Bottom */
.footer-bottom {
  background-color: #1a2a3b;
  padding: 20px;
  text-align: center;
  font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
  color: #1abc9c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, text-decoration 0.3s;
}
.footer-bottom a:hover {
  color: #e74c3c;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container { flex-direction: column; align-items: center; text-align: center; }
  .footer-links ul { align-items: center; justify-content: center; }
  .footer-links ul li { margin-bottom: 8px; }
}