/* ══════════════════════════════════════
   Contact Page 2026 — Teebling
   ══════════════════════════════════════ */

/* ── Hero ── */
.tb-ct-hero {
  padding: 60px 0 0;
}
.tb-ct-hero-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.tb-ct-hero-left {
  flex: 1;
  min-width: 0;
}
.tb-ct-hero-right {
  flex: 1;
  min-width: 0;
}
.tb-ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 20px;
  font-weight: 600;
  color: #555;
  margin-bottom: 18px;
}
.tb-ct-badge i { color: #E87422; }
.tb-ct-title {
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 14px;
}
.tb-ct-title span { color: #ed9e06; }
.tb-ct-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: -30px;
    max-width: 500px;
}
.tb-ct-illustration {
  width: 100%;
  max-width: 420px;
  margin-bottom: 20px;
}

/* ── Info Cards ── */
.tb-ct-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.tb-ct-info-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px;
  transition: box-shadow .2s;
}
.tb-ct-info-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.tb-ct-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}
.tb-ct-info-icon {
  background: #2c30a5;
}
.tb-ct-info-icon i {
  color: #fff;
}
.tb-ct-info-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.tb-ct-info-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  word-break: break-word;
}
.tb-ct-info-value a {
  color: #1a1a2e;
  text-decoration: none;
}
.tb-ct-info-value a:hover { color: #E87422; }

/* ── Live Support Strip ── */
.tb-ct-live {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 28px;
}
.tb-ct-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
  animation: tbPulse 1.5s infinite;
}
@keyframes tbPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.tb-ct-live-text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.tb-ct-live-btns {
  display: flex;
  gap: 10px;
}
.tb-ct-live-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s;
}
.tb-ct-live-btn:hover { transform: scale(1.1); color: #fff; }
.tb-ct-live-btn.phone { background: #3b82f6; }
.tb-ct-live-btn.whatsapp { background: #25d366; }

/* ── Form Card ── */
.tb-ct-form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.tb-ct-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
i.fas.fa-paper-plane{
    color: white;
}

.tb-ct-form-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #4e64df;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.tb-ct-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

/* ── Form Fields ── */
.tb-ct-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
.tb-ct-row > .tb-ct-field { flex: 1; min-width: 0; }

.tb-ct-field {
  margin-bottom: 18px;
}
.tb-ct-field-full {
  width: 100%;
}
.tb-ct-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.tb-ct-label .req { color: #dc2626; }
.tb-ct-input-wrap {
  position: relative;
}
.tb-ct-input,
.tb-ct-select,
.tb-ct-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.tb-ct-input:focus,
.tb-ct-select:focus,
.tb-ct-textarea:focus {
  border-color: #E87422;
  box-shadow: 0 0 0 3px rgba(232,116,34,.1);
  background: #fff;
}
.tb-ct-input::placeholder,
.tb-ct-textarea::placeholder {
  color: #aaa;
}
.tb-ct-textarea {
  min-height: 120px;
  resize: vertical;
}
.tb-ct-select {
  appearance: auto;
  cursor: pointer;
}
/* Validation states */
.tb-ct-input.is-valid,
.tb-ct-select.is-valid,
.tb-ct-textarea.is-valid {
  border-color: #16a34a;
}
.tb-ct-input.is-invalid,
.tb-ct-select.is-invalid,
.tb-ct-textarea.is-invalid {
  border-color: #dc2626;
}
.tb-ct-field-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
  display: none;
}
.tb-ct-field-icon.valid  { display: block; color: #16a34a; }
.tb-ct-field-icon.invalid { display: block; color: #dc2626; }
.tb-ct-field-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  display: none;
}
.tb-ct-field-error.show { display: block; }

/* File Input */
.tb-ct-file-wrap {
  position: relative;
}
.tb-ct-file-hidden { display: none; }
.tb-ct-file-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px dashed #d0d0d0;
  border-radius: 10px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color .2s;
  font-size: 14px;
  color: #777;
}
.tb-ct-file-btn:hover { border-color: #E87422; }
.tb-ct-file-btn i { color: #E87422; }
.tb-ct-file-btn .tb-ct-file-text { flex: 1; }
.tb-ct-file-btn.has-files {
  border-color: #16a34a;
  color: #16a34a;
}
.tb-ct-file-count {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

/* Captcha */
.tb-ct-captcha {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

/* Submit Button */
.tb-ct-submit {
  width: 100%;
  padding: 14px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.tb-ct-submit:hover { background: #2d2d5e; transform: translateY(-1px); }
.tb-ct-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Upload Progress */
.tb-ct-progress {
  display: none;
  margin-top: 16px;
}
.tb-ct-progress.show { display: block; }
.tb-ct-progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.tb-ct-progress-fill {
  height: 100%;
  background: #E87422;
  border-radius: 3px;
  width: 0%;
  transition: width .3s;
}
.tb-ct-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

/* Result Alert */
.tb-ct-alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 10px;
}
.tb-ct-alert.show { display: flex; }
.tb-ct-alert.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.tb-ct-alert.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.tb-ct-alert.warning { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.tb-ct-alert.info    { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

/* ── Stats Banner ── */
.tb-ct-banner {
  background: black;
  padding: 56px 0;
  margin-top: 60px;
}
.tb-ct-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.tb-ct-banner-text {
  flex: 1;
}
.tb-ct-banner-tag {
  font-size: 13px;
  font-weight: 600;
  color: #E87422;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.tb-ct-banner-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}
.tb-ct-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.tb-ct-stat {
  text-align: center;
}
.tb-ct-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}
.tb-ct-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tb-ct-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}
.tb-ct-banner-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.tb-ct-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s;
}
.tb-ct-banner-btn:hover { transform: translateY(-2px); }
.tb-ct-banner-btn.primary { background: #E87422; color: #fff; }
.tb-ct-banner-btn.primary:hover { color: #fff; }
.tb-ct-banner-btn.wa { background: #25d366; color: #fff; }
.tb-ct-banner-btn.wa:hover { color: #fff; }

/* ── Locate Us ── */
.tb-ct-locate {
  padding: 64px 0;
}
.tb-ct-locate-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 8px;
}
.tb-ct-locate-sub {
  text-align: center;
  color: #777;
  font-size: 15px;
  margin-bottom: 40px;
}
.tb-ct-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tb-ct-branch {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.tb-ct-branch:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.tb-ct-branch-head {
  background: #f9f9f9;
  padding: 18px 22px;
  border-bottom: 1px solid #eee;
}
.tb-ct-branch-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.tb-ct-branch-addr {
  font-size: 13px;
  color: #777;
  margin: 0;
}
.tb-ct-branch-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}
.tb-ct-branch-info {
  padding: 18px 22px;
}
.tb-ct-branch-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tb-ct-branch-features li {
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #555;
}
.tb-ct-branch-features li i {
  color: #16a34a;
  margin-right: 4px;
}
.tb-ct-branch-hours {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.tb-ct-branch-hours strong { color: #1a1a2e; }

/* ── Toast ── */
.tb-ct-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}
.tb-ct-toast {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: tbCtSlide .3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  min-width: 280px;
}
@keyframes tbCtSlide {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.tb-ct-toast.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.tb-ct-toast.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.tb-ct-toast.warning { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.tb-ct-toast.info    { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .tb-ct-hero-inner { flex-direction: column; gap: 32px; }
  .tb-ct-banner-inner { flex-direction: column; text-align: center; }
  .tb-ct-stats { justify-content: center; }
  .tb-ct-banner-btns { justify-content: center; }
  .tb-ct-branches { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .tb-ct-title { font-size: 30px; }
  .tb-ct-info-grid { grid-template-columns: 1fr; }
  .tb-ct-row { flex-direction: column; gap: 0; }
  .tb-ct-form-card { padding: 24px; }
  .tb-ct-live { flex-direction: column; text-align: center; }
  .tb-ct-stats { flex-direction: column; gap: 16px; }
  .tb-ct-stat-divider { width: 40px; height: 1px; }
}

 #promoContent span:not(.free-shipping__icon) {
  color: #fff;
} 
div#promoBar {
    height: 39px;
    border-bottom: 2px solid #ffffff29;
}
.tb-cta.tb-cta--dark {
    border: 2px solid #ffffff38;
    border-radius: 6px;
}
a.link.btn--no-space.btn.c-link__button.tb-btn--medium.link--default {
    background: white;
    color: black;
    border-radius: 6px;
}
    .tb-cta { 
        -webkit-align-items: center;
        align-items: center;
        background: #000e5e !important;
        border-radius: 12px;
        box-shadow: 0 2px 4px 0 var(--color-neutral-900-a20);
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 12px;
        gap: 8px
    }

    .bl-top-bar {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        justify-content: center;
        background: #000e5e !important;
        text-align: center;
        padding: 10px;
        width: 100%;
        gap: 4px
    }


    
    .tb-cta { 
        -webkit-align-items: center;
        align-items: center;
        background: #000e5e !important;
        border-radius: 12px;
        box-shadow: 0 2px 4px 0 var(--color-neutral-900-a20);
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        padding: 12px;
        gap: 8px
    }
