* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fff;
  color: #000;
}

/* NAVBAR */

.navbar {
  background: #000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  font-size: 15px;
  align-items: center;
}

.nav-right {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
}

.signup {
  background: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

/* CENTER CONTENT LIKE UBER */

.subnav,
.hero {
  max-width: 1200px;
  margin: auto;
}

/* SUB NAV */

.subnav {
display: flex;
  justify-content: space-between;
  padding: 22px 20px;
  border-bottom: 1px solid #eee;
}

.subnav-left {
  font-size: 26px;
  font-weight: 600;
}

.subnav-right {
  display: flex;
  gap: 28px;
  color: #555;
  font-size: 14px;
}

/* HERO */

.hero {
  display: flex;
  justify-content: space-between;
  padding: 60px 20px;
  align-items: center;
  gap: 60px;
}

/* LEFT */

.hero-left {
  max-width: 500px;
  margin-left: 15px;
}

.location {
  color: #555;
  margin-bottom: 15px;
}

.location span {
  text-decoration: underline;
  margin-left: 8px;
  cursor: pointer;
}

.hero-left h1 {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.offer {
  color: #333;
  margin-bottom: 25px;
}

.offer small {
  color: #666;
}

.pickup-now {
  background: #eee;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 18px;
  cursor: pointer;
}

/* INPUT BOXES */

.input-box {
  display: flex;
  align-items: center;
  background: #f3f3f3;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.input-box input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 2px solid black;
  border-radius: 50%;
  margin-right: 12px;
}

.square {
  width: 10px;
  height: 10px;
  background: black;
  margin-right: 12px;
}

.arrow {
  font-size: 14px;
}

/* PRICE BUTTON */

.price-btn {
  margin-top: 10px;
  background: #000;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

/* RIGHT IMAGE */

.hero-right img {
  width: 480px;
  border-radius: 18px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 40px;
  }

  .hero-right img {
    width: 100%;
  }

.hero-right img {
  width: 520px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* DROPDOWN */

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  background: #fff;
  list-style: none;      /* ❌ removes bullets */
  padding: 8px 0;
  margin: 0;
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  display: none;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.dropdown-menu li:hover {
  background: #f5f5f5;
}

.dropbtn {
  background: transparent;
  border: none;
  color: white;
  font-size: 15px;
  cursor: pointer;
}

}