/**
 * Toothfit landing — modern layout, theme tokens, navbar & section polish.
 */

:root {
  --tf-font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --tf-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --tf-primary: #0063a0;
  --tf-primary-dark: #004d7a;
  --tf-primary-rgb: 0, 99, 160;
  --tf-accent: #8bc34a;
  --tf-accent-rgb: 139, 195, 74;
  --tf-ink: #0f172a;
  --tf-ink-muted: #475569;
  --tf-ink-soft: #64748b;
  --tf-surface: #ffffff;
  --tf-surface-alt: #f1f5f9;
  --tf-surface-muted: #f8fafc;
  --tf-border: #e2e8f0;
  --tf-radius-sm: 10px;
  --tf-radius-md: 16px;
  --tf-radius-lg: 24px;
  --tf-radius-pill: 999px;
  --tf-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --tf-shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --tf-shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12);
  --tf-header-height: 88px;
  --tf-topbar-height: 40px;
  --tf-container-max: 1240px;
  --tf-section-y: clamp(3.5rem, 6vw, 5.5rem);
  --tf-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--tf-font-sans);
  color: var(--tf-ink-muted);
  background: var(--tf-surface);
}

/* ── Announcement ticker (replaces marquee) ── */
.tf-announcement {
  background: linear-gradient(90deg, var(--tf-primary-dark), var(--tf-primary));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.tf-announcement__track {
  display: flex;
  width: max-content;
  animation: tf-ticker 38s linear infinite;
}

.tf-announcement__track:hover {
  animation-play-state: paused;
}

.tf-announcement__content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.55rem 0;
  white-space: nowrap;
}

.tf-announcement__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tf-announcement__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tf-accent);
  flex-shrink: 0;
}

@keyframes tf-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee_top {
  display: none;
}

/* ── Header / Navbar ── */
header#pq-header.tf-site-header {
  display: block;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--tf-border);
  box-shadow: var(--tf-shadow-sm);
  transition: box-shadow 0.3s var(--tf-ease);
}

header#pq-header.tf-site-header.is-scrolled {
  box-shadow: var(--tf-shadow-md);
}

header#pq-header.tf-site-header .pq-top-header {
  background: var(--tf-surface-muted);
  border-bottom: 1px solid var(--tf-border);
  padding: 0;
}

header#pq-header.tf-site-header .pq-top-header .pq-header-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

header#pq-header.tf-site-header .pq-top-header .pq-header-contact ul li {
  border: none;
  padding: 0.5rem 0;
  color: var(--tf-ink-soft);
  float: none;
  display: inline-flex;
  align-items: center;
  margin: 0;
  line-height: 1.4;
}

header#pq-header.tf-site-header .pq-top-header .pq-header-contact ul li a {
  color: var(--tf-ink-muted);
  font-weight: 500;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

header#pq-header.tf-site-header .pq-top-header .pq-header-contact ul li a:hover {
  color: var(--tf-primary);
}

.tf-topbar-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
  min-height: var(--tf-topbar-height);
  font-size: 0.8125rem;
  color: var(--tf-ink-soft);
}

.tf-topbar-meta__hours {
  display: none;
}

/* Navbar shell — override theme floats/line-heights */
header#pq-header.tf-site-header .pq-bottom-header {
  min-height: 0;
  padding: 0;
}

header#pq-header.tf-site-header .tf-navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.65rem 0;
  min-height: 72px;
}

header#pq-header.tf-site-header .tf-navbar .navbar-brand.toothfit-logo {
  line-height: 1.15;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
  max-width: 200px;
}

.toothfit-logo-name {
  display: block;
  font-family: var(--tf-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--tf-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.toothfit-logo-tagline {
  display: block;
  font-family: var(--tf-font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--tf-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.1rem;
  white-space: nowrap;
}

.tf-navbar-end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.tf-navbar-cta {
  white-space: nowrap;
  padding: 0.55rem 1rem !important;
  font-size: 0.8125rem !important;
}

header#pq-header.tf-site-header .tf-navbar-collapse {
  flex: 1 1 100%;
  width: 100%;
}

header#pq-header.tf-site-header .tf-navbar .pq-menu-contain {
  width: 100%;
  float: none;
}

header#pq-header.tf-site-header .tf-navbar .navbar-nav {
  float: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

header#pq-header.tf-site-header .tf-navbar .navbar-nav > li {
  float: none;
  display: block;
  position: relative;
  margin: 0;
  line-height: 1.4;
  width: 100%;
}

header#pq-header.tf-site-header .tf-navbar .navbar-nav > li > a {
  font-family: var(--tf-font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--tf-ink);
  padding: 0.65rem 0.85rem;
  border-radius: var(--tf-radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  text-transform: none;
  line-height: 1.4;
  display: block;
  white-space: normal;
}

header#pq-header.tf-site-header .tf-navbar .navbar-nav > li > a:hover,
header#pq-header.tf-site-header .tf-navbar .navbar-nav > li.current-menu-item > a,
header#pq-header.tf-site-header .tf-navbar .navbar-nav > li:hover > a {
  color: var(--tf-primary);
  background: rgba(var(--tf-primary-rgb), 0.08);
}

header#pq-header.tf-site-header .tf-navbar .navbar-nav li .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.35rem 0.75rem;
  border-left: 2px solid var(--tf-border);
}

header#pq-header.tf-site-header .tf-navbar .navbar-nav li .sub-menu li {
  float: none;
  display: block;
  width: 100%;
  line-height: 1.4;
  margin: 0;
}

header#pq-header.tf-site-header .tf-navbar .navbar-nav li .sub-menu li a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  text-transform: none;
  line-height: 1.4;
  display: block;
  color: var(--tf-ink-muted);
  border-radius: var(--tf-radius-sm);
}

header#pq-header.tf-site-header .tf-navbar .navbar-nav li .sub-menu li a:hover {
  color: var(--tf-primary);
  background: rgba(var(--tf-primary-rgb), 0.06);
}

.tf-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--tf-border);
}

.tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--tf-font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.7rem 1.15rem;
  border-radius: var(--tf-radius-pill);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--tf-ease), box-shadow 0.2s var(--tf-ease), background 0.2s ease, color 0.2s ease;
}

.tf-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.tf-btn--primary {
  background: linear-gradient(135deg, var(--tf-primary), var(--tf-primary-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(var(--tf-primary-rgb), 0.28);
}

.tf-btn--primary:hover {
  color: #fff;
  box-shadow: 0 12px 28px rgba(var(--tf-primary-rgb), 0.34);
}

.tf-btn--ghost {
  background: transparent;
  color: var(--tf-primary);
  border: 1.5px solid rgba(var(--tf-primary-rgb), 0.25);
}

.tf-btn--ghost:hover {
  background: rgba(var(--tf-primary-rgb), 0.06);
  color: var(--tf-primary);
}

.tf-btn--accent {
  background: var(--tf-accent);
  color: var(--tf-ink);
  box-shadow: 0 8px 20px rgba(var(--tf-accent-rgb), 0.35);
}

.tf-btn--accent:hover {
  color: var(--tf-ink);
}

.tf-btn--lg {
  padding: 0.9rem 1.5rem;
  font-size: 0.9375rem;
}

header#pq-header.tf-site-header .pq-menu-search-block {
  position: relative;
  margin: 0;
}

header#pq-header.tf-site-header .pq-menu-search-block a.tf-search-toggle {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tf-surface-alt);
  color: var(--tf-ink);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

header#pq-header.tf-site-header .pq-menu-search-block a.tf-search-toggle:hover {
  background: rgba(var(--tf-primary-rgb), 0.1);
  color: var(--tf-primary);
}

.tf-search-icon {
  display: block;
}

.tf-search-icon--close {
  display: none;
}

.tf-search-toggle.is-open .tf-search-icon--open {
  display: none;
}

.tf-search-toggle.is-open .tf-search-icon--close {
  display: block;
}

header#pq-header.tf-site-header .pq-search-form {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, 80vw);
  padding: 0.75rem;
  z-index: 1001;
  display: none;
  background: #fff;
  border-radius: var(--tf-radius-md);
  border: 1px solid var(--tf-border);
  box-shadow: var(--tf-shadow-md);
}

header#pq-header.tf-site-header .pq-search-form .search-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

header#pq-header.tf-site-header .pq-search-form .search-form label {
  float: none;
  flex: 1;
  margin: 0;
}

header#pq-header.tf-site-header .pq-search-form .search-field {
  width: 100%;
  height: 44px;
  padding: 0 0.85rem;
  border: 1px solid var(--tf-border);
  border-right: none;
  border-radius: var(--tf-radius-sm) 0 0 var(--tf-radius-sm);
  font-size: 0.9375rem;
  color: var(--tf-ink);
}

header#pq-header.tf-site-header .pq-search-form .search-field:focus {
  outline: none;
  border-color: var(--tf-primary);
  box-shadow: 0 0 0 3px rgba(var(--tf-primary-rgb), 0.12);
}

header#pq-header.tf-site-header .pq-search-form .search-submit {
  position: static;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--tf-radius-sm) var(--tf-radius-sm) 0;
  background: var(--tf-primary);
  color: #fff !important;
  border: none;
  cursor: pointer;
}

header#pq-header.tf-site-header .pq-search-form .search-submit::before {
  content: none;
  display: none;
}

header#pq-header.tf-site-header .pq-search-form .search-submit:hover {
  background: var(--tf-primary-dark);
}

header#pq-header.tf-site-header .navbar-toggler {
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-sm);
  padding: 0.4rem 0.6rem;
  background: var(--tf-surface);
  line-height: 1;
}

.navbar-toggler-icon-text {
  color: var(--tf-ink);
  font-size: 1.25rem;
  line-height: 1;
}

/* Desktop navbar */
@media (min-width: 992px) {
  .tf-topbar-meta__hours {
    display: inline;
  }

  header#pq-header.tf-site-header .tf-navbar {
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 0.5rem 0;
  }

  header#pq-header.tf-site-header .tf-navbar-collapse {
    display: flex !important;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    width: auto;
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-toggler {
    display: none;
  }

  header#pq-header.tf-site-header .tf-navbar-end {
    margin-left: 0.75rem;
  }

  header#pq-header.tf-site-header .tf-navbar .pq-menu-contain {
    width: auto;
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.1rem;
    width: auto;
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-nav > li {
    width: auto;
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-nav > li > a {
    font-size: 0.8125rem;
    padding: 0.45rem 0.55rem;
    white-space: nowrap;
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-nav li:hover > .sub-menu {
    display: block;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid var(--tf-border);
    border-radius: var(--tf-radius-md);
    box-shadow: var(--tf-shadow-md);
    padding: 0.5rem;
    min-width: 220px;
    z-index: 1000;
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-nav li .sub-menu {
    border-left: none;
    padding: 0.5rem;
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-nav li .sub-menu li a {
    padding: 0.55rem 0.75rem;
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-nav li .sub-menu li a:hover {
    background: rgba(var(--tf-primary-rgb), 0.08);
    color: var(--tf-primary);
  }
}

@media (min-width: 1200px) {
  header#pq-header.tf-site-header .tf-navbar .navbar-nav > li > a {
    font-size: 0.875rem;
    padding: 0.5rem 0.7rem;
  }
}

/* ── Hero ── */
.tf-hero {
  position: relative;
  min-height: clamp(440px, 70vh, 640px);
  background: var(--tf-primary-dark);
  overflow: hidden;
  isolation: isolate;
}

.tf-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.tf-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(15, 23, 42, 0.55) 42%,
    rgba(15, 23, 42, 0.18) 100%
  );
}

.tf-hero__content {
  position: relative;
  z-index: 3;
  padding: 3rem 0 4rem;
  width: 100%;
}

.tf-hero__inner {
  max-width: 640px;
  padding: 1.5rem 1.35rem;
  border-radius: var(--tf-radius-lg);
  background: rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.tf-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--tf-accent);
  border-radius: 2px;
}

.tf-hero__title {
  font-family: var(--tf-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.tf-hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.94);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.tf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  pointer-events: auto;
}

.tf-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 520px;
  pointer-events: none;
}

.tf-hero__stat {
  padding: 0.85rem 1rem;
  border-radius: var(--tf-radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.tf-hero__stat strong {
  display: block;
  font-family: var(--tf-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.tf-hero__stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.mobile_banner {
  display: none !important;
}

/* ── Footer readability ── */
footer#pq-footer,
footer#pq-footer p,
footer#pq-footer .pq-footer-block p,
footer#pq-footer .pq-footer-style-1 ul li a,
footer#pq-footer .pq-footer-style-1 ul.menu li a,
footer#pq-footer .pq-contact li,
footer#pq-footer .pq-contact li span,
footer#pq-footer .pq-contact li a,
footer#pq-footer .pq-copyright {
  color: rgba(255, 255, 255, 0.9);
}

footer#pq-footer .footer-title,
footer#pq-footer h4 {
  color: #fff;
  font-family: var(--tf-font-display);
}

footer#pq-footer .pq-footer-block p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

footer#pq-footer .pq-footer-style-1 ul li a:hover,
footer#pq-footer .pq-footer-style-1 ul.menu li a:hover,
footer#pq-footer .pq-contact li a:hover {
  color: var(--tf-accent);
}

footer#pq-footer .footer-update-section a {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

footer#pq-footer .footer-update-section a:hover {
  color: #fff;
}

footer#pq-footer .suscribe .form-control {
  background: #fff;
  color: var(--tf-ink);
  border-color: transparent;
}

footer#pq-footer .suscribe .btn-primary {
  background: var(--tf-accent);
  color: var(--tf-ink);
  border: none;
  font-weight: 700;
}

/* ── Section system ── */
.tf-page section {
  position: relative;
}

.tf-section-head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.tf-section-head--left {
  margin-left: 0;
  text-align: left;
}

.tf-section-head .pq-section-sub-title,
.pq-section-sub-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--tf-font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tf-primary);
  margin-bottom: 0.75rem;
}

.tf-section-head .pq-section-sub-title::before,
.pq-section-sub-title::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--tf-accent);
  border-radius: 2px;
}

.tf-section-head .pq-section-title,
.pq-section-title {
  font-family: var(--tf-font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--tf-ink);
  margin-bottom: 0.85rem;
}

.pq-section-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--tf-ink-muted);
}

section.perfectpadding,
section.service,
section.about,
section.testimonial,
section.pq-form,
section.pq-blog {
  padding-top: var(--tf-section-y);
  padding-bottom: var(--tf-section-y);
}

.pq-bg-grey {
  background: var(--tf-surface-muted) !important;
}

/* ── About block ── */
.tf-about-card {
  border-radius: var(--tf-radius-lg);
  overflow: hidden;
  box-shadow: var(--tf-shadow-md);
}

.tf-about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pq-form-counter.pq-bg-primary-dark {
  background: linear-gradient(160deg, var(--tf-primary-dark), var(--tf-primary)) !important;
  border-radius: var(--tf-radius-lg);
  padding: 1.5rem !important;
}

.pq-form-counter .pq-counter.pq-style-2 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--tf-radius-md);
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.pq-counter-num-prefix h5,
.pq-counter-num-prefix .timer {
  font-family: var(--tf-font-display);
  font-size: 1.75rem;
  color: #fff !important;
}

.pq-counter-description {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.875rem;
}

/* ── Feature cards ── */
.pq-fancy-box.pq-style-1 {
  background: var(--tf-surface);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-md);
  padding: 1.75rem 1.25rem;
  height: 100%;
  transition: transform 0.25s var(--tf-ease), box-shadow 0.25s var(--tf-ease), border-color 0.25s ease;
}

.pq-fancy-box.pq-style-1:hover {
  transform: translateY(-4px);
  box-shadow: var(--tf-shadow-md);
  border-color: rgba(var(--tf-primary-rgb), 0.2);
}

.pq-fancy-box-icon img {
  max-height: 56px;
  width: auto;
  margin-bottom: 0.5rem;
}

.pq-fancy-box-title,
.box-title {
  font-family: var(--tf-font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tf-ink);
  margin-bottom: 0.65rem;
}

.pq-fancybox-description,
.description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--tf-ink-muted);
}

.service .col-md-6.col-lg-4 {
  margin-bottom: 1.25rem;
}

/* ── International clients — brand aligned ── */
.pq-international-clients {
  background: linear-gradient(135deg, var(--tf-primary-dark) 0%, var(--tf-primary) 55%, #0077b8 100%);
  padding: var(--tf-section-y) 0;
}

.pq-international-clients::before,
.pq-international-clients::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.pq-international-clients .section-title {
  font-family: var(--tf-font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.flag-item {
  padding: 1rem;
  border-radius: var(--tf-radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flag-img {
  border-radius: 8px;
  box-shadow: var(--tf-shadow-sm);
}

/* ── Why choose grid ── */
.choosesection.pq-fancy-box {
  background: var(--tf-surface);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-md);
  padding: 1.25rem;
  height: 100%;
  text-align: left !important;
}

.choosesection .pq-fancy-box-icon {
  text-align: left;
}

.choosesection .box-title {
  font-size: 1rem;
}

/* ── Services grid ── */
section.service.brandbox_service.pq-bg-primary {
  background: linear-gradient(180deg, var(--tf-surface-muted), #fff) !important;
}

section.service.brandbox_service .pq-section-title.pq-text-white {
  color: var(--tf-ink) !important;
}

.pq-service-box.pq-style-1 {
  border-radius: var(--tf-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tf-border);
  background: var(--tf-surface);
  box-shadow: var(--tf-shadow-sm);
  transition: transform 0.25s var(--tf-ease), box-shadow 0.25s var(--tf-ease);
  margin-bottom: 1.5rem;
}

.pq-service-box.pq-style-1:hover {
  transform: translateY(-6px);
  box-shadow: var(--tf-shadow-lg);
}

.pq-service-img img {
  transition: transform 0.4s var(--tf-ease);
}

.pq-service-box:hover .pq-service-img img {
  transform: scale(1.04);
}

.pq-service-title {
  font-weight: 700;
  color: var(--tf-ink);
}

.pq-service-box-info {
  background: var(--tf-surface);
}

/* ── Testimonials ── */
section.testimonial {
  background: var(--tf-surface);
}

.pq-testimonial-box.pq-style-1 {
  background: var(--tf-surface-muted);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-lg);
  padding: 1.75rem;
  height: 100%;
}

.pq-testimonial-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tf-ink-muted);
}

.pq-testimonial-meta h5 {
  font-weight: 700;
  color: var(--tf-ink);
}

/* ── Contact / form CTA ── */
section.pq-form .pq-bg-primary {
  background: linear-gradient(135deg, var(--tf-primary-dark), var(--tf-primary)) !important;
  border-radius: var(--tf-radius-lg);
  overflow: hidden;
  box-shadow: var(--tf-shadow-lg);
}

section.pq-form .pq-form-pad {
  padding: 2rem 2rem 2rem 1rem !important;
}

.btn-theme {
  background: var(--tf-accent) !important;
  color: var(--tf-ink) !important;
  border: none;
  border-radius: var(--tf-radius-pill);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  transition: transform 0.2s var(--tf-ease), box-shadow 0.2s var(--tf-ease);
}

.btn-theme:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(var(--tf-accent-rgb), 0.35);
}

.fixedNewsletter .floating {
  background: var(--tf-primary);
  border-radius: var(--tf-radius-pill) 0 0 var(--tf-radius-pill);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  box-shadow: var(--tf-shadow-md);
}

/* ── Blog cards ── */
.pq-blog-post.pq-style-1 {
  background: var(--tf-surface);
  border: 1px solid var(--tf-border);
  border-radius: var(--tf-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.25s var(--tf-ease), transform 0.25s var(--tf-ease);
}

.pq-blog-post.pq-style-1:hover {
  box-shadow: var(--tf-shadow-md);
  transform: translateY(-3px);
}

.pq-blog-contain {
  padding: 1.5rem;
}

.pq-blog-title a {
  font-family: var(--tf-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--tf-ink);
  line-height: 1.35;
}

.pq-button,
.pq-button-flat {
  border-radius: var(--tf-radius-pill);
}

.pq-button-flat {
  background: var(--tf-primary);
  color: #fff !important;
  border: none;
  padding: 0.75rem 1.35rem;
}

.pq-button-flat:hover {
  background: var(--tf-primary-dark);
}

/* ── Loading screen ── */
#pq-loading {
  background: var(--tf-surface);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  header#pq-header.tf-site-header .tf-navbar-collapse {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--tf-border);
  }

  header#pq-header.tf-site-header .tf-navbar .navbar-nav li.menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .tf-nav-actions .tf-btn {
    width: 100%;
    justify-content: center;
  }

  .tf-hero__stats {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  section.pq-form .pq-reveser {
    flex-direction: column-reverse !important;
  }

  section.pq-form .pq-form-pad {
    padding: 1.5rem !important;
  }
}

@media (max-width: 767px) {
  .tf-hero {
    min-height: clamp(420px, 72vh, 560px);
  }

  .tf-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.72) 0%,
      rgba(15, 23, 42, 0.88) 55%,
      rgba(15, 23, 42, 0.92) 100%
    );
  }

  .tf-hero__content {
    padding: 2rem 0 2.5rem;
  }

  .tf-hero__inner {
    max-width: 100%;
    padding: 1.15rem 1rem;
  }

  .tf-hero__title {
    font-size: 1.75rem;
    max-width: none;
  }

  .tf-hero__stats {
    display: none;
  }

  .pq-international-clients .section-title {
    font-size: 1.35rem;
  }
}

/* Fix mobile & desktop grid layout for achievement cards */
.pq-form-counter {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
}
.pq-form-counter::before, .pq-form-counter::after {
  display: none !important;
}
.pq-form-counter .pq-counter.pq-style-2 {
  float: none !important;
  width: 100% !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  height: 100% !important;
}

/* Customer review videos */
.tf-vcol {
  margin-bottom: 30px;
}
.tf-video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: #111;
  box-shadow: 0 10px 26px rgba(0,0,0,.15);
}
.tf-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.tf-video:hover img {
  transform: scale(1.05);
}
.tf-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
}
.tf-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color, #0063a0);
  font-size: 22px;
  padding-left: 4px;
  transition: .25s;
}
.tf-video:hover .tf-video-play {
  background: var(--primary-color, #0063a0);
  color: #fff;
  transform: translate(-50%,-50%) scale(1.08);
}
.tf-video-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

/* Video popup */
.tf-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.tf-modal.open {
  display: flex;
}
.tf-modal-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9/16;
  max-height: 90vh;
}
.tf-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}
.tf-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}


