:root {
  --brand-blue: #003366;
  --accent-blue: #007acc;
  --light-blue: #eaf2ff;
}

/* Global */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f7f8fa;
  color: #222;
  margin: 0;
  padding: 0;
}

/* Headings */
h1 {
  text-align: center;
  color: var(--brand-blue);
  font-size: 1.4rem;
  margin: 1rem auto;
  padding: 0 0.5rem;
}

h2 {
  font-size: 1.2rem;
  color: var(--brand-blue);
  margin: 1rem 0 0.5rem 0;
}

/* Form */
.form-container {
  background: #fff;
  max-width: 420px;
  margin: auto;
  padding: 1rem 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
label {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
}
input, select, button {
  width: 100%;
  font-size: 1rem;
  padding: 0.65rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  appearance: none;
}
.trip-type {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
button {
  background: var(--accent-blue);
  color: #fff;
  border: none;
  font-weight: 600;
  margin-top: 1rem;
}
button:hover { background: #005fa3; }
button:active { background: #003e73; }

/* Results area */
.result-box {
  background: var(--light-blue);
  border-radius: 12px;
  margin: 1rem auto;
  padding: 1rem;
  max-width: 430px;
}
.aircraft-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-top: 1rem;
  text-align: center;
}
.aircraft-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  border-radius: 10px;
  object-fit: cover;
}
.aircraft-card h3 {
  color: var(--brand-blue);
  margin: 0.6rem 0;
  font-size: 1.05rem;
}
.aircraft-card p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}
button.quoteBtn {
  width: 100%;
  border-radius: 10px;
  background: var(--brand-blue);
  margin-top: 0.7rem;
}
.disclaimer {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.3rem;
  line-height: 1.2;
}

/* Map */
.map {
  width: 100%;
  height: 300px;
  max-width: 430px;
  margin: 1rem auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ccc;
}

/* Modal */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex; justify-content: center; align-items: flex-start;
  padding-top: 10%;
}
.modal-content {
  background: #fff;
  padding: 1.25rem;
  border-radius: 12px;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.modal-content label {
  font-size: 0.85rem;
  font-weight: 500;
}
.modal-content input {
  font-size: 0.9rem;
}
.modal-content button {
  width: 48%;
  font-size: 0.9rem;
  margin-top: 1rem;
}
@media (min-width:600px){
  h1 { font-size:1.8rem; }
  .form-container, .result-box, .map { max-width:600px; }
}
/* ----- Trip Type Toggle ----- */
.trip-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0.6rem;
  position: relative;
}
.trip-toggle input[type="radio"] {
  display: none;
}
.toggle-btn {
  flex: 1;
  text-align: center;
  background: #e1e7f0;
  color: #003366;
  padding: 0.6rem 0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  user-select: none;
  transition: all 0.2s ease;
  box-shadow: inset 0 0 0 1px #ccc;
}
.toggle-btn:hover {
  background: #d0e2fa;
}
.trip-toggle input[type="radio"]:checked + .toggle-btn {
  background: #007acc;
  color: #fff;
  box-shadow: none;
}

