.logo-container img {
  border-radius: 50%;
}

.contact-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item h4 {
  font-size: 11px;
  color: #999;
  margin-bottom: 3px;
}

.contact-item p {
  font-size: 13px;
  font-weight: bold;
}

/* Navigation */
nav {
  background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
  padding: 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li a {
  display: block;
  padding: 20px 25px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s;
}

nav li a:hover {
  background: rgba(0, 0, 0, 0.1);
}

nav li a.active {
  background: #3d4de8;
}

/* Main Content */
.main-content {
  padding: 60px 5%;
  background: #f8f9fa;
  min-height: 400px;
}

.track-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.track-form-section {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.track-form-section h2 {
  font-size: 18px;
  color: #999;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.track-btn {
  background: white;
  color: #e91e63;
  border: 2px solid #e91e63;
  padding: 12px 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}

.track-btn:hover {
  background: #e91e63;
  color: white;
}

.example-text {
  margin-top: 15px;
  color: #999;
  font-size: 14px;
}

.translate-badge {
  position: absolute;
  left: 20px;
  top: 320px;
  background: #ff9800;
  color: white;
  padding: 8px 15px;
  font-size: 12px;
  border-radius: 4px;
}

.delivery-image {
  text-align: center;
}

.delivery-image img {
  max-width: 100%;
  height: auto;
}

/* Newsletter Section */
.newsletter-section {
  background: white;
  padding: 50px 5%;
  margin: 0 5%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  top: -50px;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-text p {
  color: #999;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex: 1;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.subscribe-btn {
  background: #e91e63;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.3s;
}

.subscribe-btn:hover {
  background: #d81b60;
}

/* Footer */
footer {
  background: #1a1d3a;
  color: white;
  padding: 60px 5% 30px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  border-radius: 50%;
}

.footer-tagline {
  text-align: center;
  color: #999;
  margin-bottom: 50px;
  font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li:before {
  content: "≫";
  margin-right: 8px;
  color: #666;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #e91e63;
}

.quick-contact p {
  margin-bottom: 15px;
  color: #ccc;
  font-size: 14px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #999;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: #e91e63;
  color: #e91e63;
}

.copyright {
  text-align: center;
  color: #666;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-size: 13px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .track-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-content {
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-info {
    font-size: 12px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .translate-badge {
    top: 280px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .subscribe-btn {
    width: 100%;
  }
}
