/*
Theme Name: TrueBranders
Theme URI: https://truebranders.com
Author: TrueBranders
Author URI: https://truebranders.com
Description: TrueBranders – Digital Branding & Growth Agency Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: truebranders
Tags: one-page, agency, digital-marketing
*/

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B35;
  --pink: #FF3CAC;
  --blue: #4158D0;
  --green: #11998e;
  --yellow: #F7971E;
  --dark: #0a0a0f;
  --dark2: #12121a;
  --dark3: #1a1a28;
  --light: #f8f8fc;
  --text: #e0e0f0;
  --text-dim: #9090b0;
  --border: rgba(255,255,255,0.08);
  --grad: linear-gradient(135deg, var(--orange), var(--pink));
  --grad2: linear-gradient(135deg, var(--blue), var(--pink));
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========================================
   TYPOGRAPHY
======================================== */
.tb-gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tb-section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.tb-label-light { color: var(--pink); }

.tb-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.tb-title-light { color: #fff; }

.tb-section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
}

.tb-body-text {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

/* ========================================
   LAYOUT
======================================== */
.tb-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.tb-section {
  padding: 100px 0;
}

.tb-section-dark {
  background: var(--dark2);
}

.tb-section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ========================================
   BUTTONS
======================================== */
.tb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.tb-btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255,107,53,0.35);
}
.tb-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,53,0.5); }

.tb-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.tb-btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.tb-btn-cta {
  background: var(--grad);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.88rem;
}

.tb-btn-white {
  background: #fff;
  color: var(--dark);
}
.tb-btn-white:hover { transform: translateY(-2px); }

.tb-btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.tb-btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.tb-btn-full { width: 100%; justify-content: center; }

/* ========================================
   HEADER / NAV
======================================== */
.tb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.tb-header.scrolled {
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.tb-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-right: auto;
}

.tb-logo-icon {
  width: 38px; height: 38px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
}

.tb-logo-text span { color: var(--orange); }

.tb-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.tb-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.tb-nav a:hover, .tb-nav a.active { color: #fff; }

.tb-dropdown { position: relative; }
.tb-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tb-dropdown:hover .tb-dropdown-menu { opacity: 1; pointer-events: all; }
.tb-dropdown-menu a {
  padding: 8px 14px;
  border-radius: 6px;
  display: block;
  font-size: 0.88rem;
}
.tb-dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--orange); }

.tb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.tb-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   HERO
======================================== */
.tb-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tb-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.tb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.tb-orb-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -100px; left: -100px;
}
.tb-orb-2 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: 100px; right: -80px;
}

.tb-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.tb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.tb-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.tb-hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.tb-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual / Card */
.tb-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-hero-card {
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-card-pill {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: #fff;
  backdrop-filter: blur(10px);
  animation: orbit 8s linear infinite;
}

.tb-card-pill:nth-child(1) { top: -14px; left: 50%; transform: translateX(-50%); }
.tb-card-pill:nth-child(2) { top: 60px; right: -20px; }
.tb-card-pill:nth-child(3) { bottom: 60px; right: -20px; }
.tb-card-pill:nth-child(4) { bottom: -14px; left: 50%; transform: translateX(-50%); }
.tb-card-pill:nth-child(5) { bottom: 60px; left: -20px; }
.tb-card-pill:nth-child(6) { top: 60px; left: -20px; }

.tb-pill-orange { border-color: rgba(255,107,53,0.4); color: var(--orange); }
.tb-pill-blue { border-color: rgba(65,88,208,0.4); color: #7b96ff; }
.tb-pill-pink { border-color: rgba(255,60,172,0.4); color: var(--pink); }
.tb-pill-green { border-color: rgba(17,153,142,0.4); color: #4dd9ac; }
.tb-pill-yellow { border-color: rgba(247,151,30,0.4); color: var(--yellow); }

.tb-hero-center {
  width: 100px; height: 100px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(255,107,53,0.4);
}

/* Stats Bar */
.tb-stats-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.tb-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.tb-stat {
  text-align: center;
}

.tb-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tb-stat > span:last-of-type {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tb-stat p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.tb-stat-div {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ========================================
   ABOUT
======================================== */
.tb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tb-about-blob {
  background: var(--grad2);
  border-radius: 30px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.tb-icon-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}
.tb-icon-box svg { color: #fff; }
.tb-icon-orange { border-color: rgba(255,107,53,0.3); }
.tb-icon-orange svg { color: var(--orange); }
.tb-icon-pink { border-color: rgba(255,60,172,0.3); }
.tb-icon-pink svg { color: var(--pink); }
.tb-icon-blue { border-color: rgba(65,88,208,0.3); }
.tb-icon-blue svg { color: #7b96ff; }

.tb-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}

.tb-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.tb-check {
  width: 24px; height: 24px;
  background: rgba(255,107,53,0.15);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   SERVICES
======================================== */
.tb-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tb-service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.tb-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,53,0.3);
  background: rgba(255,107,53,0.05);
}

.tb-service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tb-si-orange { background: rgba(255,107,53,0.15); color: var(--orange); }
.tb-si-green { background: rgba(17,153,142,0.15); color: #4dd9ac; }
.tb-si-blue { background: rgba(65,88,208,0.15); color: #7b96ff; }
.tb-si-pink { background: rgba(255,60,172,0.15); color: var(--pink); }
.tb-si-red { background: rgba(235,87,87,0.15); color: #ff6b6b; }
.tb-si-yellow { background: rgba(247,151,30,0.15); color: var(--yellow); }

.tb-service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.tb-service-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tb-service-link {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-head);
  transition: gap 0.2s;
}
.tb-service-link:hover { opacity: 0.8; }

/* ========================================
   WHY US
======================================== */
.tb-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tb-why-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}

.tb-why-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-4px);
}

.tb-why-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.tb-why-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.tb-why-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ========================================
   CTA BANNER
======================================== */
.tb-cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tb-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0.9;
}

.tb-cta-inner {
  position: relative;
  z-index: 1;
}

.tb-cta-content {
  text-align: center;
}

.tb-cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.tb-cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.tb-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   CONTACT
======================================== */
.tb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.tb-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tb-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.tb-contact-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(255,107,53,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tb-contact-card h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.tb-contact-card a, .tb-contact-card p {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

.tb-social-links {
  display: flex;
  gap: 12px;
}

.tb-social {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s;
}
.tb-social:hover { background: rgba(255,107,53,0.15); border-color: rgba(255,107,53,0.4); color: var(--orange); }

/* Form */
.tb-contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tb-contact-form input,
.tb-contact-form select,
.tb-contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
}

.tb-contact-form input::placeholder,
.tb-contact-form textarea::placeholder { color: var(--text-dim); }
.tb-contact-form input:focus,
.tb-contact-form select:focus,
.tb-contact-form textarea:focus { outline: none; border-color: var(--orange); }

.tb-contact-form select option { background: var(--dark3); }

.tb-form-note {
  font-size: 0.88rem;
  color: var(--green);
  text-align: center;
}

/* ========================================
   FOOTER
======================================== */
.tb-footer { background: var(--dark2); }

.tb-footer-top { padding: 60px 0; border-bottom: 1px solid var(--border); }

.tb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.tb-footer-brand p {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 16px 0 20px;
  max-width: 280px;
  line-height: 1.7;
}

.tb-footer-phone {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
}

.tb-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tb-footer-links h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.tb-footer-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.tb-footer-links a:hover { color: var(--orange); }

.tb-footer-bottom {
  padding: 20px 0;
}
.tb-footer-bottom p {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

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

@media (max-width: 768px) {
  .tb-nav, .tb-btn-cta {
    display: none;
  }

  .tb-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    padding: 100px 40px 40px;
    gap: 24px;
    z-index: 998;
  }

  .tb-nav.open a {
    font-size: 1.4rem;
  }

  .tb-hamburger { display: flex; z-index: 999; }

  .tb-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .tb-hero-visual { display: none; }
  .tb-hero-actions { justify-content: center; }
  .tb-hero-sub { margin: 0 auto 32px; }

  .tb-stats-inner { flex-wrap: wrap; gap: 24px; }
  .tb-stat-div { display: none; }

  .tb-about-grid,
  .tb-contact-grid { grid-template-columns: 1fr; }

  .tb-about-visual { display: none; }

  .tb-services-grid { grid-template-columns: 1fr; }
  .tb-why-grid { grid-template-columns: 1fr; }

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

  .tb-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .tb-section { padding: 60px 0; }
  .tb-hero-title { font-size: 2.2rem; }
}


/* ========================================
   ELEMENTOR + ELEMENTSKIT COMPATIBILITY
   (appended by TrueBranders v2.0)
======================================== */

/* Remove default body/page padding that breaks Elementor layouts */
body.elementor-page .tb-header + #tb-main,
body.elementor-page #tb-main {
  padding: 0;
  margin: 0;
}

/* Full-width sections */
.tb-full-width,
.elementor-section-full_width {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Elementor editor fixes */
.elementor-editor-active .tb-header { z-index: 999; }

/* Ensure Elementor widgets inherit theme fonts */
.elementor-widget-container,
.elementor-widget-container * {
  font-family: inherit;
}

/* Fix Elementor column spacing inside .tb-container */
.elementor-section .elementor-container {
  max-width: 1200px;
}

/* Override Elementor's default gap if needed */
.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 15px;
}

/* Prevent theme nav from overlapping Elementor pop-ups */
.tb-header { z-index: 9990; }
.elementor-popup-modal { z-index: 9999; }

/* Make sure theme colors/fonts flow into Elementor widgets */
:root {
  --e-global-color-primary:    #FF6B35;
  --e-global-color-secondary:  #FF3CAC;
  --e-global-color-accent:     #4158D0;
  --e-global-color-text:       #e0e0f0;
  --e-global-color-background: #0a0a0f;
  --e-global-typography-primary-font-family:   'Syne';
  --e-global-typography-secondary-font-family: 'DM Sans';
}

/* Elementor "Edit with Elementor" admin bar button — ensure it shows */
#wpadminbar .elementor-adminbar-root { display: block !important; }

/* Fix for ElementsKit header/footer builder widgets */
.ekit-template-content-markup,
.ekit-template-content-markup > .elementor { display: block; width: 100%; }

/* Responsive fixes for Elementor on mobile */
@media (max-width: 768px) {
  .elementor-section .elementor-column {
    width: 100% !important;
  }
  .tb-full-width { overflow-x: hidden; }
}
