/* Full CSS for Services Page */

/* Global Styles */
body {
  margin: 0;
  background: #0E0E0E;
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Offset main content for fixed header */
main {
  margin-top: 80px;
  text-align: center;
}

/* Header */
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;
}

.logo {
  color: #2EC5B6;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  width: 100px;
  height: auto;
  max-width: 100%;
  max-height: 54px;
}

/* Main nav */
nav.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.main-nav li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.85rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav.main-nav li a:hover {
  color: #2EC5B6;
  text-shadow: 0 0 6px rgba(46, 197, 182, 0.6);
}

.main-nav a.active {
  color: #00aced;
  border-bottom: 2px solid #00aced;
}

/* Header underline gradient */
.logistx-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #6C3BAA, #2EC5B6);
}

/* Welcome Section */
#welcome-section .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

#welcome-section h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#welcome-section p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ddd;
}

/* Services Section */
#one .inner {
  width: 100%;
  max-width: 900px; /* Ensures content is centered with a max width */
  margin: 0 auto;
  padding: 2rem; /* Adds spacing around content */
}

#one h1.section-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#one p.intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ddd;
}

.service-block {
  margin-bottom: 2rem; /* Space between service blocks */
}

.service-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #FFD700;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

.why-choose {
  margin-top: 2rem;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  font-size: 1.1rem;
  color: #ddd;
}

/* Get in Touch CTA */
#three {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  color: #FFD700;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px; /* Expand vertically */
}

.cta-block {
  background-color: transparent; /* No background box around text */
  padding: 40px 20px; /* Ensure padding */
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-text {
  font-size: 1.2rem;
  color: #FFD700; /* Gold color for text */
  font-weight: bold;
  margin-bottom: 20px; /* Adjust for spacing */
  line-height: 1.6;
}

/* Hotshot Section */
#two .spotlight {
  display: flex;
  flex-direction: row; /* Align content horizontally */
  justify-content: flex-start; /* Align both image and text to the left */
  align-items: center; /* Vertically center the content */
  gap: 2rem; /* Space between image and text */
  padding: 2rem;
}

#two .spotlight .image {
  flex: 0 0 auto;  /* Image takes its natural size */
  max-width: 40%; /* Set the max-width to 40% for the image */
}

#two .spotlight .image img {
  width: auto; /* Maintain the original width of the image */
  height: auto; /* Ensure the image maintains its natural height */
  max-width: 100%; /* Prevent the image from overflowing the container */
}

#two .spotlight .content {
  flex: 1; /* Content takes up the remaining space */
  max-width: 60%; /* Limit the max width of the content */
  text-align: left; /* Left-align the text */
}

#two .spotlight .content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

#two .spotlight .content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Footer */
#footer {
  padding: 6em 0 4em 0;
  background-color: #1d242a;
  text-align: center;
}

#footer .icons {
  font-size: 1.25em;
}

#footer .icons a {
  color: rgba(255, 255, 255, 0.5);
}

#footer .icons a:hover {
  color: #fff;
}

#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;
}

#footer .copyright li a {
  color: inherit;
}

#footer .copyright li a:hover {
  color: #fff;
}

@media screen and (max-width: 980px) {
  #footer {
    padding: 4em 3em 2em 3em;
  }
}

@media screen and (max-width: 736px) {
  #footer {
    padding: 3em 2em 1em 2em;
  }
}

/* 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;
}

#cookie-banner a {
  color: #00bfa5;
  text-decoration: underline;
}

#cookie-banner button {
  margin-left: 12px;
  background: #00bfa5;
  border: none;
  color: #000;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}

#cookie-banner button:hover {
  background: #03e2c6;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  #cookie-banner {
    font-size: 13px;
    padding: 14px;
  }

  #cookie-banner button {
    display: block;
    margin: 10px auto 0 auto;
  }
}
