:root {
  --main-color: #0062c6;
  --main-color-dark: #004d9b;
  --main-color-light: #0056b3;
  --manga-red: #d72821;
  --tracking-navy: #003366;
  --tracking-navy-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.5;
  color: #333;
}

.globe-ship-page {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.globe-ship-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
  padding: 15px 0 16px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section .logo-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
}

.logo-image {
  height: 100%;
  width: auto;
}

.shopping-button {
  background-color: var(--main-color-light);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.shopping-button:hover {
  background-color: var(--main-color-dark);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 598px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    130.75deg,
    rgba(26, 58, 94, 1) 0%,
    rgba(44, 95, 141, 1) 100%
  );
  opacity: 0.5;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 40px;
  gap: 30px;
}

.hero-description {
  max-width: 1150px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-description p {
  line-height: 3;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #f4f4f4;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
  margin-bottom: 40px;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

/* Tracking Card */
.tracking-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 100%;
  margin: 0;
}

.tracking-card .card-title {
  color: #1e293b;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.search-box {
  display: flex;
  gap: 12px;
}

.tracking-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}

.tracking-input:focus {
  border-color: var(--tracking-navy);
}

.track-button {
  background-color: var(--tracking-navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.track-button:hover:not(:disabled) {
  background-color: var(--tracking-navy-dark);
}

.track-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Features Section */
.features-section {
  padding: 60px 20px;
  background: #fff;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--main-color-light);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24.45px;
  justify-items: center;
}

.feature-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 1.5px 7.5px 0px rgba(0, 0, 0, 0.05);
  padding: 22.25px;
  width: 100%;
  max-width: 272px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.feature-icon {
  width: 37px;
  height: 37px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-title {
  font-size: 14.25px;
  font-weight: 700;
  color: #1a3a5e;
  margin: 0;
  line-height: 1.2;
}

.feature-description {
  font-size: 11px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Footer Styles */
.globe-ship-footer {
  background-color: #fff;
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin:0 20px 60px 20px;
}

.footer-logo-image {
  height: 40px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-link {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--main-color-light);
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .hero-description {
    font-size: 16px;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .hero-content {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }
  .shopping-button {
    width: 100%;
  }
  .hero-section {
    min-height: 500px;
  }
  .hero-content-wrapper {
    padding: 40px 20px 30px;
    gap: 20px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .tracking-card {
    padding: 20px;
  }
  .search-box {
    flex-direction: column;
  }
  .track-button {
    padding: 12px;
  }
  .features-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links {
    gap: 20px;
  }
}
