/* ==========================================================================
   SHIPPING & LOGISTICS DOCUMENTATION PAGE ARCHITECTURE
   ========================================================================== */
.tb-shipping-page-wrapper {
  background-color: #f8fafc;
}

/* Intro Layout */
.tb-shipping-intro {
  padding: 60px 0 30px 0;
}

.tb-shipping-intro h2 {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 30px;
  font-weight: 700;
}

.tb-shipping-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tb-logistics-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-top: 4px solid #cbd5e1;
}

.tb-logistics-card.pickup-accent {
  border-top-color: #ffb703;
}
.tb-logistics-card.freight-accent {
  border-top-color: #446084;
}

.tb-logistics-card h3 {
  font-size: 20px;
  margin: 15px 0 10px 0;
  color: #1e293b;
}

.tb-logistics-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.pickup-address-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f1f5f9;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #446084;
}

/* Specifications Data Section */
.tb-shipping-specs-section {
  padding: 40px 0;
}

.tb-section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.tb-section-header-center h2 {
  font-size: 28px;
  color: #1e293b;
  font-weight: 700;
}
.tb-section-header-center p {
  color: #64748b;
  font-size: 16px;
}

.tb-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.tb-spec-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.tb-spec-block h3 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 8px;
}

.tb-custom-bullet-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.tb-custom-bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.tb-custom-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #446084;
  font-size: 18px;
  top: -2px;
}

.tb-terminal-alert-box {
  background-color: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 20px 25px;
  border-radius: 0 6px 6px 0;
}

.tb-terminal-alert-box h4 {
  margin: 0 0 6px 0;
  color: #1d4ed8;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tb-terminal-alert-box p {
  margin: 0;
  color: #1e40af;
  font-size: 14px;
  line-height: 1.6;
}

/* Red Alert Freight Damage Board */
.tb-shipping-damages-alert {
  padding: 40px 0;
}

.tb-damage-card-wrapper {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #fee2e2;
}

.damage-alert-banner {
  background-color: #dc2626;
  padding: 15px 30px;
  color: #ffffff;
}

.damage-alert-banner h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.damage-card-body {
  padding: 40px;
}
.highlight-warning {
  font-size: 18px;
  font-weight: 700;
  color: #991b1b;
  margin-bottom: 30px;
  line-height: 1.5;
}

.damage-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 35px;
}

.d-step {
  background-color: #fff5f5;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid #fca5a5;
  position: relative;
}

.d-num {
  font-size: 36px;
  font-weight: 800;
  color: rgba(220, 38, 38, 0.15);
  position: absolute;
  top: 10px;
  right: 15px;
}

.d-step h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #991b1b;
  font-weight: 700;
}
.d-step p {
  margin: 0;
  font-size: 14px;
  color: #7f1d1d;
  line-height: 1.6;
}

.damage-liability-notice {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: 6px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* Tracking Timeline Milestones */
.tb-tracking-milestones {
  padding: 40px 0 60px 0;
}

.tb-milestones-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  background: #446084;
  padding: 40px;
  border-radius: 8px;
  color: #ffffff;
}

.milestone-item {
  text-align: center;
  position: relative;
}
.m-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffb703;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px auto;
}

.milestone-item h4 {
  color: #ffffff !important;
  font-size: 18px !important;
  margin: 0 0 8px 0;
}
.milestone-item p {
  color: #e2e8f0 !important;
  font-size: 14px !important;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   DUAL FORMS MODULE SPLIT & CONTRAST TUNING
   ========================================================================== */
.tb-shipping-dual-forms {
  padding: 60px 0;
  background-color: #ffffff;
}

.tb-forms-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tb-form-block-wrapper {
  background-color: #f8fafc;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.tb-form-block-wrapper h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  color: #1e293b !important;
}

.tb-form-block-wrapper p {
  margin: 0 0 25px 0;
  color: #64748b !important;
  line-height: 1.5;
}

.tb-form-block-wrapper p a {
  color: #446084;
  text-decoration: none;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   HIGH-CONTRAST NEWSLETTER PANEL OVERRIDES
   -------------------------------------------------------------------------- */
.tb-form-block-wrapper.newsletter-dark-bg {
  background-color: #1e293b !important;
  border-color: #0f172a !important;
}

/* Force text visibility */
.tb-form-block-wrapper.newsletter-dark-bg h3 {
  color: #ffffff !important;
}

.tb-form-block-wrapper.newsletter-dark-bg p {
  color: #cbd5e1 !important; /* Brighter slate for clean reading */
}

/* Input text values & box styles inside dark panel */
.tb-form-block-wrapper.newsletter-dark-bg input[type="text"],
.tb-form-block-wrapper.newsletter-dark-bg input[type="email"],
.tb-form-block-wrapper.newsletter-dark-bg textarea {
  background-color: #0f172a !important;
  border: 1px solid #334155 !important;
  color: #ffffff !important;
}

.tb-form-block-wrapper.newsletter-dark-bg input:focus,
.tb-form-block-wrapper.newsletter-dark-bg textarea:focus {
  border-color: #ffb703 !important; /* Highlights yellow accent on selection */
  outline: none;
}

/* Input placeholder styling rules for cross-browser contrast */
.tb-form-block-wrapper.newsletter-dark-bg input::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}
.tb-form-block-wrapper.newsletter-dark-bg input::-webkit-input-placeholder {
  color: #94a3b8 !important;
}
.tb-form-block-wrapper.newsletter-dark-bg input::-moz-placeholder {
  color: #94a3b8 !important;
}
.tb-form-block-wrapper.newsletter-dark-bg input:-ms-input-placeholder {
  color: #94a3b8 !important;
}

/* Action button contrast adjustment */
.tb-form-block-wrapper.newsletter-dark-bg input[type="submit"],
.tb-form-block-wrapper.newsletter-dark-bg button {
  background-color: #ffb703 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  transition: background-color 0.2s ease !important;
}

.tb-form-block-wrapper.newsletter-dark-bg input[type="submit"]:hover,
.tb-form-block-wrapper.newsletter-dark-bg button:hover {
  background-color: #e5a100 !important;
}

/* Responsive Strategy Rules */
@media (max-width: 991px) {
  .tb-shipping-split-grid,
  .tb-specs-grid,
  .damage-steps-grid,
  .tb-milestones-row,
  .tb-forms-split-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
