/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Titillium Web', Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

/* LOGO IMAGE */
.logo-container {
  padding: 1.5rem 1rem;
  text-align: center;
}

.fed-logo {
  width: 150px;
  max-width: 80%;
}

/* HEADER IMAGE */
.image-header img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* HERO SECTION */
.hero {
  background: url("images/fed-bg.jpg") no-repeat center center/cover;
  height: 450px;
  position: relative;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 2rem;
  font-weight: bold;
}

/* SERVICE ICONS */
.hero-service-icons img {
  width: 100%;
  max-width: 450px;
  margin-top: 1rem;
}

/* TRACKING FORM */
.tracking-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.tracking-input {
  padding: 12px 16px;
  font-size: 16px;
  width: 300px;
  max-width: 90vw;
  border: none;
  outline: none;
  font-family: 'Titillium Web', Arial, sans-serif;
}

.fedex-track-button {
  padding: 12px 20px;
  background-color: #ff5000;
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Titillium Web', Arial, sans-serif;
}

.fedex-track-button:hover {
  background-color: #e54300;
}

/* FOOTER IMAGE */
.track-footer {
  background-color: #f8f8f8;
  padding: 2rem;
  text-align: center;
}

.track-footer img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

/* TRACKING DETAIL PAGE */
.tracking-detail-page {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  font-family: 'Titillium Web', Arial, sans-serif;
}

.tracking-progress {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding-left: 2rem;
  border-left: 3px solid #ddd;
}

.tracking-block {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 2.5rem;
}

.dot {
  width: 14px;
  height: 14px;
  background: #4d148c;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 5px;
}

.gray-dot {
  background: #aaa;
}

.circle-arrow {
  width: 28px;
  height: 28px;
  background: #4d148c;
  border-radius: 50%;
  position: absolute;
  left: -37px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.tracking-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.tracking-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.light {
  color: #555;
}

.italic {
  font-style: italic;
}

.details-link {
  color: #4d148c;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
}

.gray-text {
  color: #999 !important;
}