/* ========== FINAL CSS: quote.css ========== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  padding: 1rem 2rem;
  color: #fff;
}

.navbar .logo a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
}

.nav-links li a:hover {
  background-color: #444;
  border-radius: 5px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  background: url('https://via.placeholder.com/1600x500') center/cover no-repeat;
  height: 300px;
}

.overlay {
  background-color: rgba(0,0,0,0.6);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  color: #fff;
  text-align: center;
}

.btn {
  background-color: #ff6600;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.location-group {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

button[type="submit"], #downloadPDF, #manualCalcBtn {
  background-color: #ff6600;
  color: #fff;
  cursor: pointer;
  border: none;
}

button:hover {
  background-color: #e65c00;
}

.map-instruction, .cta-panel {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta-button {
  background-color: #28a745;
  color: white;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 1.5rem;
}

.back-arrow {
  display: inline-block;
  margin: 20px;
  font-size: 1.2rem;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.back-arrow:hover {
  color: #0056b3;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #333;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
.suggestion-box {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  max-height: 180px;
  overflow-y: auto;
  z-index: 1000;
}
.suggestion {
  padding: 8px 12px;
  cursor: pointer;
}
.suggestion:hover {
  background: #f0f0f0;
}
.location-group {
  position: relative;
}

  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}/* ========== END OF CSS =