/*
Theme Name: VisionTech Child
Template: astra
Version: 1.0.0
Description: Child theme for Vision Technologies Company
Author: Vision Technologies Company
Text Domain: visiontech-child
*/

:root {
  --vt-navy: #1b1e6e;
  --vt-dark: #252985;
  --vt-blue: #3b40b0;
  --vt-mid: #4a56c8;
  --vt-light: #8abcd8;
  --vt-white: #ffffff;
  --vt-bg: #f5f3fd;
  --vt-text: #1e2160;
  --vt-muted: #5c6190;
  --vt-border-dark: rgba(138, 188, 216, 0.2);
  --vt-border-light: rgba(59, 64, 176, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  font-family:
    "DM Sans",
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--vt-bg);
  color: var(--vt-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--vt-text);
}
h1 {
  font-size: 56px;
  letter-spacing: -0.025em;
}
h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 20px;
}
p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--vt-muted);
}
a {
  color: var(--vt-mid);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--vt-blue);
}

/* BUTTONS */
.vt-btn-primary {
  display: inline-block;
  padding: 11px 28px;
  background: linear-gradient(
    120deg,
    var(--vt-mid) 0%,
    var(--vt-blue) 50%,
    var(--vt-mid) 100%
  );
  background-size: 200% auto;
  color: var(--vt-white) !important;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-position 0.45s ease,
    box-shadow 0.25s ease;
}
.vt-btn-primary:hover {
  background-position: right center;
  box-shadow: 0 4px 22px rgba(74, 86, 200, 0.38);
}

.vt-btn-outline {
  display: inline-block;
  padding: 11px 28px;
  background: transparent;
  color: var(--vt-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.vt-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* SECTION TAG */
.vt-section-tag {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--vt-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.vt-dark-section .vt-section-tag,
.vt-vendor-band .vt-section-tag,
.vt-cta-band .vt-section-tag {
  color: var(--vt-light);
}

/* DARK SECTIONS */
.vt-dark-section {
  background: linear-gradient(
    140deg,
    var(--vt-navy) 0%,
    #20246e 50%,
    var(--vt-dark) 100%
  );
}
.vt-dark-section h1,
.vt-dark-section h2,
.vt-dark-section h3 {
  color: var(--vt-white);
}
.vt-dark-section p {
  color: rgba(255, 255, 255, 0.55);
}

/* NAVIGATION */
.vt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 20, 80, 0.68);
  border-bottom: 1px solid rgba(138, 188, 216, 0.08);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.vt-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.vt-nav-links {
  display: flex;
  gap: 4px;
}
.vt-nav-links a {
  padding: 6px 13px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 6px;
  transition: all 0.2s;
}
.vt-nav-links a:hover,
.vt-nav-links a.active {
  color: #fff;
  background: rgba(74, 90, 181, 0.25);
}

/* HERO */
.vt-hero {
  padding: 100px 32px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vt-hero.vt-dark-section {
  background:
    linear-gradient(
      140deg,
      rgba(10, 12, 58, 0.90) 0%,
      rgba(18, 22, 88, 0.86) 50%,
      rgba(28, 36, 115, 0.82) 100%
    ),
    url('images/hero-bg.png') center / cover no-repeat;
  background-color: var(--vt-navy);
}
.vt-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vt-hero h1 {
  font-size: 42px;
  color: #fff;
  margin: 16px 0 20px;
}
.vt-hero h1 em {
  font-style: normal;
  color: var(--vt-light);
}
.vt-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* STATS BRIDGE */
.vt-stats-bridge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 800px;
  margin: -28px auto 0;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--vt-border-light);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(45, 53, 128, 0.08);
  position: relative;
  z-index: 2;
}
.vt-stat {
  padding: 24px;
  text-align: center;
  border-right: 0.5px solid var(--vt-border-light);
}
.vt-stat:last-child {
  border-right: none;
}
.vt-stat-num {
  font-size: 42px;
  font-weight: 600;
  color: var(--vt-blue);
  font-family: "Space Grotesk", sans-serif;
}
.vt-stat-label {
  font-size: 13px;
  color: var(--vt-muted);
  margin-top: 6px;
}

/* SECTIONS */
.vt-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 40px;
}
.vt-section-alt {
  background:
    linear-gradient(rgba(255,255,255,0.955), rgba(255,255,255,0.955)),
    url('images/hero-bg.png') center / 800px;
  background-color: #fff;
  padding: 96px 40px;
}
.vt-sub {
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 17px;
  line-height: 1.8;
}

/* CARDS */
.vt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.vt-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 12px;
  padding: 26px;
  transition: all 0.22s;
}
.vt-card:hover {
  border-color: var(--vt-mid);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(59, 64, 176, 0.1);
}
.vt-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.vt-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--vt-text);
}
.vt-card p {
  font-size: 15px;
}

/* VENDOR BAND */
.vt-vendor-band {
  padding: 48px 32px;
  text-align: center;
}
.vt-vendors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.vt-vendor-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 10px;
  height: 58px;
  min-width: 100px;
  transition: all 0.22s ease;
}
.vt-vendor-logo-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.vt-vendor-logo-img {
  max-height: 30px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.22s ease;
  display: block;
}
.vt-vendor-logo-card:hover .vt-vendor-logo-img {
  opacity: 1;
}
.vt-vendor-logo-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(30, 40, 100, 0.85);
  letter-spacing: 0.01em;
}

/* NEWS */
.vt-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.vt-news-card {
  background: #fff;
  border: 0.5px solid var(--vt-border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.vt-news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 53, 128, 0.08);
}
.vt-news-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.vt-news-thumb-placeholder {
  height: 140px;
  background: linear-gradient(135deg, var(--vt-blue), var(--vt-light));
}
.vt-news-body {
  padding: 16px;
}
.vt-news-cat {
  font-size: 10px;
  color: var(--vt-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.vt-news-body h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 6px 0;
  color: var(--vt-text);
  line-height: 1.4;
}
.vt-news-body p {
  font-size: 12px;
}

/* FOOTER */
.vt-footer {
  background: var(--vt-navy);
  color: #fff;
  padding: 48px 32px 0;
}
.vt-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
}
.vt-footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 200px;
}
.vt-footer-col h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--vt-light);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vt-footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 9px;
}
.vt-footer-col a:hover {
  color: #fff;
}
.vt-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* FADE IN ANIMATION */
.vt-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.vt-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.vt-fade-in:nth-child(2) {
  transition-delay: 0.1s;
}
.vt-fade-in:nth-child(3) {
  transition-delay: 0.2s;
}
.vt-fade-in:nth-child(4) {
  transition-delay: 0.3s;
}

/* HIDE ASTRA DEFAULT HEADER/FOOTER */
#masthead,
#colophon,
.ast-above-header,
.ast-primary-header-bar,
.ast-below-header {
  display: none !important;
}

/* =============================================
   ASTRA OVERRIDES — full width layout
   ============================================= */

/* Remove Astra's default layout containers */
.ast-container,
.ast-grid-right-साइडबार,
#content,
#primary,
.ast-flex,
#main,
.site-content,
#page {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* Make sure our sections go full width */
.vt-hero,
.vt-vendor-band,
.vt-footer,
.vt-section-alt {
  width: 100% !important;
}

/* Remove any Astra sidebar */
#secondary,
.ast-sidebar-wrap,
.widget-area {
  display: none !important;
}

/* Remove Astra body padding */
body {
  padding: 0 !important;
  margin: 0 !important;
}

.ast-page-builder-template body,
body.ast-page-builder-template #content {
  padding: 0 !important;
}

/* =============================================
   SOLUTIONS PAGE
   ============================================= */
.vt-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.vt-solution-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all 0.2s;
}

.vt-solution-card:hover {
  border-color: var(--vt-mid);
  box-shadow: 0 8px 24px rgba(45, 53, 128, 0.08);
  transform: translateY(-2px);
}

.vt-solution-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(45, 53, 128, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-solution-body h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--vt-text);
}

.vt-solution-body p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.vt-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vt-solution-list li {
  font-size: 12px;
  color: var(--vt-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.vt-solution-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--vt-light);
  font-size: 11px;
}

/* CTA BAND */
.vt-cta-band {
  padding: 64px 32px;
  text-align: center;
}

.vt-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.vt-cta-inner h2 {
  color: var(--vt-white);
  margin-bottom: 12px;
}

.vt-cta-inner p {
  margin-bottom: 28px;
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.vt-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  margin-top: 24px;
}

.vt-filter-btn {
  padding: 7px 18px;
  background: transparent;
  border: 0.5px solid var(--vt-border-light);
  border-radius: 20px;
  font-size: 13px;
  color: var(--vt-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.vt-filter-btn:hover,
.vt-filter-btn.active {
  background: var(--vt-blue);
  color: var(--vt-white);
  border-color: var(--vt-blue);
}

.vt-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.vt-product-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 16px;
  transition: all 0.2s;
  align-items: flex-start;
}

.vt-product-card:hover {
  border-color: var(--vt-mid);
  box-shadow: 0 8px 24px rgba(45, 53, 128, 0.08);
  transform: translateY(-2px);
}

.vt-product-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  background: rgba(45, 53, 128, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vt-product-cat {
  font-size: 10px;
  color: var(--vt-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.vt-product-body h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--vt-text);
}

.vt-product-body p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.vt-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.vt-brand-tag {
  padding: 3px 10px;
  background: rgba(45, 53, 128, 0.06);
  border-radius: 10px;
  font-size: 11px;
  color: var(--vt-blue);
  font-weight: 500;
}

.vt-badge-green {
  padding: 3px 10px;
  background: rgba(29, 158, 117, 0.1);
  border-radius: 10px;
  font-size: 11px;
  color: #0f6e56;
  font-weight: 500;
}

.vt-badge-blue {
  padding: 3px 10px;
  background: rgba(45, 53, 128, 0.08);
  border-radius: 10px;
  font-size: 11px;
  color: var(--vt-mid);
  font-weight: 500;
}

/* =============================================
   PARTNERS PAGE — LOGO GRID
   ============================================= */
.vt-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.vt-logo-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: all 0.22s ease;
  text-align: center;
}

.vt-logo-card:hover {
  border-color: rgba(59, 64, 176, 0.35);
  box-shadow: 0 8px 28px rgba(45, 53, 128, 0.13);
  transform: translateY(-3px);
}

.vt-logo-img-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, rgb(14, 17, 72) 0%, rgb(26, 33, 118) 100%);
  padding: 16px;
  flex-shrink: 0;
}

.vt-logo-img {
  max-height: 44px;
  max-width: 108px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.22s ease;
}

.vt-logo-card:hover .vt-logo-img {
  opacity: 1;
}

.vt-logo-fallback {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.vt-logo-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 10px 14px;
  background: var(--vt-white);
}

.vt-logo-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--vt-muted);
  line-height: 1.3;
}

.vt-partner-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(45, 53, 128, 0.07);
  border-radius: 10px;
  font-size: 10px;
  color: var(--vt-mid);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* BENEFITS GRID */
.vt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.vt-benefit-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.vt-benefit-card:hover {
  border-color: var(--vt-mid);
  box-shadow: 0 8px 24px rgba(45, 53, 128, 0.08);
}

.vt-benefit-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.vt-benefit-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--vt-text);
}

.vt-benefit-card p {
  font-size: 13px;
  line-height: 1.6;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.vt-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .vt-about-grid {
    grid-template-columns: 1fr;
  }
}

.vt-about-text h2 {
  margin-bottom: 20px;
}

.vt-about-text p {
  margin-bottom: 16px;
}

.vt-btn-dark {
  display: inline-block;
  padding: 11px 24px;
  background: transparent;
  color: var(--vt-blue);
  border: 1px solid rgba(45, 53, 128, 0.3);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  transition: all 0.2s;
}

.vt-btn-dark:hover {
  background: var(--vt-blue);
  color: var(--vt-white);
}

.vt-about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vt-value-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 10px;
  transition: all 0.2s;
}

.vt-value-card:hover {
  border-color: var(--vt-mid);
  box-shadow: 0 4px 16px rgba(45, 53, 128, 0.06);
}

.vt-value-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.vt-value-card h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--vt-text);
}

.vt-value-card p {
  font-size: 13px;
  line-height: 1.6;
}

/* ABOUT STATS */
.vt-about-stats {
  padding: 48px 0;
}

.vt-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .vt-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vt-about-stat .vt-stat-num {
  font-size: 36px;
  font-weight: 500;
  color: var(--vt-light);
}

.vt-about-stat .vt-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

/* WHY CHOOSE US */
.vt-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.vt-why-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.vt-why-card:hover {
  border-color: var(--vt-mid);
  box-shadow: 0 8px 24px rgba(45, 53, 128, 0.08);
}

.vt-why-num {
  font-size: 28px;
  font-weight: 500;
  color: var(--vt-border-light);
  color: rgba(45, 53, 128, 0.2);
  margin-bottom: 12px;
  line-height: 1;
}

.vt-why-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--vt-text);
}

.vt-why-card p {
  font-size: 13px;
  line-height: 1.6;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.vt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .vt-contact-grid {
    grid-template-columns: 1fr;
  }
}

.vt-contact-info h2 {
  margin-bottom: 14px;
}

.vt-contact-info > p {
  margin-bottom: 32px;
}

.vt-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.vt-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vt-contact-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: rgba(45, 53, 128, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vt-contact-item h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.vt-contact-item p {
  font-size: 14px;
  color: var(--vt-text);
  margin: 0;
}

.vt-contact-quick h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.vt-quick-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vt-quick-link {
  font-size: 13px;
  color: var(--vt-mid);
  transition: color 0.2s;
}

.vt-quick-link:hover {
  color: var(--vt-blue);
}

/* FORM CARD */
.vt-form-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(45, 53, 128, 0.06);
}

.vt-form-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--vt-text);
}

.vt-form-card > p {
  font-size: 13px;
  margin-bottom: 24px;
}

.vt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 520px) {
  .vt-form-row {
    grid-template-columns: 1fr;
  }
}

.vt-form-group {
  margin-bottom: 16px;
}

.vt-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--vt-muted);
  margin-bottom: 6px;
}

.vt-form-group input,
.vt-form-group select,
.vt-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--vt-bg);
  border: 0.5px solid rgba(45, 53, 128, 0.2);
  border-radius: 7px;
  color: var(--vt-text);
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.vt-form-group input:focus,
.vt-form-group select:focus,
.vt-form-group textarea:focus {
  border-color: var(--vt-mid);
  background: var(--vt-white);
}

.vt-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* =============================================
   SMOOTH SCROLL
   ============================================= */
html {
  scroll-behavior: smooth;
}

/* =============================================
   HERO ANIMATED ORBS
   ============================================= */
.vt-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}
.vt-hero-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(59, 64, 176, 0.5) 0%,
    transparent 70%
  );
  top: -180px;
  right: -120px;
  animation: vt-orb-1 13s ease-in-out infinite;
}
.vt-hero-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(138, 188, 216, 0.32) 0%,
    transparent 70%
  );
  bottom: -120px;
  left: -100px;
  animation: vt-orb-2 15s ease-in-out infinite;
}
.vt-hero-orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(74, 86, 200, 0.38) 0%,
    transparent 70%
  );
  top: 35%;
  left: 8%;
  animation: vt-orb-3 9s ease-in-out infinite;
}

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes vt-orb-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(45px, -55px) scale(1.08);
  }
  66% {
    transform: translate(-28px, 32px) scale(0.94);
  }
}
@keyframes vt-orb-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-50px, 42px) scale(1.1);
  }
  70% {
    transform: translate(30px, -38px) scale(0.92);
  }
}
@keyframes vt-orb-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(22px, -28px) scale(1.22);
    opacity: 0.3;
  }
}
@keyframes vt-slide-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   HERO TEXT ENTRY ANIMATIONS
   ============================================= */
.vt-hero .vt-section-tag {
  animation: vt-slide-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.vt-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  animation: vt-slide-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}
.vt-hero .vt-hero-inner > p {
  animation: vt-slide-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}
.vt-hero-btns {
  animation: vt-slide-up 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* =============================================
   CURSOR SPOTLIGHT
   ============================================= */
#vt-cursor-spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#vt-cursor-spotlight.active {
  opacity: 1;
}
#vt-cursor-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    320px circle at var(--vt-mx, -999px) var(--vt-my, -999px),
    rgba(74, 86, 200, 0.05),
    transparent 40%
  );
}
#vt-cursor-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(59, 64, 176, 0.28) 1.3px,
    transparent 1.3px
  );
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(
    100px circle at var(--vt-mx, -999px) var(--vt-my, -999px),
    black 0%,
    transparent 100%
  );
  mask-image: radial-gradient(
    100px circle at var(--vt-mx, -999px) var(--vt-my, -999px),
    black 0%,
    transparent 100%
  );
  transition: background-image 0.2s;
}
#vt-cursor-dots.on-dark {
  background-image: radial-gradient(
    circle,
    rgba(138, 188, 216, 0.35) 1.3px,
    transparent 1.3px
  );
}

/* =============================================
   NAV SCROLL SHADOW
   ============================================= */
.vt-nav.vt-scrolled {
  background: rgba(18, 20, 80, 0.92);
  box-shadow: 0 1px 40px rgba(27, 30, 110, 0.25);
  border-bottom-color: rgba(138, 188, 216, 0.28);
}

/* =============================================
   ENHANCED CARD HOVER GLOW
   ============================================= */
.vt-card:hover,
.vt-solution-card:hover,
.vt-product-card:hover,
.vt-partner-card:hover,
.vt-benefit-card:hover,
.vt-why-card:hover,
.vt-value-card:hover,
.vt-news-card:hover {
  box-shadow:
    0 8px 32px rgba(59, 64, 176, 0.13),
    0 0 0 1px rgba(59, 64, 176, 0.13);
}

/* =============================================
   STATS BRIDGE REFINEMENT
   ============================================= */
.vt-stats-bridge {
  box-shadow: 0 8px 48px rgba(59, 64, 176, 0.1);
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
/* =============================================
   CARD TEXT SIZE OVERRIDES (end-of-file wins)
   ============================================= */
.vt-solution-card {
  padding: 32px;
  gap: 22px;
}
.vt-solution-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.vt-solution-body p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.vt-solution-list li {
  font-size: 13px;
  padding: 5px 0 5px 18px;
}
.vt-solution-icon {
  background: linear-gradient(
    135deg,
    rgba(59, 64, 176, 0.1) 0%,
    rgba(138, 188, 216, 0.08) 100%
  );
  width: 56px;
  height: 56px;
  border-radius: 12px;
}
.vt-solution-icon svg,
.vt-product-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  stroke: var(--vt-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vt-product-card {
  padding: 26px;
}
.vt-product-body h3 {
  font-size: 17px;
  font-weight: 600;
}
.vt-product-body p {
  font-size: 15px;
}

.vt-logo-grid {
  grid-template-columns: repeat(4, 1fr);
}
.vt-logo-img-wrap {
  height: 100px;
}
.vt-logo-img {
  max-height: 48px;
  max-width: 120px;
}

.vt-benefit-card {
  padding: 28px;
}
.vt-benefit-card h3 {
  font-size: 17px;
  font-weight: 600;
}
.vt-benefit-card p {
  font-size: 15px;
}
.vt-benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.vt-why-card {
  padding: 28px;
}
.vt-why-card h3 {
  font-size: 17px;
  font-weight: 600;
}
.vt-why-card p {
  font-size: 15px;
}
.vt-why-num {
  font-size: 32px;
  margin-bottom: 14px;
}

.vt-value-card {
  padding: 22px;
}
.vt-value-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.vt-value-card p {
  font-size: 14px;
}

.vt-news-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}
.vt-news-body p {
  font-size: 13px;
}
.vt-news-thumb img {
  height: 160px;
}
.vt-news-thumb-placeholder {
  height: 160px;
}

/* Fix: 3 equal columns always (single post won't stretch) */
.vt-news-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .vt-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .vt-news-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   HERO PARAGRAPH SIZE
   ============================================= */
.vt-hero .vt-hero-inner > p {
  font-size: 18px;
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
}

/* =============================================
   ABOUT PAGE STAT OVERRIDES (dark bg)
   ============================================= */
.vt-about-stat .vt-stat-num {
  font-size: 46px;
  font-weight: 600;
  color: var(--vt-light);
}
.vt-about-stat .vt-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.vt-contact-item p {
  font-size: 15px;
}
.vt-contact-info > p {
  font-size: 16px;
}

/* =============================================
   MOBILE HAMBURGER MENU
   ============================================= */
.vt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 6px;
  z-index: 300;
  flex-shrink: 0;
}
.vt-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
  transform-origin: center;
}
.vt-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vt-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.vt-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   RESPONSIVE — MOBILE NAV
   ============================================= */
/* =============================================
   LOGO IMAGE (save logo.png to theme root)
   ============================================= */
.vt-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.vt-logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Brightens the logo so it reads well on the dark transparent nav */
  filter: brightness(0) invert(1);
}
/* Footer logo — full colour on the dark footer */
.vt-footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* =============================================
   HERO h1 — LARGE IMPACTFUL HEADLINE
   ============================================= */
.vt-hero h1 {
  font-size: clamp(46px, 8vw, 76px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 22px 0 26px;
}
.vt-hero .vt-hero-inner > p {
  font-size: 19px;
  line-height: 1.75;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.68);
}

/* =============================================
   SECTION TAG — LINE DECORATION
   ============================================= */
.vt-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.vt-section-tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--vt-mid);
  border-radius: 1px;
  flex-shrink: 0;
}
.vt-dark-section .vt-section-tag::before,
.vt-vendor-band .vt-section-tag::before,
.vt-cta-band .vt-section-tag::before {
  background: var(--vt-light);
}

/* =============================================
   SECTION HEADING BREATHING ROOM
   ============================================= */
.vt-section > h2,
.vt-about-text h2,
.vt-contact-info h2,
.vt-cta-inner h2,
.vt-section-alt .vt-section > h2 {
  margin-top: 10px;
  margin-bottom: 18px;
}

/* =============================================
   VENDOR BAND SECTION
   ============================================= */
.vt-vendor-band {
  padding: 72px 32px;
}

/* =============================================
   STATS BRIDGE PADDING
   ============================================= */
.vt-stats-bridge {
  margin: -36px auto 0;
}
.vt-stat {
  padding: 32px 24px;
}

/* =============================================
   HERO PADDING REFINEMENT
   ============================================= */
.vt-hero {
  padding: 110px 40px 100px;
}

@media (max-width: 768px) {
  .vt-hamburger {
    display: flex;
  }

  .vt-nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    inset: 0;
    background: linear-gradient(140deg, var(--vt-navy) 0%, var(--vt-dark) 100%);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .vt-nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .vt-nav-links a {
    font-size: 20px;
    padding: 12px 32px;
    color: rgba(255, 255, 255, 0.75);
  }
  .vt-nav-links a:hover,
  .vt-nav-links a.active {
    color: #fff;
    background: rgba(74, 86, 200, 0.25);
    border-radius: 8px;
  }
  .vt-nav-cta {
    display: none;
  }
  .vt-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .vt-stats-bridge {
    grid-template-columns: 1fr;
  }
  .vt-hero-orb-1 {
    width: 300px;
    height: 300px;
  }
  .vt-hero-orb-2 {
    width: 260px;
    height: 260px;
  }
  .vt-hero-orb-3 {
    display: none;
  }
  .vt-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vt-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vt-solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SVG CARD ICONS (replace emoji)
   ============================================= */
.vt-card-icon,
.vt-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 64, 176, 0.1) 0%, rgba(138, 188, 216, 0.08) 100%);
  border: 0.5px solid var(--vt-border-light);
  flex-shrink: 0;
  margin-bottom: 18px;
}
.vt-card-icon svg,
.vt-value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--vt-mid);
}
.vt-value-card .vt-value-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

/* =============================================
   CLIENTS MARQUEE BAND
   ============================================= */
.vt-clients-band {
  padding: 52px 0;
  background: var(--vt-white);
  border-top: 0.5px solid var(--vt-border-light);
  border-bottom: 0.5px solid var(--vt-border-light);
  overflow: hidden;
}
.vt-clients-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--vt-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.vt-clients-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.vt-clients-track {
  display: flex;
  animation: vt-marquee 50s linear infinite;
  width: max-content;
}
.vt-clients-track:hover {
  animation-play-state: paused;
}
.vt-client-pill {
  white-space: nowrap;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vt-muted);
  border-right: 1px solid var(--vt-border-light);
  transition: color 0.2s;
  flex-shrink: 0;
}
.vt-client-pill:hover {
  color: var(--vt-blue);
}
@keyframes vt-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.vt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .vt-testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .vt-testimonials-grid { grid-template-columns: 1fr; }
}
.vt-testimonial-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.vt-testimonial-card:hover {
  border-color: var(--vt-mid);
  box-shadow: 0 8px 32px rgba(59, 64, 176, 0.1);
  transform: translateY(-3px);
}
.vt-testimonial-quote-mark {
  font-size: 42px;
  line-height: 1;
  color: var(--vt-mid);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: 8px;
  user-select: none;
}
.vt-testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--vt-text);
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}
.vt-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 0.5px solid var(--vt-border-light);
  padding-top: 18px;
}
.vt-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vt-mid) 0%, var(--vt-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
  overflow: hidden;
}
.vt-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vt-testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--vt-text);
  margin-bottom: 2px;
}
.vt-testimonial-org {
  font-size: 11px;
  color: var(--vt-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.vt-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  .vt-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vt-team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.vt-team-card {
  background: var(--vt-white);
  border: 0.5px solid var(--vt-border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
  text-align: center;
}
.vt-team-card:hover {
  border-color: var(--vt-mid);
  box-shadow: 0 8px 28px rgba(59, 64, 176, 0.1);
  transform: translateY(-3px);
}
.vt-team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(59, 64, 176, 0.07) 0%, rgba(138, 188, 216, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vt-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vt-team-photo svg {
  width: 52px;
  height: 52px;
  stroke: var(--vt-muted);
  opacity: 0.35;
}
.vt-team-info {
  padding: 16px 14px 18px;
}
.vt-team-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--vt-text);
  margin-bottom: 4px;
}
.vt-team-role {
  font-size: 11px;
  color: var(--vt-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.vt-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8500;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.vt-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.vt-whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
  flex-shrink: 0;
}
.vt-whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: vt-wp-pulse 2.8s ease-out infinite;
  z-index: -1;
}
@keyframes vt-wp-pulse {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* =============================================
   GOOGLE MAPS EMBED
   ============================================= */
.vt-map-wrap {
  margin-top: 36px;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--vt-border-light);
  box-shadow: 0 4px 20px rgba(45, 53, 128, 0.06);
}
.vt-map-wrap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* =============================================
   LOGO GRID RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .vt-logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .vt-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vt-logo-img-wrap { height: 70px; padding: 12px; }
  .vt-logo-img { max-height: 34px; max-width: 86px; }
  .vt-vendor-logo-card { min-width: 78px; padding: 8px 12px; height: 50px; }
  .vt-vendor-logo-img { max-height: 24px; max-width: 70px; }
}

/* =============================================
   LIGHT SECTION AMBIENT ELEMENTS
   ============================================= */
.vt-section-alt {
  position: relative;
  overflow: hidden; /* clip orbs to section bounds */
}
.vt-light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}
.vt-light-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(59, 64, 176, 0.13) 0%, transparent 70%);
  top: -200px; right: -180px;
  animation: vt-orb-1 14s ease-in-out infinite;
  animation-delay: -3s;
}
.vt-light-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(138, 188, 216, 0.17) 0%, transparent 70%);
  bottom: -140px; left: -120px;
  animation: vt-orb-2 16s ease-in-out infinite;
  animation-delay: -8s;
}

/* =============================================
   HIGHLIGHTS CAROUSEL
   ============================================= */
.vt-slideshow-section {
  padding: 48px 32px 72px;
}
.vt-slideshow {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--vt-navy);
  max-width: 1240px;
  margin: 0 auto;
}
.vt-slides {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.vt-slide {
  min-width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 72px 80px;
  position: relative;
  background-color: var(--vt-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.vt-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,12,58,0.90) 0%, rgba(28,36,115,0.68) 100%);
  pointer-events: none;
}
.vt-slide-content { position: relative; z-index: 1; max-width: 580px; }
.vt-slide-content .vt-section-tag { color: var(--vt-light); margin-bottom: 12px; }
.vt-slide-content h2 { color: #fff; font-size: clamp(22px, 3.5vw, 36px); line-height: 1.18; margin: 10px 0 16px; }
.vt-slide-content h2 em { font-style: normal; color: var(--vt-light); }
.vt-slide-content p { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.65; margin-bottom: 28px; }
.vt-slide-prev,
.vt-slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 0.5px solid rgba(255,255,255,0.22);
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; padding: 0; color: #fff;
}
.vt-slide-prev { left: 20px; }
.vt-slide-next { right: 20px; }
.vt-slide-prev:hover, .vt-slide-next:hover { background: rgba(255,255,255,0.24); }
.vt-slide-prev svg, .vt-slide-next svg { stroke: #fff; }
.vt-slide-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.vt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.28s ease;
}
.vt-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* =============================================
   CONTACT FORM 7 OVERRIDES
   ============================================= */
.wpcf7-form .vt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.wpcf7-form .vt-form-group { display: flex; flex-direction: column; gap: 6px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; padding: 12px 14px;
  border: 0.5px solid var(--vt-border-light);
  border-radius: 8px; font-family: var(--vt-body);
  font-size: 14px; color: var(--vt-text); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; box-sizing: border-box;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--vt-mid);
  box-shadow: 0 0 0 3px rgba(59,64,176,0.08);
}
.wpcf7-form .wpcf7-submit {
  width: 100%; padding: 14px 28px;
  background: var(--vt-blue); color: #fff; border: none;
  border-radius: 50px; font-family: var(--vt-body);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.22s ease; margin-top: 8px;
}
.wpcf7-form .wpcf7-submit:hover {
  background: var(--vt-mid); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59,64,176,0.3);
}
.wpcf7-response-output {
  margin-top: 16px !important; padding: 12px 16px !important;
  border-radius: 8px !important; font-size: 14px !important; border: none !important;
}
.wpcf7-mail-sent-ok { background: rgba(34,197,94,0.1) !important; color: #166534 !important; }
.wpcf7-validation-errors, .wpcf7-spam-blocked { background: rgba(239,68,68,0.08) !important; color: #991b1b !important; }
.wpcf7-not-valid-tip { color: #dc2626 !important; font-size: 12px !important; }
span.wpcf7-spinner { display: none !important; }

@media (max-width: 640px) {
  .wpcf7-form .vt-form-row { grid-template-columns: 1fr; }
  .vt-slideshow-section { padding: 0 16px 48px; }
  .vt-slide { padding: 48px 24px; min-height: 340px; }
  .vt-slide-prev { left: 10px; }
  .vt-slide-next { right: 10px; }
}
