/*
Theme Name: Veritex Child
Theme URI: https://veritex.in
Description: Veritex Building Solutions — Premium WordPress Child Theme for Astra. Complete custom design for architectural and building products supplier.
Author: Veritex Building Solutions
Author URI: https://veritex.in
Template: astra
Version: 1.0.0
Text Domain: veritex-child
Tags: custom-menu, featured-images, full-width-template, theme-options
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* =============================================================================
   VERITEX DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ============================================================================= */

:root {
  /* Brand Colors */
  --vtx-primary: #0B3A73;
  --vtx-primary-dark: #082D5A;
  --vtx-primary-light: #1A4E8C;
  --vtx-secondary: #123F7D;
  --vtx-accent: #EAF1FA;
  --vtx-gold: #C9A84C;
  --vtx-gold-light: #E2C16A;
  --vtx-white: #FFFFFF;
  --vtx-dark: #1F2937;
  --vtx-gray-900: #111827;
  --vtx-gray-800: #1F2937;
  --vtx-gray-700: #374151;
  --vtx-gray-600: #4B5563;
  --vtx-gray-500: #6B7280;
  --vtx-gray-400: #9CA3AF;
  --vtx-gray-300: #D1D5DB;
  --vtx-gray-200: #E5E7EB;
  --vtx-gray-100: #F3F4F6;
  --vtx-gray-50: #F9FAFB;

  /* Gradients */
  --vtx-gradient-primary: linear-gradient(135deg, #0B3A73 0%, #1A4E8C 50%, #123F7D 100%);
  --vtx-gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E2C16A 100%);
  --vtx-gradient-dark: linear-gradient(180deg, rgba(11,58,115,0.95) 0%, rgba(18,63,125,0.85) 100%);
  --vtx-gradient-hero: linear-gradient(135deg, rgba(11,58,115,0.92) 0%, rgba(18,63,125,0.75) 60%, rgba(11,58,115,0.5) 100%);

  /* Typography */
  --vtx-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vtx-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vtx-font-mono: 'Courier New', monospace;

  /* Font Sizes */
  --vtx-text-xs: 0.75rem;
  --vtx-text-sm: 0.875rem;
  --vtx-text-base: 1rem;
  --vtx-text-lg: 1.125rem;
  --vtx-text-xl: 1.25rem;
  --vtx-text-2xl: 1.5rem;
  --vtx-text-3xl: 1.875rem;
  --vtx-text-4xl: 2.25rem;
  --vtx-text-5xl: 3rem;
  --vtx-text-6xl: 3.75rem;

  /* Spacing */
  --vtx-space-1: 0.25rem;
  --vtx-space-2: 0.5rem;
  --vtx-space-3: 0.75rem;
  --vtx-space-4: 1rem;
  --vtx-space-6: 1.5rem;
  --vtx-space-8: 2rem;
  --vtx-space-10: 2.5rem;
  --vtx-space-12: 3rem;
  --vtx-space-16: 4rem;
  --vtx-space-20: 5rem;
  --vtx-space-24: 6rem;
  --vtx-space-32: 8rem;

  /* Shadows */
  --vtx-shadow-sm: 0 1px 3px rgba(11,58,115,0.08), 0 1px 2px rgba(11,58,115,0.06);
  --vtx-shadow: 0 4px 6px rgba(11,58,115,0.07), 0 2px 4px rgba(11,58,115,0.06);
  --vtx-shadow-md: 0 10px 15px rgba(11,58,115,0.10), 0 4px 6px rgba(11,58,115,0.05);
  --vtx-shadow-lg: 0 20px 25px rgba(11,58,115,0.12), 0 10px 10px rgba(11,58,115,0.04);
  --vtx-shadow-xl: 0 25px 50px rgba(11,58,115,0.18);
  --vtx-shadow-card: 0 4px 20px rgba(11,58,115,0.08);
  --vtx-shadow-hover: 0 12px 40px rgba(11,58,115,0.18);

  /* Border Radius */
  --vtx-radius-sm: 4px;
  --vtx-radius: 8px;
  --vtx-radius-md: 12px;
  --vtx-radius-lg: 16px;
  --vtx-radius-xl: 24px;
  --vtx-radius-full: 9999px;

  /* Transitions */
  --vtx-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --vtx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vtx-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-indexes */
  --vtx-z-dropdown: 100;
  --vtx-z-sticky: 200;
  --vtx-z-fixed: 300;
  --vtx-z-modal: 400;
  --vtx-z-toast: 500;

  /* Layout */
  --vtx-container-max: 1280px;
  --vtx-container-wide: 1440px;
  --vtx-section-padding: clamp(4rem, 8vw, 7rem) 0;
  --vtx-header-height: 80px;
  --vtx-topbar-height: 42px;
}

/* =============================================================================
   GLOBAL RESET & BASE STYLES
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--vtx-font-body);
  font-size: var(--vtx-text-base);
  line-height: 1.7;
  color: var(--vtx-gray-700);
  background-color: var(--vtx-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.vtx-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--vtx-primary);
  text-decoration: none;
  transition: var(--vtx-transition-fast);
}

a:hover {
  color: var(--vtx-gold);
}

ul, ol {
  list-style: none;
}

/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vtx-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vtx-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--vtx-gray-600);
}

p:last-child {
  margin-bottom: 0;
}

strong { font-weight: 700; }
em { font-style: italic; }

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */

.vtx-container {
  max-width: var(--vtx-container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.vtx-container-wide {
  max-width: var(--vtx-container-wide);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.vtx-section {
  padding: var(--vtx-section-padding);
  position: relative;
}

.vtx-section-alt {
  background-color: var(--vtx-gray-50);
}

.vtx-section-dark {
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
}

.vtx-section-dark h2,
.vtx-section-dark h3,
.vtx-section-dark h4 {
  color: var(--vtx-white);
}

.vtx-section-dark p {
  color: rgba(255,255,255,0.85);
}

/* Section Headers */
.vtx-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vtx-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vtx-accent);
  color: var(--vtx-primary);
  font-family: var(--vtx-font-heading);
  font-size: var(--vtx-text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: var(--vtx-radius-full);
  border: 1px solid rgba(11,58,115,0.15);
  margin-bottom: 1rem;
}

.vtx-section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--vtx-gold);
  border-radius: 50%;
}

.vtx-section-dark .vtx-section-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}

.vtx-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-family: var(--vtx-font-heading);
  color: var(--vtx-dark);
  margin-bottom: 1rem;
  position: relative;
}

.vtx-section-title span {
  color: var(--vtx-primary);
}

.vtx-section-dark .vtx-section-title {
  color: var(--vtx-white);
}

.vtx-section-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.vtx-section-title-line span {
  display: block;
  height: 2px;
  width: 60px;
  background: var(--vtx-gold);
  border-radius: 2px;
}

.vtx-section-title-line i {
  color: var(--vtx-gold);
  font-size: 1.25rem;
}

.vtx-section-subtitle {
  font-size: var(--vtx-text-lg);
  color: var(--vtx-gray-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.vtx-section-dark .vtx-section-subtitle {
  color: rgba(255,255,255,0.75);
}

/* =============================================================================
   BUTTONS
   ============================================================================= */

.vtx-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--vtx-font-heading);
  font-size: var(--vtx-text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: var(--vtx-radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--vtx-transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.vtx-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transition: var(--vtx-transition);
  z-index: 0;
}

.vtx-btn:hover::before {
  left: 0;
}

.vtx-btn span,
.vtx-btn i {
  position: relative;
  z-index: 1;
}

.vtx-btn-primary {
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  border-color: var(--vtx-primary);
  box-shadow: 0 4px 15px rgba(11,58,115,0.3);
}

.vtx-btn-primary:hover {
  background: var(--vtx-primary-dark);
  color: var(--vtx-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11,58,115,0.4);
}

.vtx-btn-secondary {
  background: transparent;
  color: var(--vtx-primary);
  border-color: var(--vtx-primary);
}

.vtx-btn-secondary:hover {
  background: var(--vtx-primary);
  color: var(--vtx-white);
  transform: translateY(-2px);
}

.vtx-btn-gold {
  background: var(--vtx-gradient-gold);
  color: var(--vtx-dark);
  border-color: var(--vtx-gold);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

.vtx-btn-gold:hover {
  background: var(--vtx-gold-light);
  color: var(--vtx-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.vtx-btn-white {
  background: var(--vtx-white);
  color: var(--vtx-primary);
  border-color: var(--vtx-white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vtx-btn-white:hover {
  background: var(--vtx-accent);
  color: var(--vtx-primary);
  transform: translateY(-2px);
}

.vtx-btn-outline-white {
  background: transparent;
  color: var(--vtx-white);
  border-color: rgba(255,255,255,0.7);
}

.vtx-btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--vtx-white);
  color: var(--vtx-white);
  transform: translateY(-2px);
}

.vtx-btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--vtx-text-base);
}

.vtx-btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: var(--vtx-text-sm);
}

/* =============================================================================
   TOP INFORMATION BAR
   ============================================================================= */

.vtx-topbar {
  background: var(--vtx-primary-dark);
  color: rgba(255,255,255,0.88);
  height: var(--vtx-topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 201;
}

.vtx-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

.vtx-topbar-left,
.vtx-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.vtx-topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-family: var(--vtx-font-heading);
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: var(--vtx-transition-fast);
  white-space: nowrap;
}

.vtx-topbar-item:hover {
  color: var(--vtx-gold);
}

.vtx-topbar-item i {
  font-size: 0.875rem;
  color: var(--vtx-gold);
}

.vtx-topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

.vtx-topbar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vtx-topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  transition: var(--vtx-transition-fast);
}

.vtx-topbar-social a:hover {
  background: var(--vtx-gold);
  color: var(--vtx-dark);
  transform: scale(1.1);
}

/* =============================================================================
   NAVIGATION / HEADER
   ============================================================================= */

.vtx-header {
  position: sticky;
  top: 0;
  z-index: var(--vtx-z-sticky);
  background: var(--vtx-white);
  transition: var(--vtx-transition);
  border-bottom: 1px solid rgba(11,58,115,0.06);
}

.vtx-header.vtx-scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(11,58,115,0.12);
  border-bottom-color: rgba(11,58,115,0.1);
}

.vtx-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--vtx-header-height);
  gap: 1.5rem;
}

/* Logo */
.vtx-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.vtx-logo img {
  height: 56px;
  width: auto;
  transition: var(--vtx-transition);
}

.vtx-logo:hover img {
  transform: scale(1.02);
}

/* Primary Navigation */
.vtx-nav {
  display: flex;
  align-items: center;
}

.vtx-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vtx-nav-menu > li {
  position: relative;
}

.vtx-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--vtx-gray-700);
  padding: 0.5rem 0.875rem;
  border-radius: var(--vtx-radius-sm);
  transition: var(--vtx-transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.vtx-nav-menu > li > a:hover,
.vtx-nav-menu > li.vtx-active > a {
  color: var(--vtx-primary);
  background: var(--vtx-accent);
}

.vtx-nav-menu > li > a i {
  font-size: 0.7rem;
  transition: var(--vtx-transition-fast);
}

.vtx-nav-menu > li:hover > a i {
  transform: rotate(180deg);
}

/* Active indicator */
.vtx-nav-menu > li > a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--vtx-gold);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.vtx-nav-menu > li.vtx-active > a::after,
.vtx-nav-menu > li:hover > a::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.vtx-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--vtx-white);
  border-radius: var(--vtx-radius-md);
  box-shadow: 0 20px 60px rgba(11,58,115,0.18), 0 0 0 1px rgba(11,58,115,0.06);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--vtx-transition);
  z-index: var(--vtx-z-dropdown);
}

.vtx-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--vtx-white);
  border-top: 0;
}

.vtx-nav-menu > li:hover .vtx-dropdown,
.vtx-nav-menu > li:focus-within .vtx-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.vtx-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--vtx-radius);
  color: var(--vtx-gray-700);
  font-family: var(--vtx-font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--vtx-transition-fast);
}

.vtx-dropdown-link:hover {
  background: var(--vtx-accent);
  color: var(--vtx-primary);
  transform: translateX(4px);
}

.vtx-dropdown-link i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vtx-accent);
  color: var(--vtx-primary);
  border-radius: var(--vtx-radius);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: var(--vtx-transition-fast);
}

.vtx-dropdown-link:hover i {
  background: var(--vtx-primary);
  color: var(--vtx-white);
}

/* Nav CTA Button */
.vtx-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile Toggle */
.vtx-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--vtx-radius);
  transition: var(--vtx-transition-fast);
  z-index: 301;
}

.vtx-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vtx-primary);
  border-radius: 2px;
  transition: var(--vtx-transition);
  transform-origin: center;
}

.vtx-menu-toggle:hover span {
  background: var(--vtx-gold);
}

.vtx-menu-toggle.vtx-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vtx-menu-toggle.vtx-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.vtx-menu-toggle.vtx-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.vtx-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--vtx-white);
  z-index: var(--vtx-z-fixed);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.vtx-mobile-nav.vtx-active {
  transform: translateX(0);
}

.vtx-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--vtx-gray-200);
  background: var(--vtx-white);
}

.vtx-mobile-nav-close {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--vtx-gray-100);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--vtx-gray-700);
  transition: var(--vtx-transition-fast);
}

.vtx-mobile-nav-close:hover {
  background: var(--vtx-primary);
  color: var(--vtx-white);
}

.vtx-mobile-menu {
  flex: 1;
  padding: 1.5rem;
  list-style: none;
}

.vtx-mobile-menu > li {
  border-bottom: 1px solid var(--vtx-gray-100);
}

.vtx-mobile-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--vtx-font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--vtx-dark);
  text-decoration: none;
  transition: var(--vtx-transition-fast);
}

.vtx-mobile-menu > li > a:hover {
  color: var(--vtx-primary);
}

.vtx-mobile-submenu {
  list-style: none;
  padding: 0 0 0.75rem 1rem;
  display: none;
}

.vtx-mobile-submenu.open {
  display: block;
}

.vtx-mobile-submenu li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.9375rem;
  color: var(--vtx-gray-600);
  text-decoration: none;
  font-family: var(--vtx-font-heading);
  transition: var(--vtx-transition-fast);
}

.vtx-mobile-submenu li a:hover {
  color: var(--vtx-primary);
  padding-left: 0.5rem;
}

.vtx-mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--vtx-gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vtx-mobile-nav-footer .vtx-btn {
  width: 100%;
  justify-content: center;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.vtx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vtx-primary-dark);
}

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

.vtx-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vtx-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--vtx-gradient-hero);
  z-index: 1;
}

.vtx-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.vtx-hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  animation: vtx-float 8s ease-in-out infinite;
}

.vtx-hero-particle:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -50px; animation-delay: 0s; }
.vtx-hero-particle:nth-child(2) { width: 300px; height: 300px; bottom: -80px; left: 10%; animation-delay: -3s; animation-duration: 10s; }
.vtx-hero-particle:nth-child(3) { width: 200px; height: 200px; top: 30%; right: 25%; animation-delay: -5s; animation-duration: 7s; background: rgba(255,255,255,0.05); }

@keyframes vtx-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.vtx-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: calc(var(--vtx-header-height) + 3rem) 0 5rem;
}

.vtx-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vtx-hero-text {
  animation: vtx-hero-in 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes vtx-hero-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.vtx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--vtx-gold);
  font-family: var(--vtx-font-heading);
  font-size: var(--vtx-text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: var(--vtx-radius-full);
  margin-bottom: 1.5rem;
}

.vtx-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--vtx-gold);
  border-radius: 50%;
  animation: vtx-pulse 2s infinite;
}

@keyframes vtx-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.vtx-hero-title {
  font-family: var(--vtx-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--vtx-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.vtx-hero-title span {
  color: var(--vtx-gold);
}

.vtx-hero-subtitle {
  font-size: var(--vtx-text-lg);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.vtx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.vtx-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.vtx-hero-stat {
  text-align: left;
}

.vtx-hero-stat-number {
  font-family: var(--vtx-font-heading);
  font-size: var(--vtx-text-3xl);
  font-weight: 800;
  color: var(--vtx-gold);
  line-height: 1;
}

.vtx-hero-stat-label {
  font-size: var(--vtx-text-sm);
  color: rgba(255,255,255,0.7);
  font-family: var(--vtx-font-heading);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Hero right: product showcase cards */
.vtx-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  animation: vtx-hero-visual-in 1.1s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes vtx-hero-visual-in {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.vtx-hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--vtx-radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--vtx-transition);
  cursor: pointer;
  text-decoration: none;
}

.vtx-hero-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
}

.vtx-hero-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--vtx-radius);
  margin-bottom: 1rem;
}

.vtx-hero-card-img-placeholder {
  width: 100%;
  height: 140px;
  border-radius: var(--vtx-radius);
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vtx-hero-card-img-placeholder i {
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
}

.vtx-hero-card-title {
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vtx-white);
  line-height: 1.3;
}

.vtx-hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vtx-radius);
  background: var(--vtx-gold);
  color: var(--vtx-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
}

/* Hero Scroll Indicator */
.vtx-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: vtx-scroll-bounce 2.5s ease-in-out infinite;
  text-decoration: none;
}

@keyframes vtx-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.vtx-hero-scroll span {
  font-family: var(--vtx-font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.vtx-hero-scroll i {
  color: var(--vtx-gold);
  font-size: 1.5rem;
}

/* =============================================================================
   COMPANY INTRO SECTION
   ============================================================================= */

.vtx-intro {
  padding: var(--vtx-section-padding);
}

.vtx-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.vtx-intro-image {
  position: relative;
  border-radius: var(--vtx-radius-xl);
  overflow: hidden;
}

.vtx-intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--vtx-radius-xl);
  transition: var(--vtx-transition-slow);
}

.vtx-intro-image:hover img {
  transform: scale(1.03);
}

.vtx-intro-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--vtx-white);
  border-radius: var(--vtx-radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--vtx-shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 220px;
}

.vtx-intro-image-badge i {
  width: 52px;
  height: 52px;
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vtx-radius);
  font-size: 1.375rem;
  flex-shrink: 0;
}

.vtx-intro-image-badge-text strong {
  display: block;
  font-family: var(--vtx-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--vtx-primary);
  line-height: 1;
}

.vtx-intro-image-badge-text span {
  font-size: 0.8125rem;
  color: var(--vtx-gray-500);
  font-family: var(--vtx-font-heading);
}

.vtx-intro-content .vtx-section-badge {
  text-align: left;
  display: inline-flex;
}

.vtx-intro-content .vtx-section-title {
  text-align: left;
}

.vtx-intro-content .vtx-section-title-line {
  justify-content: flex-start;
}

.vtx-intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}

.vtx-intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--vtx-accent);
  border-radius: var(--vtx-radius);
  border: 1px solid rgba(11,58,115,0.08);
  transition: var(--vtx-transition-fast);
}

.vtx-intro-feature:hover {
  background: var(--vtx-white);
  box-shadow: var(--vtx-shadow-card);
  transform: translateY(-2px);
}

.vtx-intro-feature i {
  color: var(--vtx-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.vtx-intro-feature-text strong {
  display: block;
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vtx-dark);
  margin-bottom: 0.25rem;
}

.vtx-intro-feature-text span {
  font-size: 0.85rem;
  color: var(--vtx-gray-500);
}

/* =============================================================================
   WHY CHOOSE VERITEX
   ============================================================================= */

.vtx-why-choose {
  padding: var(--vtx-section-padding);
  background: var(--vtx-gray-50);
}

.vtx-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.vtx-why-card {
  background: var(--vtx-white);
  border-radius: var(--vtx-radius-lg);
  padding: 2rem;
  border: 1px solid var(--vtx-gray-200);
  transition: var(--vtx-transition);
  position: relative;
  overflow: hidden;
}

.vtx-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--vtx-gradient-gold);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: var(--vtx-transition);
}

.vtx-why-card:hover {
  box-shadow: var(--vtx-shadow-hover);
  border-color: transparent;
  transform: translateY(-6px);
}

.vtx-why-card:hover::before {
  opacity: 1;
}

.vtx-why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--vtx-radius-md);
  background: var(--vtx-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--vtx-primary);
  margin-bottom: 1.25rem;
  transition: var(--vtx-transition);
}

.vtx-why-card:hover .vtx-why-icon {
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  transform: scale(1.05);
}

.vtx-why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: var(--vtx-dark);
}

.vtx-why-card p {
  font-size: 0.9375rem;
  color: var(--vtx-gray-500);
  margin: 0;
  line-height: 1.6;
}

/* =============================================================================
   PRODUCT CATEGORIES
   ============================================================================= */

.vtx-products {
  padding: var(--vtx-section-padding);
}

.vtx-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.vtx-product-card {
  background: var(--vtx-white);
  border-radius: var(--vtx-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vtx-gray-200);
  transition: var(--vtx-transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  group: true;
}

.vtx-product-card:hover {
  box-shadow: var(--vtx-shadow-hover);
  border-color: transparent;
  transform: translateY(-8px);
}

.vtx-product-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.vtx-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vtx-product-card:hover .vtx-product-card-img img {
  transform: scale(1.08);
}

.vtx-product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  font-family: var(--vtx-font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--vtx-radius-full);
}

.vtx-product-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--vtx-gradient-dark);
  opacity: 0;
  transition: var(--vtx-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vtx-product-card:hover .vtx-product-card-overlay {
  opacity: 1;
}

.vtx-product-card-overlay span {
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vtx-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vtx-product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vtx-product-card-body h3 {
  font-size: 1.1875rem;
  color: var(--vtx-dark);
  margin-bottom: 0.625rem;
  font-family: var(--vtx-font-heading);
}

.vtx-product-card-body p {
  font-size: 0.9375rem;
  color: var(--vtx-gray-500);
  margin: 0 0 1.25rem;
  flex: 1;
  line-height: 1.6;
}

.vtx-product-card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--vtx-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vtx-primary);
  transition: var(--vtx-transition-fast);
}

.vtx-product-card-link i {
  transition: transform 0.25s ease;
}

.vtx-product-card:hover .vtx-product-card-link {
  color: var(--vtx-gold);
}

.vtx-product-card:hover .vtx-product-card-link i {
  transform: translateX(5px);
}

/* =============================================================================
   STATS / COUNTER SECTION
   ============================================================================= */

.vtx-stats {
  padding: 4rem 0;
  background: var(--vtx-gradient-primary);
  position: relative;
  overflow: hidden;
}

.vtx-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.vtx-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.vtx-stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.vtx-stat-number {
  font-family: var(--vtx-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--vtx-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vtx-stat-label {
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.vtx-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  height: 100%;
}

/* =============================================================================
   INDUSTRIES SERVED
   ============================================================================= */

.vtx-industries {
  padding: var(--vtx-section-padding);
  background: var(--vtx-gray-50);
}

.vtx-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.vtx-industry-card {
  background: var(--vtx-white);
  border-radius: var(--vtx-radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid var(--vtx-gray-200);
  transition: var(--vtx-transition);
  cursor: default;
}

.vtx-industry-card:hover {
  background: var(--vtx-gradient-primary);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: var(--vtx-shadow-hover);
}

.vtx-industry-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--vtx-radius-md);
  background: var(--vtx-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--vtx-primary);
  margin: 0 auto 1rem;
  transition: var(--vtx-transition);
}

.vtx-industry-card:hover .vtx-industry-icon {
  background: rgba(255,255,255,0.15);
  color: var(--vtx-gold);
}

.vtx-industry-card h4 {
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--vtx-dark);
  transition: var(--vtx-transition);
}

.vtx-industry-card:hover h4 {
  color: var(--vtx-white);
}

/* =============================================================================
   OUR PROCESS
   ============================================================================= */

.vtx-process {
  padding: var(--vtx-section-padding);
}

.vtx-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.vtx-process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--vtx-primary), transparent);
  z-index: 0;
}

.vtx-process-step {
  text-align: center;
  padding: 0 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.vtx-process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  font-family: var(--vtx-font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--vtx-white);
  box-shadow: 0 0 0 4px rgba(11,58,115,0.15), var(--vtx-shadow-md);
  position: relative;
  transition: var(--vtx-transition);
}

.vtx-process-step:hover .vtx-process-number {
  background: var(--vtx-gradient-gold);
  color: var(--vtx-dark);
  transform: scale(1.1);
}

.vtx-process-step h3 {
  font-size: 1.0625rem;
  font-family: var(--vtx-font-heading);
  color: var(--vtx-dark);
  margin-bottom: 0.625rem;
}

.vtx-process-step p {
  font-size: 0.9rem;
  color: var(--vtx-gray-500);
  margin: 0;
  line-height: 1.6;
}

/* =============================================================================
   CERTIFICATIONS
   ============================================================================= */

.vtx-certifications {
  padding: 4rem 0;
  background: var(--vtx-accent);
  border-top: 1px solid rgba(11,58,115,0.08);
  border-bottom: 1px solid rgba(11,58,115,0.08);
}

.vtx-certifications-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.vtx-cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.vtx-cert-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--vtx-white);
  border-radius: var(--vtx-radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--vtx-shadow-card);
  border: 1px solid rgba(11,58,115,0.08);
  transition: var(--vtx-transition);
  min-width: 200px;
}

.vtx-cert-badge:hover {
  box-shadow: var(--vtx-shadow-hover);
  transform: translateY(-3px);
  border-color: var(--vtx-gold);
}

.vtx-cert-badge i {
  width: 48px;
  height: 48px;
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vtx-radius);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.vtx-cert-badge-text strong {
  display: block;
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--vtx-dark);
}

.vtx-cert-badge-text span {
  font-size: 0.8125rem;
  color: var(--vtx-gray-500);
}

/* =============================================================================
   TESTIMONIALS
   ============================================================================= */

.vtx-testimonials {
  padding: var(--vtx-section-padding);
  background: var(--vtx-gray-50);
}

.vtx-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.vtx-testimonial-card {
  background: var(--vtx-white);
  border-radius: var(--vtx-radius-lg);
  padding: 2rem;
  border: 1px solid var(--vtx-gray-200);
  transition: var(--vtx-transition);
  position: relative;
}

.vtx-testimonial-card:hover {
  box-shadow: var(--vtx-shadow-hover);
  border-color: transparent;
  transform: translateY(-4px);
}

.vtx-testimonial-quote {
  font-size: 3rem;
  color: var(--vtx-gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.vtx-testimonial-text {
  font-size: 0.9375rem;
  color: var(--vtx-gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.vtx-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--vtx-gray-200);
  padding-top: 1.25rem;
}

.vtx-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vtx-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vtx-white);
  font-family: var(--vtx-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.vtx-testimonial-author-info strong {
  display: block;
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--vtx-dark);
}

.vtx-testimonial-author-info span {
  font-size: 0.8125rem;
  color: var(--vtx-gray-500);
}

.vtx-testimonial-stars {
  color: var(--vtx-gold);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* =============================================================================
   FAQ SECTION
   ============================================================================= */

.vtx-faq {
  padding: var(--vtx-section-padding);
}

.vtx-faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vtx-faq-item {
  background: var(--vtx-white);
  border: 1px solid var(--vtx-gray-200);
  border-radius: var(--vtx-radius);
  overflow: hidden;
  transition: var(--vtx-transition);
}

.vtx-faq-item.open {
  border-color: var(--vtx-primary);
  box-shadow: 0 0 0 3px rgba(11,58,115,0.06);
}

.vtx-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--vtx-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vtx-dark);
  transition: var(--vtx-transition-fast);
  user-select: none;
}

.vtx-faq-question:hover {
  color: var(--vtx-primary);
}

.vtx-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vtx-accent);
  color: var(--vtx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: var(--vtx-transition);
}

.vtx-faq-item.open .vtx-faq-icon {
  background: var(--vtx-primary);
  color: var(--vtx-white);
  transform: rotate(180deg);
}

.vtx-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vtx-faq-item.open .vtx-faq-answer {
  max-height: 400px;
}

.vtx-faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--vtx-gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--vtx-gray-100);
  padding-top: 1.125rem;
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */

.vtx-cta {
  padding: var(--vtx-section-padding);
  background: var(--vtx-gradient-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.vtx-cta::before,
.vtx-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.vtx-cta::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.vtx-cta::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -80px;
}

.vtx-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.vtx-cta-inner h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--vtx-white);
  margin-bottom: 1rem;
}

.vtx-cta-inner p {
  font-size: var(--vtx-text-lg);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
}

.vtx-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   DOWNLOAD BROCHURE CTA
   ============================================================================= */

.vtx-download-cta {
  padding: 5rem 0;
  background: var(--vtx-accent);
}

.vtx-download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.vtx-download-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--vtx-dark);
  margin-bottom: 0.5rem;
}

.vtx-download-text p {
  color: var(--vtx-gray-500);
  font-size: var(--vtx-text-lg);
  margin: 0;
}

/* =============================================================================
   TECHNICAL SUPPORT SECTION
   ============================================================================= */

.vtx-support {
  padding: var(--vtx-section-padding);
}

.vtx-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.vtx-support-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.vtx-support-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vtx-support-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vtx-radius);
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.vtx-support-feature-text h4 {
  font-family: var(--vtx-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vtx-dark);
  margin-bottom: 0.25rem;
}

.vtx-support-feature-text p {
  font-size: 0.9rem;
  color: var(--vtx-gray-500);
  margin: 0;
}

.vtx-support-visual {
  background: var(--vtx-gradient-primary);
  border-radius: var(--vtx-radius-xl);
  padding: 3rem 2.5rem;
  color: var(--vtx-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vtx-support-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vtx-support-visual h3 {
  font-size: 1.5rem;
  color: var(--vtx-white);
  margin-bottom: 0.75rem;
}

.vtx-support-visual p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.vtx-support-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.vtx-support-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--vtx-radius);
  padding: 0.875rem 1.25rem;
}

.vtx-support-contact-item i {
  font-size: 1.25rem;
  color: var(--vtx-gold);
  width: 24px;
  text-align: center;
}

.vtx-support-contact-item span {
  color: rgba(255,255,255,0.9);
  font-family: var(--vtx-font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.vtx-footer {
  background: var(--vtx-gray-900);
  color: var(--vtx-gray-400);
}

.vtx-footer-top {
  padding: 5rem 0 3rem;
}

.vtx-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.vtx-footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.vtx-footer-brand p {
  font-size: 0.9375rem;
  color: var(--vtx-gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vtx-footer-social {
  display: flex;
  gap: 0.625rem;
}

.vtx-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--vtx-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  transition: var(--vtx-transition-fast);
  text-decoration: none;
}

.vtx-footer-social a:hover {
  background: var(--vtx-primary);
  color: var(--vtx-white);
  transform: translateY(-3px);
}

.vtx-footer-col h4 {
  font-family: var(--vtx-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--vtx-white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--vtx-gold);
  display: inline-block;
}

.vtx-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vtx-footer-links a {
  font-size: 0.9375rem;
  color: var(--vtx-gray-500);
  text-decoration: none;
  transition: var(--vtx-transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vtx-footer-links a:hover {
  color: var(--vtx-gold);
  padding-left: 4px;
}

.vtx-footer-links a::before {
  content: '›';
  color: var(--vtx-gold);
  font-size: 1.125rem;
  transition: var(--vtx-transition-fast);
}

.vtx-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vtx-footer-contact-item {
  display: flex;
  gap: 0.875rem;
}

.vtx-footer-contact-item i {
  color: var(--vtx-gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.vtx-footer-contact-item a,
.vtx-footer-contact-item span {
  font-size: 0.9375rem;
  color: var(--vtx-gray-500);
  text-decoration: none;
  line-height: 1.5;
  transition: var(--vtx-transition-fast);
}

.vtx-footer-contact-item a:hover {
  color: var(--vtx-gold);
}

.vtx-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0;
}

.vtx-footer-bottom {
  padding: 1.5rem 0;
}

.vtx-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.vtx-footer-copyright {
  font-size: 0.875rem;
  color: var(--vtx-gray-600);
}

.vtx-footer-copyright a {
  color: var(--vtx-gold);
  text-decoration: none;
  font-weight: 600;
}

.vtx-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.vtx-footer-legal a {
  font-size: 0.875rem;
  color: var(--vtx-gray-600);
  text-decoration: none;
  transition: var(--vtx-transition-fast);
}

.vtx-footer-legal a:hover {
  color: var(--vtx-gold);
}

/* =============================================================================
   FLOATING BUTTONS
   ============================================================================= */

/* Back to Top */
.vtx-back-to-top {
  position: fixed;
  bottom: 7rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  z-index: var(--vtx-z-fixed);
  box-shadow: 0 4px 15px rgba(11,58,115,0.35);
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--vtx-transition);
  text-decoration: none;
}

.vtx-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vtx-back-to-top:hover {
  background: var(--vtx-primary-dark);
  color: var(--vtx-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11,58,115,0.4);
}

/* WhatsApp Float Button */
.vtx-whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--vtx-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  cursor: pointer;
  z-index: var(--vtx-z-fixed);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: var(--vtx-transition);
}

.vtx-whatsapp-float:hover {
  background: #1da851;
  color: var(--vtx-white);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}

.vtx-whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: vtx-whatsapp-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  z-index: -1;
}

@keyframes vtx-whatsapp-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* WhatsApp tooltip */
.vtx-whatsapp-float::after {
  content: 'Chat with us';
  position: absolute;
  right: calc(100% + 12px);
  background: var(--vtx-dark);
  color: var(--vtx-white);
  font-family: var(--vtx-font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--vtx-radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--vtx-transition-fast);
}

.vtx-whatsapp-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================================================
   PAGE HERO (Inner pages)
   ============================================================================= */

.vtx-page-hero {
  background: var(--vtx-gradient-primary);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vtx-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vtx-page-hero-content {
  position: relative;
  z-index: 1;
}

.vtx-page-hero h1 {
  color: var(--vtx-white);
  margin-bottom: 1rem;
}

.vtx-page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: var(--vtx-text-lg);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.vtx-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--vtx-font-heading);
}

.vtx-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--vtx-transition-fast);
}

.vtx-breadcrumb a:hover {
  color: var(--vtx-gold);
}

.vtx-breadcrumb i {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.vtx-breadcrumb span {
  color: var(--vtx-gold);
}

/* =============================================================================
   PRODUCT PAGE SPECIFIC
   ============================================================================= */

.vtx-product-overview {
  padding: var(--vtx-section-padding);
}

.vtx-product-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vtx-product-gallery {
  position: sticky;
  top: 100px;
}

.vtx-product-main-img {
  border-radius: var(--vtx-radius-xl);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--vtx-shadow-xl);
}

.vtx-product-main-img img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 0.75rem;
}

.vtx-product-thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}

.vtx-product-thumb {
  border-radius: var(--vtx-radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--vtx-transition-fast);
}

.vtx-product-thumb.active,
.vtx-product-thumb:hover {
  border-color: var(--vtx-primary);
}

.vtx-product-thumb img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 0.25rem;
}

.vtx-product-info .vtx-product-tag {
  display: inline-block;
  background: var(--vtx-accent);
  color: var(--vtx-primary);
  font-family: var(--vtx-font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.3rem 0.875rem;
  border-radius: var(--vtx-radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(11,58,115,0.12);
}

.vtx-product-info h1 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  color: var(--vtx-dark);
  margin-bottom: 1.25rem;
}

.vtx-product-info-description {
  font-size: 1rem;
  color: var(--vtx-gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.vtx-product-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.vtx-product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--vtx-gray-700);
  font-family: var(--vtx-font-heading);
  font-weight: 500;
}

.vtx-product-features-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--vtx-gradient-primary);
  color: var(--vtx-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.vtx-product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Tech Specs Table */
.vtx-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.vtx-specs-table tr {
  border-bottom: 1px solid var(--vtx-gray-200);
  transition: var(--vtx-transition-fast);
}

.vtx-specs-table tr:hover {
  background: var(--vtx-accent);
}

.vtx-specs-table tr:last-child {
  border-bottom: none;
}

.vtx-specs-table td {
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
}

.vtx-specs-table td:first-child {
  font-family: var(--vtx-font-heading);
  font-weight: 600;
  color: var(--vtx-dark);
  width: 40%;
}

.vtx-specs-table td:last-child {
  color: var(--vtx-gray-600);
}

/* =============================================================================
   CONTACT PAGE
   ============================================================================= */

.vtx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.vtx-contact-info-card {
  background: var(--vtx-gradient-primary);
  border-radius: var(--vtx-radius-xl);
  padding: 2.5rem;
  color: var(--vtx-white);
}

.vtx-contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--vtx-white);
  margin-bottom: 0.625rem;
}

.vtx-contact-info-card > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.vtx-contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vtx-contact-detail i {
  width: 44px;
  height: 44px;
  border-radius: var(--vtx-radius);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--vtx-gold);
  flex-shrink: 0;
}

.vtx-contact-detail-text strong {
  display: block;
  font-family: var(--vtx-font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.vtx-contact-detail-text a,
.vtx-contact-detail-text span {
  color: rgba(255,255,255,0.92);
  font-size: 0.9375rem;
  text-decoration: none;
  line-height: 1.5;
}

.vtx-contact-detail-text a:hover {
  color: var(--vtx-gold);
}

.vtx-contact-hours {
  background: rgba(255,255,255,0.08);
  border-radius: var(--vtx-radius-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.vtx-contact-hours h4 {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vtx-contact-hours h4 i {
  color: var(--vtx-gold);
}

.vtx-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}

.vtx-hours-item:last-child {
  border-bottom: none;
}

.vtx-hours-item span:first-child {
  color: rgba(255,255,255,0.8);
}

.vtx-hours-item span:last-child {
  color: var(--vtx-gold);
  font-weight: 600;
  font-family: var(--vtx-font-heading);
  font-size: 0.875rem;
}

/* Contact Form */
.vtx-contact-form-card {
  background: var(--vtx-white);
  border-radius: var(--vtx-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--vtx-shadow-lg);
  border: 1px solid var(--vtx-gray-200);
}

.vtx-contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--vtx-dark);
  margin-bottom: 0.5rem;
}

.vtx-contact-form-card > p {
  color: var(--vtx-gray-500);
  margin-bottom: 2rem;
}

.vtx-form-group {
  margin-bottom: 1.25rem;
}

.vtx-form-group label {
  display: block;
  font-family: var(--vtx-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vtx-dark);
  margin-bottom: 0.5rem;
}

.vtx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vtx-form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: var(--vtx-font-body);
  font-size: 0.9375rem;
  color: var(--vtx-dark);
  background: var(--vtx-gray-50);
  border: 1.5px solid var(--vtx-gray-200);
  border-radius: var(--vtx-radius);
  outline: none;
  transition: var(--vtx-transition-fast);
}

.vtx-form-control::placeholder {
  color: var(--vtx-gray-400);
}

.vtx-form-control:focus {
  border-color: var(--vtx-primary);
  background: var(--vtx-white);
  box-shadow: 0 0 0 3px rgba(11,58,115,0.08);
}

textarea.vtx-form-control {
  resize: vertical;
  min-height: 130px;
}

select.vtx-form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.vtx-form-submit {
  width: 100%;
  justify-content: center;
}

/* =============================================================================
   MAPS PLACEHOLDER
   ============================================================================= */

.vtx-map-section {
  background: var(--vtx-gray-100);
  border-radius: var(--vtx-radius-xl);
  overflow: hidden;
  margin: 4rem 0;
  height: 400px;
  position: relative;
}

.vtx-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vtx-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vtx-accent) 0%, rgba(11,58,115,0.06) 100%);
  gap: 1rem;
}

.vtx-map-placeholder i {
  font-size: 3rem;
  color: var(--vtx-primary);
}

.vtx-map-placeholder h3 {
  font-size: 1.375rem;
  color: var(--vtx-dark);
}

.vtx-map-placeholder p {
  color: var(--vtx-gray-500);
  text-align: center;
  max-width: 400px;
}

/* =============================================================================
   404 PAGE
   ============================================================================= */

.vtx-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--vtx-gray-50);
}

.vtx-404-content {
  max-width: 600px;
}

.vtx-404-number {
  font-family: var(--vtx-font-heading);
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--vtx-primary);
  opacity: 0.15;
  margin-bottom: 1rem;
  display: block;
}

.vtx-404-icon {
  font-size: 4rem;
  color: var(--vtx-gold);
  margin-bottom: 1.5rem;
}

.vtx-404-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.vtx-404-content p {
  font-size: var(--vtx-text-lg);
  color: var(--vtx-gray-500);
  margin-bottom: 2.5rem;
}

/* =============================================================================
   PROJECTS PAGE
   ============================================================================= */

.vtx-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.vtx-project-card {
  border-radius: var(--vtx-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vtx-gray-200);
  background: var(--vtx-white);
  transition: var(--vtx-transition);
}

.vtx-project-card:hover {
  box-shadow: var(--vtx-shadow-hover);
  transform: translateY(-5px);
  border-color: transparent;
}

.vtx-project-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--vtx-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vtx-project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vtx-project-card:hover .vtx-project-card-img img {
  transform: scale(1.06);
}

.vtx-project-placeholder-label {
  color: rgba(255,255,255,0.7);
  font-family: var(--vtx-font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  position: absolute;
  text-align: center;
  padding: 1rem;
}

.vtx-project-card-body {
  padding: 1.5rem;
}

.vtx-project-card-body .vtx-section-badge {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.vtx-project-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.vtx-project-card-body p {
  font-size: 0.9rem;
  color: var(--vtx-gray-500);
  margin: 0;
}

/* =============================================================================
   DOWNLOADS PAGE
   ============================================================================= */

.vtx-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vtx-download-card {
  background: var(--vtx-white);
  border: 1px solid var(--vtx-gray-200);
  border-radius: var(--vtx-radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--vtx-transition);
}

.vtx-download-card:hover {
  box-shadow: var(--vtx-shadow-hover);
  border-color: transparent;
  transform: translateY(-4px);
}

.vtx-download-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--vtx-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--vtx-gold);
  border: 1px solid rgba(201,168,76,0.2);
}

.vtx-download-card h3 {
  font-size: 1.0625rem;
  color: var(--vtx-dark);
}

.vtx-download-card p {
  font-size: 0.9rem;
  color: var(--vtx-gray-500);
  margin: 0;
  flex: 1;
}

.vtx-download-card-meta {
  font-size: 0.8125rem;
  color: var(--vtx-gray-400);
  font-family: var(--vtx-font-heading);
}

/* =============================================================================
   ASTRA OVERRIDES — Prevent conflicts
   ============================================================================= */

/* Remove default Astra styles that conflict */
.ast-separate-container .ast-article-post,
.site-content .ast-container {
  padding: 0;
}

/* Ensure our header takes precedence */
body.vtx-active-theme .main-header-bar {
  display: none !important;
}

/* Remove Astra's default page title */
.ast-page-title-bar {
  display: none !important;
}

/* Remove Astra's breadcrumbs (we handle them) */
.ast-breadcrumbs-wrapper {
  display: none !important;
}

/* =============================================================================
   REVEAL ANIMATIONS
   ============================================================================= */

.vtx-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vtx-reveal.vtx-revealed {
  opacity: 1;
  transform: translateY(0);
}

.vtx-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vtx-reveal-left.vtx-revealed {
  opacity: 1;
  transform: translateX(0);
}

.vtx-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vtx-reveal-right.vtx-revealed {
  opacity: 1;
  transform: translateX(0);
}

.vtx-reveal-delay-1 { transition-delay: 0.1s; }
.vtx-reveal-delay-2 { transition-delay: 0.2s; }
.vtx-reveal-delay-3 { transition-delay: 0.3s; }
.vtx-reveal-delay-4 { transition-delay: 0.4s; }
.vtx-reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .vtx-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vtx-hero-actions {
    justify-content: center;
  }

  .vtx-hero-stats {
    justify-content: center;
  }

  .vtx-hero-visual {
    grid-template-columns: repeat(4, 1fr);
  }

  .vtx-intro-grid {
    grid-template-columns: 1fr;
  }

  .vtx-intro-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .vtx-intro-content .vtx-section-title,
  .vtx-intro-content .vtx-section-badge,
  .vtx-intro-content .vtx-section-title-line {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .vtx-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .vtx-stat-item {
    padding: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .vtx-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .vtx-support-grid {
    grid-template-columns: 1fr;
  }

  .vtx-contact-grid {
    grid-template-columns: 1fr;
  }

  .vtx-product-overview-grid {
    grid-template-columns: 1fr;
  }

  .vtx-product-gallery {
    position: static;
  }

  .vtx-topbar-left .vtx-topbar-item:nth-child(3),
  .vtx-topbar-left .vtx-topbar-divider:nth-child(4) {
    display: none;
  }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  :root {
    --vtx-header-height: 68px;
    --vtx-topbar-height: 36px;
  }

  .vtx-nav {
    display: none;
  }

  .vtx-menu-toggle {
    display: flex;
  }

  .vtx-nav-cta .vtx-btn:not(:last-child) {
    display: none;
  }

  .vtx-hero-visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .vtx-hero-card:nth-child(3),
  .vtx-hero-card:nth-child(4) {
    display: none;
  }

  .vtx-intro-features {
    grid-template-columns: 1fr;
  }

  .vtx-process-steps::before {
    display: none;
  }

  .vtx-process-step {
    padding: 0 0 2rem;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
  }

  .vtx-process-number {
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 1.125rem;
  }

  .vtx-process-step-text h3 {
    margin-top: 0.25rem;
  }

  .vtx-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vtx-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .vtx-topbar {
    display: none;
  }

  .vtx-intro-image img {
    height: 320px;
  }

  .vtx-intro-image-badge {
    display: none;
  }

  .vtx-products-grid {
    grid-template-columns: 1fr;
  }

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

  .vtx-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vtx-cert-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .vtx-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .vtx-download-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .vtx-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .vtx-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vtx-topbar-left {
    display: none;
  }

  .vtx-projects-grid {
    grid-template-columns: 1fr;
  }

  .vtx-downloads-grid {
    grid-template-columns: 1fr;
  }

  .vtx-product-features-list {
    grid-template-columns: 1fr;
  }

  .vtx-hero-subtitle {
    max-width: 100%;
  }
}

/* Small Mobile: ≤480px */
@media (max-width: 480px) {
  .vtx-hero-visual {
    grid-template-columns: 1fr 1fr;
  }

  .vtx-hero-card:nth-child(2) {
    display: none;
  }

  .vtx-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vtx-industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vtx-btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
}

/* Print Styles */
@media print {
  .vtx-topbar,
  .vtx-header,
  .vtx-footer,
  .vtx-whatsapp-float,
  .vtx-back-to-top,
  .vtx-mobile-nav {
    display: none !important;
  }
}


/* Contact form status alerts */
.vtx-form-alert {
    margin: 0 0 1.25rem;
    padding: 0.95rem 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.45;
}
.vtx-form-alert-success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534;
}
.vtx-form-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}


/* Header search */
.vtx-header-search { display: flex; align-items: center; height: 44px; border: 1px solid rgba(11,58,115,.22); border-radius: 999px; overflow: hidden; background: #fff; box-shadow: 0 8px 22px rgba(11,58,115,.08); }
.vtx-header-search input { width: 150px; border: 0; outline: 0; padding: 0 .85rem; font-size: .875rem; color: var(--vtx-text); background: transparent; }
.vtx-header-search button { width: 44px; height: 44px; border: 0; background: var(--vtx-primary); color: #fff; cursor: pointer; transition: var(--vtx-transition-fast); }
.vtx-header-search button:hover { background: var(--vtx-primary-dark); }
.vtx-mobile-search { display: flex; align-items: center; margin: .75rem 0; border: 1px solid rgba(11,58,115,.18); border-radius: 999px; overflow: hidden; background: #fff; }
.vtx-mobile-search input { flex: 1; border: 0; outline: 0; padding: .8rem 1rem; }
.vtx-mobile-search button { width: 48px; border: 0; background: var(--vtx-primary); color: #fff; }
@media (max-width: 1280px) { .vtx-header-search input { width: 110px; } }
@media (max-width: 1160px) { .vtx-header-search { display: none; } }

/* =============================================================================
   ABOUT PAGE — VERITEX COMPLETE ABOUT US
   ============================================================================= */
.vtx-about-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 55%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}
.vtx-about-breadcrumb {
  margin-bottom: 2rem;
  color: var(--vtx-gray-600);
}
.vtx-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.vtx-about-hero-content h1 {
  color: var(--vtx-primary);
  margin-bottom: 1rem;
  max-width: 720px;
}
.vtx-about-hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 660px;
}
.vtx-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.vtx-about-hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(11, 58, 115, 0.18);
  border: 1px solid rgba(11, 58, 115, 0.08);
  background: #fff;
}
.vtx-about-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.vtx-about-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.vtx-about-image-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--vtx-shadow-xl);
  background: #fff;
}
.vtx-about-image-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}
.vtx-about-content h2,
.vtx-about-why-content h2,
.vtx-about-journey-card h2,
.vtx-about-cta-card h2 {
  color: var(--vtx-primary);
  margin-bottom: 1rem;
}
.vtx-about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.vtx-about-highlight {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .7rem;
  align-items: start;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(11,58,115,.09);
  border-radius: 16px;
  box-shadow: var(--vtx-shadow-sm);
}
.vtx-about-highlight i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--vtx-primary);
  background: var(--vtx-accent);
  font-size: 1.15rem;
}
.vtx-about-highlight strong {
  color: var(--vtx-dark);
  font-family: var(--vtx-font-heading);
}
.vtx-about-highlight span {
  color: var(--vtx-gray-600);
  font-size: .92rem;
}
.vtx-about-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.vtx-about-product-card {
  display: block;
  padding: 1.7rem;
  background: #fff;
  border: 1px solid rgba(11,58,115,.08);
  border-radius: 20px;
  box-shadow: var(--vtx-shadow-card);
  min-height: 250px;
  transition: var(--vtx-transition);
}
.vtx-about-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vtx-shadow-hover);
  color: var(--vtx-primary);
}
.vtx-about-product-card i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--vtx-gradient-primary);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
}
.vtx-about-product-card h3 {
  font-size: 1.15rem;
  color: var(--vtx-primary);
  margin-bottom: .7rem;
}
.vtx-about-product-card p {
  font-size: .95rem;
  color: var(--vtx-gray-600);
}
.vtx-about-why-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 26px;
  background: linear-gradient(135deg, #fff 0%, #f7fbff 100%);
  box-shadow: var(--vtx-shadow-card);
  border: 1px solid rgba(11,58,115,.08);
}
.vtx-about-checklist {
  margin-top: 1.5rem;
  display: grid;
  gap: .9rem;
}
.vtx-about-checklist li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: var(--vtx-gray-700);
}
.vtx-about-checklist i {
  color: var(--vtx-primary);
  margin-top: .25rem;
}
.vtx-about-team-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--vtx-shadow-lg);
}
.vtx-about-team-card img {
  width: 100%;
  min-height: 270px;
  object-fit: cover;
}
.vtx-about-team-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(11,58,115,.88);
  color: #fff;
  backdrop-filter: blur(10px);
}
.vtx-about-team-overlay strong,
.vtx-about-team-overlay span {
  display: block;
  color: #fff;
}
.vtx-about-team-overlay span {
  opacity: .86;
  font-size: .9rem;
}
.vtx-about-journey-card {
  background: #fff;
  border: 1px solid rgba(11,58,115,.08);
  border-radius: 26px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--vtx-shadow-card);
}
.vtx-about-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}
.vtx-about-milestone {
  text-align: center;
  padding: 1.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(11,58,115,.08);
}
.vtx-about-milestone span {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vtx-gradient-primary);
  color: #fff;
  font-family: var(--vtx-font-heading);
  font-weight: 800;
}
.vtx-about-milestone:nth-child(even) span {
  background: var(--vtx-gradient-gold);
  color: var(--vtx-primary-dark);
}
.vtx-about-milestone strong {
  display: block;
  color: var(--vtx-primary);
  font-family: var(--vtx-font-heading);
  margin-bottom: .45rem;
}
.vtx-about-milestone p {
  font-size: .92rem;
}
.vtx-about-cta {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--vtx-gradient-primary);
}
.vtx-about-cta-card {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  color: #fff;
}
.vtx-about-cta-card h2,
.vtx-about-cta-card p {
  color: #fff;
}
.vtx-about-cta-card p {
  opacity: .9;
  font-size: 1.08rem;
  margin: 0 auto 2rem;
  max-width: 720px;
}

@media (max-width: 1024px) {
  .vtx-about-hero-grid,
  .vtx-about-two-col,
  .vtx-about-why-card {
    grid-template-columns: 1fr;
  }
  .vtx-about-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vtx-about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .vtx-about-hero-image img,
  .vtx-about-image-card img {
    min-height: 0;
    height: auto;
  }
  .vtx-about-highlights,
  .vtx-about-product-grid,
  .vtx-about-timeline {
    grid-template-columns: 1fr;
  }
  .vtx-about-why-card,
  .vtx-about-journey-card {
    padding: 1.25rem;
  }
}

/* =============================================================================
   RESPONSIVE HEADER / SEARCH FIX — 2026-07-06
   Keeps the header compact on desktop and restores mobile responsiveness.
   ============================================================================= */
.vtx-nav-inner {
  min-width: 0;
}
.vtx-nav {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}
.vtx-nav-cta {
  flex: 0 0 auto;
  min-width: 0;
}
.vtx-products-mega {
  min-width: min(560px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  left: 50%;
}
.vtx-dropdown-group {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.vtx-dropdown-heading {
  display: block;
  padding: .55rem .85rem .35rem;
  color: var(--vtx-primary);
  font-family: var(--vtx-font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vtx-mobile-submenu-title {
  padding: .75rem 0 .35rem;
  color: var(--vtx-primary);
  font-family: var(--vtx-font-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vtx-header-search {
  flex: 0 0 auto;
  height: 44px;
  min-width: 44px;
  max-width: 260px;
}
.vtx-header-search input {
  transition: width .22s ease, opacity .22s ease, padding .22s ease;
}

@media (max-width: 1380px) {
  .vtx-nav-inner { gap: .75rem; }
  .vtx-nav-menu > li > a { padding: .5rem .65rem; font-size: .9rem; }
  .vtx-nav-cta { gap: .5rem; }
  .vtx-header-search input { width: 120px; }
  .vtx-nav-cta .vtx-btn { padding-left: 1rem; padding-right: 1rem; }
}

@media (max-width: 1200px) {
  .vtx-header-search {
    width: 44px;
    overflow: visible;
    border-radius: 50%;
  }
  .vtx-header-search input {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    background: #fff;
    border: 1px solid rgba(11,58,115,.18);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(11,58,115,.18);
    height: 46px;
  }
  .vtx-header-search.vtx-search-open input,
  .vtx-header-search:focus-within input {
    width: min(280px, calc(100vw - 2rem));
    opacity: 1;
    padding: 0 1rem;
    pointer-events: auto;
  }
  .vtx-header-search button {
    border-radius: 50%;
  }
}

@media (max-width: 992px) {
  .vtx-nav { display: none !important; }
  .vtx-menu-toggle { display: flex !important; }
  .vtx-nav-inner { height: var(--vtx-header-height); }
  .vtx-nav-cta .vtx-btn-secondary { display: none !important; }
  .vtx-nav-cta .vtx-btn-primary {
    padding: .75rem 1rem;
    min-height: 44px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .vtx-header { width: 100%; }
  .vtx-header > .vtx-container {
    padding-left: .85rem;
    padding-right: .85rem;
  }
  .vtx-logo img {
    height: 42px;
    max-width: 92px;
    object-fit: contain;
  }
  .vtx-nav-inner {
    gap: .5rem;
    justify-content: space-between;
  }
  .vtx-nav-cta {
    margin-left: auto;
    gap: .5rem;
  }
  .vtx-header-search {
    display: flex !important;
    width: 42px;
    min-width: 42px;
    height: 42px;
    box-shadow: none;
  }
  .vtx-header-search button {
    width: 42px;
    height: 42px;
  }
  .vtx-header-search.vtx-search-open input,
  .vtx-header-search:focus-within input {
    right: -58px;
    top: calc(100% + 12px);
    width: min(270px, calc(100vw - 1.5rem));
    z-index: 9999;
  }
  .vtx-nav-cta .vtx-btn-primary span {
    display: inline;
  }
  .vtx-nav-cta .vtx-btn-primary {
    padding: .72rem .9rem;
    font-size: .9rem;
  }
  .vtx-menu-toggle {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
  }
  .vtx-page-hero {
    padding: 3.5rem 0 3rem;
  }
  .vtx-page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }
  .vtx-hero {
    min-height: auto;
  }
  .vtx-hero-content {
    padding: 3rem 0 4rem;
  }
  .vtx-hero-inner,
  .vtx-about-hero-grid,
  .vtx-about-intro-grid,
  .vtx-about-why-grid {
    grid-template-columns: 1fr !important;
  }
  .vtx-mobile-nav {
    width: 100vw;
  }
}

@media (max-width: 420px) {
  .vtx-nav-cta .vtx-btn-primary span { display: none; }
  .vtx-nav-cta .vtx-btn-primary {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
  }
  .vtx-header-search.vtx-search-open input,
  .vtx-header-search:focus-within input {
    right: -50px;
    width: calc(100vw - 1rem);
  }
}

/* =============================================================================
   Header responsiveness restore + text-only search
   ============================================================================= */
.vtx-nav-cta .vtx-search-text-only {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  height: auto;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.vtx-search-text-only input {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 0 !important;
  height: 46px;
  opacity: 0;
  padding: 0 !important;
  pointer-events: none;
  border: 1px solid rgba(11,58,115,.18) !important;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(11,58,115,.18);
  transition: width .22s ease, opacity .22s ease, padding .22s ease;
  z-index: 9999;
}
.vtx-search-text-only.vtx-search-open input,
.vtx-search-text-only:focus-within input {
  width: min(280px, calc(100vw - 2rem)) !important;
  opacity: 1;
  padding: 0 1rem !important;
  pointer-events: auto;
}
.vtx-search-text-only button {
  width: auto;
  height: auto;
  padding: .55rem .75rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--vtx-primary);
  font-family: var(--vtx-font-heading);
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.vtx-search-text-only button:hover,
.vtx-search-text-only.vtx-search-open button {
  background: rgba(11,58,115,.08);
  color: var(--vtx-primary-dark);
}

.vtx-mobile-search-text {
  gap: .6rem;
  padding: .35rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.vtx-mobile-search-text input {
  min-width: 0;
  border: 1px solid rgba(11,58,115,.18);
  border-radius: 999px;
  padding: .75rem 1rem;
  background: #fff;
}
.vtx-mobile-search-text button {
  width: auto;
  min-width: 82px;
  padding: .75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .vtx-header-search,
  .vtx-header-search button {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    border-radius: 999px !important;
  }
}
@media (max-width: 992px) {
  .vtx-nav-cta .vtx-search-text-only {
    display: none !important;
  }
  .vtx-nav-cta .vtx-btn-secondary {
    display: none !important;
  }
  .vtx-nav-cta .vtx-btn-primary {
    padding: .75rem 1rem;
    min-height: 44px;
    white-space: nowrap;
  }
  .vtx-menu-toggle {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .vtx-header > .vtx-container {
    padding-left: .85rem;
    padding-right: .85rem;
  }
  .vtx-nav-inner {
    gap: .5rem;
    justify-content: space-between;
  }
  .vtx-logo img {
    height: 42px;
    max-width: 92px;
    object-fit: contain;
  }
  .vtx-nav-cta {
    margin-left: auto;
    gap: .5rem;
  }
  .vtx-nav-cta .vtx-btn-primary {
    padding: .72rem .9rem;
    font-size: .9rem;
  }
  .vtx-nav-cta .vtx-btn-primary span {
    display: inline;
  }
  .vtx-menu-toggle {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 420px) {
  .vtx-nav-cta .vtx-btn-primary span {
    display: none;
  }
  .vtx-nav-cta .vtx-btn-primary {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
  }
}

/* Header search cleanup: icon-only, no input field */
.vtx-nav-cta .vtx-header-search,
.vtx-mobile-search,
.vtx-mobile-search-text {
  display: none !important;
}
.vtx-header-search-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vtx-primary);
  background: rgba(11, 58, 115, 0.08);
  border: 1px solid rgba(11, 58, 115, 0.14);
  text-decoration: none;
  transition: var(--vtx-transition-fast);
}
.vtx-header-search-icon:hover,
.vtx-header-search-icon:focus {
  background: var(--vtx-primary);
  color: #fff;
  border-color: var(--vtx-primary);
}
@media (max-width: 1160px) {
  .vtx-header-search-icon { display: none; }
}


/* Separate Search Page + header search removal */
.vtx-header-search-icon { display: none !important; }
.vtx-search-page-section { background: #f8fbff; }
.vtx-search-page-card {
  max-width: 980px;
  margin: 0 auto 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(11,58,115,.12);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(11,58,115,.08);
  text-align: center;
}
.vtx-search-page-card h2 { margin-bottom: .75rem; color: var(--vtx-primary-dark); }
.vtx-search-page-card p { max-width: 760px; margin: 0 auto 1.5rem; color: var(--vtx-text-light); }
.vtx-search-page-form {
  display: flex;
  gap: .75rem;
  max-width: 760px;
  margin: 0 auto;
}
.vtx-search-page-form input {
  flex: 1;
  min-height: 54px;
  padding: 0 1rem;
  border: 1px solid rgba(11,58,115,.2);
  border-radius: 12px;
  outline: none;
  font-size: 1rem;
}
.vtx-search-page-form input:focus {
  border-color: var(--vtx-primary);
  box-shadow: 0 0 0 4px rgba(11,58,115,.08);
}
.vtx-search-results-heading { margin: 2rem 0 1rem; }
.vtx-search-results-heading h3 { color: var(--vtx-primary-dark); margin-bottom: .25rem; }
.vtx-search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.vtx-search-result-card {
  background: #fff;
  border: 1px solid rgba(11,58,115,.1);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 12px 30px rgba(11,58,115,.06);
}
.vtx-search-result-card span {
  display: inline-flex;
  margin-bottom: .65rem;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: rgba(212,163,53,.13);
  color: var(--vtx-gold-dark, #a77a13);
  font-size: .78rem;
  font-weight: 700;
}
.vtx-search-result-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.vtx-search-result-card h3 a { color: var(--vtx-primary-dark); text-decoration: none; }
.vtx-search-result-card p { color: var(--vtx-text-light); margin-bottom: 1rem; }
.vtx-search-result-link { font-weight: 700; color: var(--vtx-primary); text-decoration: none; }
.vtx-search-result-link i { margin-left: .35rem; }
.vtx-search-no-results {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(11,58,115,.1);
}
@media (max-width: 900px) {
  .vtx-search-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .vtx-search-page-form { flex-direction: column; }
  .vtx-search-page-form .vtx-btn { width: 100%; justify-content: center; }
  .vtx-search-results-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Veritex Homepage Refresh + About Image Removal
   Inspired by modern building/workspace/product supplier layouts
   ============================================================ */
.vtx-new-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4.5rem;
    background:
        radial-gradient(circle at 10% 20%, rgba(201, 157, 54, 0.14), transparent 28%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
}
.vtx-new-hero::after {
    content: '';
    position: absolute;
    inset: auto -8rem -12rem auto;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: rgba(11, 58, 115, 0.08);
    pointer-events: none;
}
.vtx-new-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 3rem;
    align-items: center;
}
.vtx-new-hero-copy h1 {
    margin: 1rem 0 1.2rem;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.05;
    color: var(--vtx-navy, #0b2a4a);
    letter-spacing: -0.04em;
}
.vtx-new-hero-copy p {
    max-width: 680px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #536173;
}
.vtx-new-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.6rem;
}
.vtx-new-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem 1rem;
    border: 1px solid rgba(11, 58, 115, .12);
    border-radius: 999px;
    background: #fff;
    color: #14345c;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(11,58,115,.06);
}
.vtx-new-hero-points i { color: var(--vtx-gold, #c99d36); }
.vtx-new-hero-showcase {
    position: relative;
    padding: 1rem;
    border-radius: 2rem;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(11, 58, 115, .1);
    box-shadow: 0 24px 70px rgba(11, 58, 115, .14);
}
.vtx-showcase-main {
    position: relative;
    overflow: hidden;
    border-radius: 1.45rem;
    min-height: 420px;
    background: #eef3f8;
}
.vtx-showcase-main img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}
.vtx-showcase-label {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: rgba(11, 58, 115, .92);
    color: #fff;
    font-weight: 800;
    backdrop-filter: blur(10px);
}
.vtx-showcase-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .85rem;
    margin-top: .9rem;
}
.vtx-showcase-strip img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(11, 58, 115, .1);
    background: #fff;
}
.vtx-home-trustbar { padding: 0 0 2.5rem; background: #fff; }
.vtx-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: -2rem;
    position: relative;
    z-index: 3;
}
.vtx-trust-grid > div {
    padding: 1.3rem;
    border-radius: 1.2rem;
    background: #fff;
    border: 1px solid rgba(11, 58, 115, .1);
    box-shadow: 0 16px 40px rgba(11,58,115,.08);
}
.vtx-trust-grid strong { display: block; color: var(--vtx-navy, #0b2a4a); font-size: 1.3rem; }
.vtx-trust-grid span { color: #5d6b7a; }
.vtx-home-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}
.vtx-home-product-card {
    overflow: hidden;
    border-radius: 1.4rem;
    background: #fff;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(11, 58, 115, .1);
    box-shadow: 0 16px 44px rgba(11,58,115,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.vtx-home-product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 70px rgba(11,58,115,.14); }
.vtx-home-product-img { height: 235px; background: #f3f7fb; overflow: hidden; }
.vtx-home-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vtx-home-product-card:nth-child(n+5) .vtx-home-product-img img { object-fit: contain; padding: 1rem; background: #fff; }
.vtx-home-product-body { padding: 1.35rem; }
.vtx-home-product-body h3 { margin: 0 0 .6rem; color: var(--vtx-navy, #0b2a4a); }
.vtx-home-product-body p { margin: 0 0 1rem; color: #5b6776; line-height: 1.65; }
.vtx-home-product-body span { color: var(--vtx-blue, #0b4f97); font-weight: 800; }
.vtx-home-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.vtx-home-split h2 { font-size: clamp(2rem, 3vw, 3.2rem); color: var(--vtx-navy, #0b2a4a); margin: 1rem 0; }
.vtx-check-list { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: .85rem; }
.vtx-check-list li { display: flex; gap: .75rem; color: #4f5d70; font-weight: 650; }
.vtx-check-list i { color: var(--vtx-gold, #c99d36); margin-top: .2rem; }
.vtx-industry-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.vtx-industry-card-grid div {
    min-height: 130px;
    padding: 1.25rem;
    border-radius: 1.2rem;
    background: #fff;
    border: 1px solid rgba(11,58,115,.1);
    box-shadow: 0 14px 36px rgba(11,58,115,.07);
    display: flex;
    flex-direction: column;
    gap: .8rem;
    justify-content: center;
}
.vtx-industry-card-grid i { font-size: 2rem; color: var(--vtx-gold, #c99d36); }
.vtx-industry-card-grid strong { color: var(--vtx-navy, #0b2a4a); }
.vtx-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.vtx-value-grid > div { padding: 1.6rem; border-radius: 1.2rem; background: #fff; border: 1px solid rgba(11,58,115,.1); box-shadow: 0 14px 38px rgba(11,58,115,.07); }
.vtx-value-grid i { width: 54px; height: 54px; border-radius: 1rem; display: inline-flex; align-items: center; justify-content: center; background: rgba(11,58,115,.08); color: var(--vtx-blue, #0b4f97); font-size: 1.5rem; margin-bottom: 1rem; }
.vtx-value-grid h3 { color: var(--vtx-navy, #0b2a4a); }
.vtx-value-grid p { color: #5b6776; line-height: 1.65; }
.vtx-home-cta { padding: 4rem 0; background: linear-gradient(135deg, #082d5a, #0b4f97); }
.vtx-home-cta-card { display: flex; gap: 2rem; align-items: center; justify-content: space-between; color: #fff; }
.vtx-home-cta-card h2 { font-size: clamp(2rem, 3vw, 3.2rem); margin: .75rem 0; color: #fff; }
.vtx-home-cta-card p { color: rgba(255,255,255,.82); }
.vtx-about-text-only { max-width: 980px; margin: 0 auto 2rem; text-align: center; }
.vtx-about-text-only h2 { color: var(--vtx-navy, #0b2a4a); font-size: clamp(2rem, 3vw, 3.2rem); margin: 1rem 0; }
.vtx-about-text-only p { color: #5b6776; line-height: 1.8; font-size: 1.05rem; }
.vtx-about-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.vtx-about-pillars > div { padding: 1.5rem; text-align: center; border-radius: 1.2rem; background: #fff; border: 1px solid rgba(11,58,115,.1); box-shadow: 0 14px 38px rgba(11,58,115,.07); }
.vtx-about-pillars i { font-size: 2rem; color: var(--vtx-gold, #c99d36); margin-bottom: .8rem; }
.vtx-about-pillars h3 { color: var(--vtx-navy, #0b2a4a); margin-bottom: .5rem; }
.vtx-about-pillars p { color: #5b6776; line-height: 1.55; margin: 0; }
.vtx-about-no-image-card { display: block !important; }
.vtx-about-no-image-card .vtx-about-why-content { max-width: 980px; margin: 0 auto; }
@media (max-width: 1024px) {
    .vtx-new-hero-grid, .vtx-home-split { grid-template-columns: 1fr; }
    .vtx-home-product-grid { grid-template-columns: repeat(2, 1fr); }
    .vtx-about-pillars, .vtx-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .vtx-new-hero { padding: 3rem 0 2rem; }
    .vtx-new-hero-showcase { padding: .65rem; border-radius: 1.25rem; }
    .vtx-showcase-main, .vtx-showcase-main img { min-height: 260px; }
    .vtx-showcase-strip { grid-template-columns: 1fr 1fr 1fr; }
    .vtx-showcase-strip img { height: 76px; }
    .vtx-trust-grid, .vtx-home-product-grid, .vtx-industry-card-grid, .vtx-value-grid, .vtx-about-pillars { grid-template-columns: 1fr; }
    .vtx-home-product-img { height: 220px; }
    .vtx-home-cta-card { flex-direction: column; align-items: flex-start; }
    .vtx-new-hero-points { flex-direction: column; align-items: flex-start; }
}
