/* ===============================
   TBT Construct – Global Styles
   =============================== */

:root{
  --tbt-accent:#F7931E;
  --tbt-dark:#0E0E0E;
  --tbt-white:#FFFFFF;
  --tbt-gray:#B5B5B5;
  --tbt-light:#F4F4F4;

  --radius:18px;
  --shadow:0 18px 50px rgba(0,0,0,.25);
  --max-width:1160px;
}

html, body{
  background: var(--tbt-dark);
}

.site, #page, .site-content{
  background: var(--tbt-dark);
}

.site-footer{
  background: var(--tbt-dark);
}
.site-footer a:hover{
  color: var(--tbt-accent);
}

.tbt-header-phone{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  margin-right:12px;
  opacity:.9;
}
.tbt-header-phone:hover{
  color: var(--tbt-accent);
}

/* Base */
body{
  margin:0;
  color:#111;
  background:#fff;
}

.tbt-container{
  width:min(var(--max-width), calc(100% - 48px));
  margin-inline:auto;
}

/* Typography */
.tbt-h1,.tbt-h2,.tbt-h3{
  margin:0 0 12px;
  letter-spacing:-.02em;
}
.tbt-h2{
  font-size:clamp(26px,3vw,40px);
}
.tbt-h3{
  font-size:18px;
}
.tbt-p{
  margin:0 0 14px;
  line-height:1.7;
  color:#222;
}
.tbt-sub{
  max-width:820px;
  color:#333;
}

/* Buttons */
.tbt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 18px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  transition:.2s ease;
}
.tbt-btn--primary{
  background:var(--tbt-accent);
  color:var(--tbt-dark);
}
.tbt-btn--primary:hover{
  filter:brightness(.95);
  transform:translateY(-1px);
}
.tbt-btn--ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
}

/* Cards / helpers */
.tbt-card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.tbt-eyebrow{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--tbt-accent);
}

/* =========================================================
   TBT FOOTER – FINAL (Brand + Panels + Contact, Mobile OK)
   ========================================================= */

/* =========================
   Footer Panels (Unified)
   ========================= */

.tbt-footer-panel{
  position: relative;
  padding-top: 22px; /* spațiu sub linie */
}

.tbt-footer-panel__line{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.10);
}

/* Force consistent alignment */
.tbt-footer-panel,
.tbt-footer-brand,
.tbt-footer-contact{
  text-align: left;
}


/* =========================
   Footer Brand Column
   ========================= */

.tbt-footer-brand{
  max-width: 520px;
  color: rgba(255,255,255,.78);
}

/* Optional logo */
.tbt-footer-brand__logo{
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

/* Name */
.tbt-footer-brand__name{
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .02em;
}

/* Tagline */
.tbt-footer-brand__tagline{
  margin-top: 6px;
  margin-bottom: 14px;
  color: var(--tbt-accent);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Desc (targeted, Astra-safe) */
.tbt-footer-brand__desc,
.tbt-footer-brand p.tbt-footer-brand__desc{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  margin: 0 0 14px !important;
  line-height: 1.7;
  color: rgba(255,255,255,.72) !important;
  font-size: 15px;
}

/* Values */
.tbt-footer-brand__values{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tbt-footer-brand__values span{
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
}


/* =========================
   Footer Contact (2026) – Clean + Responsive
   ========================= */

.tbt-footer-contact{
  background: transparent;
}

/* Layout: text left + pills right (desktop), stack on mobile */
.tbt-footer-contact__inner{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
  margin: 0;
  padding: 0;
}

/* Left text */
.tbt-footer-contact__eyebrow{
  color: var(--tbt-accent);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.tbt-footer-contact__title{
  color: #fff;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.12;
  margin-bottom: 10px;
}

.tbt-footer-contact__sub{
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 48ch; /* elegant & readable */
}

/* Right side stack */
.tbt-footer-contact__right{
  display: grid;
  gap: 14px;
  justify-items: end;
  align-content: start;
}

/* Pills: uniform, centered, modern */
.tbt-fc-pill{
  width: 100%;
  max-width: 420px;

  display: flex;
  align-items: center;          /* vertical centering */
  justify-content: flex-start;  /* icon + text flow */
  gap: 14px;

  min-height: 56px;             /* touch + premium */
  padding: 12px 16px;
  border-radius: 18px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);

  color: rgba(255,255,255,.90);
  text-decoration: none;

  transition: .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.tbt-fc-pill:hover{
  border-color: rgba(247,147,30,.45);
  color: #fff;
  transform: translateY(-1px);
}

/* Icon box: perfect centering on ALL devices */
.tbt-fc-ico{
  width: 36px;
  height: 36px;
  flex: 0 0 36px;

  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(247,147,30,.14);
  border: 1px solid rgba(247,147,30,.28);
  color: var(--tbt-accent);

  font-weight: 900;
  line-height: 1;
  font-size: 16px;              /* stabilize emoji */
}

/* Text: ALWAYS on one line desktop, visible on mobile */
.tbt-fc-pill span:last-child{
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  min-width: 0;                 /* IMPORTANT for ellipsis */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Actions */
.tbt-fc-actions{
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 2px;
}

.tbt-fc-btn,
.tbt-fc-btn:visited,
.tbt-fc-btn:hover,
.tbt-fc-btn:active,
.tbt-fc-btn:focus{
  height: 48px;
  padding: 0 18px;
  border-radius: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--tbt-accent);
  color: var(--tbt-dark) !important;

  font-weight: 900;
  text-decoration: none;
  transition: .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.tbt-fc-btn:hover{
  filter: brightness(.95);
  transform: translateY(-1px);
}

/* =========================
   Responsive (Mobile)
   ========================= */

@media (max-width: 900px){
  .tbt-footer-contact__inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tbt-footer-contact__right{
    justify-items: start;
  }

  .tbt-footer-contact__title{
    font-size: 24px;
  }

  .tbt-fc-pill,
  .tbt-fc-actions{
    max-width: 520px;
  }
}

/* Very small phones: make text fully visible (no ellipsis) */
@media (max-width: 420px){
  .tbt-fc-pill{
    padding: 12px 14px;
    min-height: 58px;
  }

  .tbt-fc-pill span:last-child{
    font-size: 15px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;  /* allow wrap on tiny screens */
    line-height: 1.2;
  }
}

/* ===== Mobile FIX: force pill text & button text visible ===== */
@media (max-width: 480px){

  /* pills full width + safe padding */
  .tbt-fc-pill{
    width: 100% !important;
    max-width: 100% !important;
    min-height: 58px !important;
    padding: 12px 14px !important;
  }

  /* grab ANY text node inside pill, not only span:last-child */
  .tbt-fc-pill > *{
    min-width: 0 !important;
  }

  /* Force visible for common wrappers used by Elementor/Astra */
  .tbt-fc-pill span,
  .tbt-fc-pill p,
  .tbt-fc-pill div{
    display: inline-flex !important;
    align-items: center !important;

    color: rgba(255,255,255,.92) !important;
    visibility: visible !important;
    opacity: 1 !important;

    font-size: 15px !important;
    line-height: 1.2 !important;

    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  /* If your icon is the first child, keep it fixed */
  .tbt-fc-pill .tbt-fc-ico{
    flex: 0 0 36px !important;
  }

  /* Button: force label visible */
  .tbt-fc-btn{
    width: auto !important;
    min-width: 180px !important;
    height: 50px !important;
    padding: 0 18px !important;

    color: #111 !important;
    visibility: visible !important;
    opacity: 1 !important;

    font-size: 16px !important;
    line-height: 1 !important;
  }
}
