* {
  padding: 0;
  margin: 0;
  font-family: cabin;
}

body {
  font-family: jost;
  padding: 0;
  margin: 0;
}

/* TOP BAR */
.top-bar {
    background: #000;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}


/* NAVBAR */

/* Smooth hover background effect */

header.navbar {
    position: relative;
    z-index: 10;
}

/* Sliding background layer */
header.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #ffffff;
    z-index: -1;
    transition: height 0.4s ease-in-out;
}

/* Hover: slide background down */
header.navbar:hover::before {
    height: 100%;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.nav-left a {
    margin-right: 22px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-center img {
    height: 38px;
}

.nav-right i {
    font-size: 18px;
    margin-left: 18px;
    cursor: pointer;
}
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown menu box */
.dropdown-menu,
.dropdown-menu-learn {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 20;
}

.dropdown-menu-learn{
  min-width: 350px;
}

/* Dropdown menu links */
.dropdown-menu a,
.dropdown-menu-learn a {
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  display: block;
  transition: 0.3s ease;
  margin: 0;
}

.dropdown-menu a:hover,
.dropdown-menu-learn a:hover {
  background: #f5f5f5;
  color: #d3a257; /* gold color */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-menu-learn {
  display: flex;
}

/* Make SHOP look active when opened */
.dropdown:hover > .dropbtn {
  color: #d3a257;
}

/* CONTACT US FORM */
.main-div{
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 60%;
  margin-top: 80px;
  
}

/* Main container */
.tracking-container {
  background: white;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin: 40px auto;
}

/* 3-column grid */
.tracking-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

/* Form spacing */
.tracking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Label */
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: #111;
}

/* Input field */
.form-group input {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: 0.2s;
}

.form-group input:focus {
  border-color: #111;
}

/* Input with icon */
.input-wrapper {
  position: relative;
}

.input-wrapper input {
  padding-right: 40px;
}

.icon-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  color: #9ca3af;
  cursor: pointer;
  transition: 0.2s;
}

.icon-btn:hover {
  color: #4b5563;
}

/* Black button */
.btn-black {
  width: 100%;
  height: 48px;
  background: black;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-black:hover {
  background: #333;
}

/* Divider */
.divider {
  text-align: center;
  color: #000000;
  padding-top: 70px;
  font-size: 16px;
}

/* Spacer to align forms */
.spacer {
  height: 88px;
}


/* FOOTER */
.footer {
    background: transparent;
    padding: 60px 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #222;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
    width: 260px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
}

.currency {
    margin-bottom: 10px;
    cursor: pointer;
}

.social-icons a {
    font-size: 24px;
    color: #000;
    margin: 0 10px;
}

.copy {
    margin: 15px 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .tracking-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .divider {
    padding-top: 0;
  }

  .spacer {
    height: 0;
  }
}
