/* ============================================================
   GoRoute Cabs - corporate.css
   Corporate & B2B page styles (corporate.html only)
   ============================================================ */

/* ── TRUST STRIP ── */
.trust-strip {
  background: white;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.corp-intro,
.how-section,
.b2b-section {
  overflow: hidden;
}
.trust-items {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  transition:
    background 0.2s,
    color 0.2s;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: var(--primary-light);
  color: var(--text);
}

.trust-item-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.trust-item:hover .trust-item-icon {
  background: rgba(255, 69, 0, 0.2);
}

/* ── CORPORATE SECTION ── */
.corp-intro {
  background: var(--bg-2);
}

/* ── BENEFIT CARDS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}

.benefit-item:hover {
  border-left-color: var(--primary);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.benefit-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
  position: relative;
}

/* Dashed connector line between step numbers */
.steps-grid::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--primary) 0,
    var(--primary) 8px,
    rgba(255, 69, 0, 0.18) 8px,
    rgba(255, 69, 0, 0.18) 18px
  );
  z-index: 0;
}

.step-card {
  background: var(--bg-2);
  border-radius: 14px;
  padding: 28px 20px 24px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.step-card:hover {
  border-color: var(--primary-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.step-num {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.step-icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: block;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── B2B SECTION ── */
.b2b-section {
  background: var(--bg-2);
}

/* Partner cards */
.partner-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.partner-card {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

.partner-card-top {
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffe8dc 100%);
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--primary-border);
  position: relative;
  overflow: hidden;
}

.partner-card-top::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255, 69, 0, 0.08);
  border-radius: 50%;
}

.partner-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.partner-card-top h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  position: relative;
  z-index: 1;
}

.partner-card-body {
  padding: 18px 24px 22px;
}

.partner-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── INQUIRY SECTION ── */
.inquiry-section {
  background:
    radial-gradient(
      ellipse 65% 80% at 0% 50%,
      rgba(255, 80, 0, 0.32) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 45% 55% at 100% 10%,
      rgba(255, 69, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 100%,
      rgba(180, 40, 0, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(145deg, #1f0d03 0%, #180a02 40%, #0e0a04 100%);
  position: relative;
}

.inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* Left: info column */
.inquiry-info {
  padding-top: 8px;
}

.inquiry-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.inquiry-info h2 em {
  color: var(--primary);
  font-style: normal;
}

.inquiry-info > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.inquiry-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inq-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.2s,
    border-color 0.2s;
}

.inq-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.inq-contact-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inq-contact-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.inq-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.inq-contact-value a {
  color: white;
  text-decoration: none;
}

.inq-contact-value a:hover {
  color: var(--primary);
}

/* Right: form card */
.inquiry-form-box {
  background: white;
  border-radius: 20px;
  padding: 36px 36px 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.inquiry-form-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field:last-of-type {
  margin-bottom: 0;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .trust-items {
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1 1 calc(33.33% - 1px);
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .partner-types {
    grid-template-columns: 1fr;
  }

  .inquiry-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .inquiry-form-box {
    padding: 28px 22px;
  }

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

  .trust-item {
    flex: 1 1 calc(50% - 1px);
  }
}

@media (max-width: 480px) {
  .trust-item {
    flex: 1 1 100%;
    border-right: none;
  }
}

/* ── AREAS WE SERVE ── */
.corp-areas {
  margin-top: 36px;
  padding: 24px 28px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.corp-areas-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 14px;
}

.corp-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.corp-areas-tags span {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 100px;
}

/* ── FAQ CENTRE ALIGN ── */
#corporate-faq .faq-list {
  max-width: 820px;
  margin: 0 auto;
}
body {
  overflow-x: hidden;
}

/* ── INQUIRY FORM STATUS BANNER ── */
.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cf-status {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.cf-status.visible {
  display: block;
}

.cf-status-loading {
  background: var(--bg-2);
  color: var(--text-muted);
}

.cf-status-success {
  background: rgba(37, 211, 102, 0.1);
  color: var(--wa-dark);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.cf-status-error {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary-border);
}
