/* Global Styles */
body {
  margin: 0;
  background: #0E0E0E;
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Header Styles */
header.logistx-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Contact Form Section */
#contact {
  margin-top: 80px;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: #1c1c1c;
  border-radius: 8px;
}

#contact h2 {
  color: #FFD700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#contact p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

form label {
  font-size: 1rem;
  font-weight: bold;
}

form input,
form textarea {
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  background: #1c1c1c;
  color: #fff;
}

form button {
  padding: 12px;
  background-color: #00b3b3;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1.2rem;
}

form button:hover {
  background-color: #008e8e;
}

/* Footer */
#footer {
  padding: 6em 0 4em 0;
  background-color: #1d242a;
  text-align: center;
}

#footer .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8em;
  letter-spacing: 0.225em;
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}

#footer .copyright li {
  border-left: solid 1px rgba(255, 255, 255, 0.5);
  display: inline-block;
  line-height: 1em;
  margin-left: 1em;
  padding-left: 1em;
}

#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

/* Cookie Consent Banner */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #eee;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  padding: 16px 22px;
  text-align: center;
  border-top: 1px solid #333;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: all 0.7s ease;
}

#cookie-banner.show {
  display: block;
  opacity: 1;
  bottom: 0;
}

@media (max-width: 600px) {
  #cookie-banner {
    font-size: 13px;
    padding: 14px;
  }

  #cookie-banner button {
    display: block;
    margin: 10px auto 0 auto;
  }
}
