/* CONTACT US CSS */

/* ── Contact Us layout ── */
.contact-form-section {
  padding: 0 0 60px;
}
.contact-card {
  display: flex;
  box-shadow: 0 4px 24px rgba(5, 41, 112, 0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}

/* ── Left: info panel (mirrors operator-details bg) ── */
.contact-info-panel {
  background-color: #ff8400;
  color: #fff;
  padding: 3rem 2.5rem;
}
@media (max-width: 64em) {
  .contact-card {
    flex-direction: column;
  }
}
.contact-info-panel h2 {
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  line-height: 1.2;
}
.contact-info-panel .contact-info-subtitle {
  font-size: 0.95rem;
  opacity: 0.88;
  margin-bottom: 2.5rem;
}
.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.6rem;
}
.contact-info-list li:last-child {
  margin-bottom: 0;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-list .info-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2px;
}
.contact-info-list a,
.contact-info-list span {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
}
.contact-info-list a:hover {
  text-decoration: underline;
}
.contact-info-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin: 2rem 0;
}

/* ── Right: form panel ── */
.contact-form-panel {
  background-color: #fff;
  padding: 3rem 2.5rem;
  width: 100%;
}
.contact-form-panel h3 {
  color: #052970;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.contact-form-panel .form-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-form-panel .form-row .form-group {
  flex: 1 1 200px;
}
.contact-form-panel .form-group {
  margin-bottom: 18px;
}
.contact-form-panel label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #052970;
  margin-bottom: 6px;
}
.contact-form-panel .form-control {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 0.95rem;
  border: 1.5px solid #dde3ef;
  border-radius: 3px;
  background-color: #f7f9fc;
  color: #222;
  box-sizing: border-box;
  transition:
    border-color 0.2s,
    background-color 0.2s;
  font-family: inherit;
}
.contact-form-panel .form-control:focus {
  outline: none;
  border-color: #0033a1;
  background-color: #fff;
}
.contact-form-panel textarea.form-control {
  resize: vertical;
}
.contact-form-panel #submitBtn {
  margin-top: 6px;
}
.contact-form-panel #submitBtn .button--branded {
  padding: 13px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}

/* ── Alerts ── */
.alert-message {
  padding: 12px 16px;
  border-radius: 3px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 0.92rem;
}
.error-message {
  background-color: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6c4;
}
.sent-message {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
/* CONTACT CSS END */

ul {
  list-style: none;
}

#parcels-head ul {
  background-color: #ff5f2a; /* Bootstrap primary color */
  border-radius: 0.25rem;
}

/* Define static column widths */
.column-width {
  width: 14%; /* Adjust width as needed */
}

.border-right {
  border-right: 1px solid #ddd;
}

.border {
  border: 1px solid #ddd;
}

.list-inline-item {
  padding: 10px;
  box-sizing: border-box; /* Ensure padding is included in width */
}

/* Adjust text alignment for better readability */
.text-center {
  text-align: center;
}

#all-parcels ul {
  border-bottom: 1px solid #dee2e6; /* Subtle separator for each row */
}

#all-parcels ul:last-child {
  border-bottom: none; /* Remove the last border */
}

.btn i {
  margin-right: 8px; /* Space between icon and text */
}

/* RECEIPT GENERATOR */
.receipt-container {
  width: 600px;
  height: 1050px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header img {
  width: 70%;
  max-width: 400px;
}
.company-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.company-info div {
  font-size: 14px;
}
.bordered-table {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
}
.bordered-table table {
  width: 100%;
  border-collapse: collapse;
}
.bordered-table table th,
.bordered-table table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.bordered-table h5 {
  background-color: #03123b;
  color: white;
  padding: 10px;
  margin: -10px -10px 10px -10px;
}
.receipt-details p,
.footer p {
  margin: 5px 0;
}
.details-instructions {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
}
.details-instructions strong {
  display: block;
  background-color: #03123b;
  color: white;
  padding: 10px;
  margin: -10px -10px 10px -10px;
}
.payment-details {
  margin-bottom: 20px;
  text-align: right;
}
.payment-details table {
  width: 100%;
  border-collapse: collapse;
}
.payment-details table th,
.payment-details table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: right;
}
.thank-you {
  text-align: center;
}
.thank-you a {
  text-decoration: none;
  color: #007bff;
}
