/* body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
} */

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a2c4e;
  margin: 0;
  line-height: 1.3;
}

.hero .subtext {
  margin-top: 20px;
  font-size: 16px;
  color: #2f4a73;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 27px;

  }
}


/* ─────────── TWO-COLUMN MAIN LAYOUT ─────────── */
.form-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 900px;
  /* Slimmer width for tighter layout */
  margin: 7% auto;
  padding: 50px 20px;
}

.form-content {
  flex: 0 0 65%;
  /* Takes about 65% of space (left side) */
}

.price-summary {
  flex: 0 0 38%;
  /* Takes about 30% of space (right side) */
  display: none;
  /* hidden initially, shown by JS later */
}

.price-card {
  background: #F1F2F4;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.order-btn {
  font-family: 'Inter';
  background: rgba(12, 12, 37, 0.91);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(12, 12, 37, 0.48);
  text-decoration: none;
}

.order-btn:hover,
.order-btn:focus,
.order-btn:visited {
  text-decoration: none;

}

#order-btn

.support-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
}

/* ─────────── FORM LAYOUT ─────────── */
.form-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.form-group {
  flex: 1 1 48%;
  min-width: 320px;
}

.form-group label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  color: #1a2c4e;
}

input[type="text"],
select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

.pickup-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-message {
  display: none;
  position: absolute;
  top: -52px;
  left: 0;
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 6px;
  max-width: 320px;
  z-index: 10;
  white-space: normal;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.input-message::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #000;
}


/* ─────────── BUTTONS ─────────── */
#addStopBtn {
  background: none;
  border: none;
  color: #1a2c4e;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 0;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

#calculateBtn {
  background-color: #192334;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 15px;
}

#resetBtn {
  background: none;
  border: none;
  color: #1a2c4e;
  font-size: 15px;
  cursor: pointer;
}

/* ─────────── DROPDOWN STYLE ─────────── */
.custom-dropdown {
  margin-bottom: 12px;
  position: relative;
  width: 100%;
}

.dropdown {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.dropdown-selected {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 20px;
  background: #fff;
  box-sizing: border-box;
}

.dropdown-list {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  max-height: 250px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-option {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background-color: #f0f4ff;
}

.dropdown-option strong {
  display: block;
  font-size: 15px;
  color: #1a2c4e;
}

.dropdown-option small {
  display: block;
  font-size: 12px;
  color: #555;
}

/* ─────────── RESPONSIVE FALLBACK ─────────── */
@media (max-width: 992px) {
  .form-section {
    flex-direction: column;
  }

  .price-summary {
    /* margin-top: 40px; */
    flex: 1 1 auto;
  }

  .form-row {
    flex-wrap: wrap;
  }
}


.vehicle-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.vehicle-card {
  background-color: #F0F3F8;
  padding: 20px;
  border-radius: 16px;
  width: 25%;
  min-width: 280px;
  box-sizing: border-box;
}

.image-placeholder {
  width: 100%;
  height: 120px;
  background-color: #e0e0e0;
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: bold;
}

.vehicle-card h3 {
  font-size: 20px;
  color: #193153;
  margin-bottom: 10px;
  font-weight: 600;
}

.accordion-header {
  font-weight: 500;
  color: #1a2c4e;
  padding: 10px 0;
  cursor: pointer;
}



.accordion-body {
  display: none;
  padding: 0 0 10px 10px;
  color: #193153;
  font-size: 14px;
  font-weight: 300;
}

.accordion-body.show {
  display: block;
}

.more-btn-container {
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

.more-btn {
  background-color: #1a2c4e;
  color: white;
  padding: 15px 27px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
}



.more-btn:focus,
.more-btn:visited {
  text-decoration: none;

}


.image-placeholder {
  width: 100%;
  height: 120px;
  /* Set desired height */
  /* background-color: #e0e0e0; */
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* Or use 'cover' if you want it to fill completely */
  display: block;
}

.faq-section {
  max-width: 800px;
  margin: 13% auto;
  padding: 0 20px;
  font-family: sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 50px;
  color: #193153;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 50px;
  margin-top: 3%;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: left;
  font-size: 25px;
  font-weight: 400;
  color: #193153;
  cursor: pointer;
}

.faq-answer {
  margin-top: 15px;
  font-size: 16px;
  color: #193153d0;
  line-height: 1.7;
  display: none;
  font-weight: 300;
}

.faq-answer.show {
  display: block;
}

.faq-question .icon {
  font-size: 27px;
  font-weight: lighter;
  transition: transform 0.4s;
}


@media (max-width: 768px) {
  .faq-section h2 {
    text-align: center;
    font-size: 22px;

  }

  .faq-question {

    font-size: 15px;
    text-align: left;

  }

  .faq-question .icon {
    font-size: 17px;
    font-weight: lighter;
    transition: transform 0.4s;
  }
}