:root {
    --primary-color: #002233;
    --black-color: #000000;
    --primary-color-shade: #e6e9eb;
    --secondary-color: #1D5673;
    --secondary-hover: #5995B3;
    --accent-color: #88602D;
    --accent-hover: #ddbc93;
    --white: #ffffff;
}

body {
    background-color: #ffffff;
    /* Neutral background */
    color: var(--primary-color);
    /* Use primary color for text */
    line-height: 2.2em;
}



/* FORM INPUT PLACEHOLDER COLOR */
::placeholder {
    color: #D4D4D4 !important;
    font-weight: 100 !important;
}

/* BACK TO TOP ARROW  */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 9999;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
}

/* TOP-MOST BAR  */
.utility-bar {
  background-color: #000000;
  padding: 8px 0;
  font-size: 14px;
}

.utility-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-bar__contact {
  display: flex;
  gap: 20px;
}

.utility-bar__link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.utility-bar__link:hover {
  opacity: 0.8;
  color: #ffffff;
}

.utility-bar__social {
  display: flex;
  gap: 15px;
}

.utility-bar__social-link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.utility-bar__social-link:hover {
  opacity: 0.8;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .utility-bar {
    display: none; /* Hide on mobile by default */
  }
  
  /* Alternative mobile styling:
  .utility-bar__content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .utility-bar__contact {
    flex-direction: column;
    gap: 5px;
  } */
}