/* =========================================
   01 — PAGE WRAPPER
========================================= */

#gtrip-customer {
  background: #f3f4f6;
  padding: 48px 0 80px;
}

#gtrip-customer .gtrip-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}


/* =========================================
   02 — MAIN LAYOUT (1 COLUMN)
========================================= */

.customer-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


/* =========================================
   03 — SUMMARY CARD (STICKY TOP)
========================================= */

.summary-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e5e7eb;

  position: sticky;
  top: 24px;
  z-index: 10;
}


/* =========================================
   04 — SUMMARY ROWS
========================================= */

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.4;
}

.summary-row span {
  color: #6b7280;
  font-size: 13px;
}

.summary-row strong {
  font-weight: 600;
  text-align: right;
}


/* Return Date */

.summary-return-date {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}


/* =========================================
   05 — VEHICLE SECTION
========================================= */

#summary-vehicles {
  margin-top: 14px;
}

#summary-vehicles .vehicle-card {
  width: 100%;
  box-sizing: border-box;

  background: #f9fafb;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
}


/* Vehicle Brand */

#summary-vehicles .vehicle-brand {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0;
}


/* Vehicle Model */

#summary-vehicles .vehicle-model {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
}


/* Vehicle Meta */

#summary-vehicles .vehicle-meta {
  font-size: 13px;
  color: #6b7280;
}

#summary-vehicles .quantity {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}


/* =========================================
   06 — TOTAL + EDIT
========================================= */

.summary-total {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  font-size: 18px;
  font-weight: 700;
}

.edit-booking-link {
  margin-top: 8px;
  font-size: 14px;
}

.edit-booking-link a {
  color: #2ec4b6;
  text-decoration: none;
  font-weight: 500;
}

.edit-booking-link a:hover {
  text-decoration: underline;
}


/* =========================================
   07 — FORM SECTION
========================================= */

.form-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  border: 1px solid #e5e7eb;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}


/* =========================================
   08 — FORM GRID
========================================= */

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}


/* =========================================
   09 — INPUT STYLE
========================================= */

input,
select,
textarea {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid #e5e5e5;
  font-size: 15px;
  background: #ffffff;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

textarea {
  height: 110px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2ec4b6;
  box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
}


/* =========================================
   10 — BUTTON
========================================= */

.gtrip-submit-btn {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  border: none;
  background: #2ec4b6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  margin-top: 8px;
}

.gtrip-submit-btn:hover {
  background: #25b2a4;
}

.gtrip-submit-btn:active {
  transform: scale(0.98);
}


/* =========================================
   11 — MOBILE
========================================= */

@media (max-width: 768px) {

  #gtrip-customer {
    padding: 36px 0 70px;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .summary-card,
  .form-section {
    padding: 18px;
  }

  input,
  select {
    font-size: 16px; /* prevent iOS zoom */
  }
}

/* ===============================
   PASSENGER TOGGLE
================================= */
.passenger-toggle {
  margin: 16px 0 8px;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.toggle-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ===============================
   CONTACT APPS SECTION
================================= */
.contact-apps {
  margin-top: 8px;
}

.contact-label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

