/* Prevent horizontal scroll from 100vw pseudo-elements */
html, body { overflow-x: hidden !important; }

/* ===== TPSV GLOBAL STYLES ===== */

/* Dark theme base */
body { background: #0D0D0D !important; color: #E0E0E0 !important; font-family: 'Inter', sans-serif !important; }


/* CTA section dark overlays - fixes dot pattern blocking Elementor overlay */
.tpsv-cta::after {
	  content: '';
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background: rgba(13,13,13,0.94);
	  z-index: 0;
	  pointer-events: none;
}
.tpsv-cta > * {
	  position: relative;
	  z-index: 1;
}
}
}
/* HEADER */
header.wp-block-template-part {
  background: rgba(13,13,13,0.95) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(207,82,0,0.15) !important;
  position: sticky !important; top: 0; z-index: 1000;
  padding: 0.5rem 2rem !important;
}
.wp-block-site-title a, .wp-block-site-title {
  color: #CF5200 !important; font-weight: 800 !important;
  font-size: 1.2rem !important; text-decoration: none !important;
  letter-spacing: 1px;
}
.wp-block-navigation a {
  color: #FFF !important; font-weight: 500 !important;
  font-size: 0.85rem !important; letter-spacing: 0.5px;
  text-transform: uppercase; transition: color 0.3s !important;
  text-decoration: none !important;
}
.wp-block-navigation a:hover { color: #CF5200 !important; }
.wp-block-navigation__submenu-container {
  background: rgba(20,20,20,0.98) !important;
  border: 1px solid rgba(207,82,0,0.2) !important;
  border-radius: 8px !important; padding: 0.5rem 0 !important;
  min-width: 200px !important;
}
.wp-block-navigation__submenu-container a {
  font-size: 0.82rem !important; text-transform: none !important;
  padding: 0.5rem 1.2rem !important;
}
.has-child .wp-block-navigation__submenu-icon svg { fill: #CF5200 !important; }

/* Hide Learn more button */
header .wp-block-button { display: none !important; }
/* Hide default page title */
.wp-block-post-title { display: none !important; }

/* FOOTER */
footer.wp-block-template-part {
  background: #0A0A0A !important;
  border-top: 1px solid rgba(207,82,0,0.15) !important;
  padding: 2rem !important;
}
footer.wp-block-template-part * { color: #888 !important; }
footer.wp-block-template-part a:hover { color: #CF5200 !important; }

/* ELEMENTOR */
.elementor-page { background: #0D0D0D !important; }
.elementor-section, .e-con { font-family: 'Inter', sans-serif !important; }

/* Animations */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
.elementor-widget { animation: fadeUp 0.7s ease both; }
.elementor-widget:nth-child(2) { animation-delay: 0.15s; }
.elementor-widget:nth-child(3) { animation-delay: 0.3s; }
.elementor-widget:nth-child(4) { animation-delay: 0.45s; }

/* Buttons */
.elementor-button {
  transition: all 0.3s !important;
  border-radius: 4px !important;
  font-family: 'Inter', sans-serif !important;
}
.elementor-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(207,82,0,0.3) !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #CF5200; border-radius: 4px; }

/* Responsive */
@media (max-width: 1024px) {
  header.wp-block-template-part { padding: 0.5rem 1rem !important; }
  .wp-block-navigation a { font-size: 0.8rem !important; }
}
@media (max-width: 768px) {
  .wp-block-site-title { font-size: 1rem !important; }
  .elementor-widget-heading .elementor-heading-title {
    font-size: clamp(1.4rem,5vw,3rem) !important;
  }
  .e-con { padding-left: 20px !important; padding-right: 20px !important; }
}

/* === FULL-WIDTH ELEMENTOR FIX === */
.entry-content.wp-block-post-content.has-global-padding,
.wp-block-post-content.has-global-padding {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}
.entry-content .elementor,
.wp-block-post-content .elementor {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.is-layout-constrained > .elementor {
  max-width: 100% !important;
  width: 100% !important;
}
main.wp-block-group {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.wp-site-blocks > main {
  max-width: 100% !important;
}
/* Remove any page title that shows above Elementor content */
.wp-block-post-title {
  display: none !important;
}


/* === FONT AWESOME CDN === */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* === SCROLL-REVEAL ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
@keyframes slideInLine {
  from { width: 0; }
  to { width: 60px; }
}

/* Elements start hidden, animate when .is-visible is added */
.e-con.tpsv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.e-con.tpsv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.e-con.tpsv-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.e-con.tpsv-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* === SMOOTH HOVER EFFECTS === */
.elementor-widget-button .elementor-button {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}
.elementor-widget-button .elementor-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(207, 82, 0, 0.35) !important;
}
.elementor-widget-button .elementor-button[style*="transparent"]:hover,
.elementor-widget-button .elementor-button.elementor-size-sm:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15) !important;
}

/* Image hover zoom */
.e-con .elementor-widget-image {
  overflow: hidden;
}
.e-con .elementor-widget-image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.e-con .elementor-widget-image:hover img {
  transform: scale(1.05) !important;
}

/* === BACKGROUND PATTERNS & TEXTURES === */
/* Subtle dot pattern for dark sections */
.e-con[data-settings*="111111"]::before,
.elementor-element[style*="background-color: rgb(17, 17, 17)"]::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Diagonal line accent for spec cards */
.e-con[style*="background-color: rgb(26, 26, 26)"] {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease !important;
}
.e-con[style*="background-color: rgb(26, 26, 26)"]:hover {
  border-color: #CF5200 !important;
  transform: translateY(-4px);
}
.e-con[style*="background-color: rgb(26, 26, 26)"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #CF5200, transparent);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.e-con[style*="background-color: rgb(26, 26, 26)"]:hover::before {
  height: 100%;
}

/* === STATS BAR ANIMATION === */
.e-con[style*="background-color: rgb(207, 82, 0)"] .elementor-widget-heading {
  animation: countUp 0.6s ease-out both;
}
.e-con[style*="background-color: rgb(207, 82, 0)"] .e-con:nth-child(1) .elementor-widget-heading { animation-delay: 0s; }
.e-con[style*="background-color: rgb(207, 82, 0)"] .e-con:nth-child(2) .elementor-widget-heading { animation-delay: 0.15s; }
.e-con[style*="background-color: rgb(207, 82, 0)"] .e-con:nth-child(3) .elementor-widget-heading { animation-delay: 0.3s; }
.e-con[style*="background-color: rgb(207, 82, 0)"] .e-con:nth-child(4) .elementor-widget-heading { animation-delay: 0.45s; }

/* === ORANGE ACCENT LINE UNDER SECTION LABELS === */
.elementor-widget-heading h6[style*="color: rgb(207, 82, 0)"] {
  position: relative;
  padding-bottom: 12px;
  display: inline-block;
}
.elementor-widget-heading h6[style*="color: rgb(207, 82, 0)"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #CF5200;
  animation: slideInLine 0.6s ease-out 0.3s both;
}
/* Center-aligned labels get centered line */
.elementor-widget-heading[style*="text-align: center"] h6[style*="color: rgb(207, 82, 0)"]::after,
.elementor-align-center h6[style*="color: rgb(207, 82, 0)"]::after {
  left: 50%;
  transform: translateX(-50%);
}

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
}

/* === CUSTOM SCROLLBAR (enhanced) === */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0D0D0D;
}
::-webkit-scrollbar-thumb {
  background: #CF5200;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e65c00;
}

/* === SPLIT SECTION IMAGE HOVER === */
.e-con[style*="background-size: cover"] {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === HERO SECTION PARALLAX-LIKE DEPTH === */
.e-con[style*="min-height: 85vh"],
.e-con[style*="min-height: 70vh"],
.e-con[style*="min-height: 50vh"] {
  position: relative;
}
.e-con[style*="min-height: 85vh"]::after,
.e-con[style*="min-height: 70vh"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #0D0D0D, transparent);
  pointer-events: none;
  z-index: 1;
}

/* === NAV HOVER ANIMATION === */
.wp-block-navigation-item a {
  position: relative;
  transition: color 0.3s ease !important;
}
.wp-block-navigation-item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #CF5200;
  transition: width 0.3s ease;
}
.wp-block-navigation-item a:hover::after {
  width: 100%;
}
.wp-block-navigation-item a:hover {
  color: #CF5200 !important;
}

/* === LOADING ANIMATION FOR PAGE === */
.elementor {
  animation: fadeIn 0.5s ease-out;
}


/* ===== HOME PAGE SCROLL ANIMATIONS ===== */
.scroll-reveal {
  animation: scrollFadeUp 1.2s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
}
@keyframes scrollFadeUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Staggered card delays */
.tpsv-card {
  animation: scrollDramaticFadeUp 1.5s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 70%;
}
.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* Vehicle cards slide in from sides */
.slide-left {
  animation: scrollSlideLeft 1.2s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
}
.slide-right {
  animation: scrollSlideRight 1.2s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
}
@keyframes scrollSlideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scrollSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Stat items stagger */
.stat-item {
  animation: scrollFadeUp 0.5s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 20%;
}

/* ===== TPSV CARD HOVER ENHANCEMENTS ===== */
.tpsv-card > .elementor-widget-wrap,
.tpsv-card > .e-con-inner {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tpsv-card:hover {
  transform: translateY(-6px);
}
.tpsv-card .elementor-icon {
  transition: transform 0.3s ease;
}
.tpsv-card:hover .elementor-icon {
  transform: scale(1.15);
}

/* ===== VEHICLE CARD IMAGE ZOOM ON HOVER ===== */
.vehicle-card .elementor-image img {
  transition: transform 0.5s ease;
  border-radius: 8px;
}
.vehicle-card:hover .elementor-image img {
  transform: scale(1.03);
}

/* ===== HERO SUBTLE ENTRANCE ===== */
.tpsv-hero .elementor-widget {
  opacity: 0;
  animation: heroFadeIn 1s ease-out forwards;
}
.tpsv-hero .elementor-widget:nth-child(1) { animation-delay: 0.2s; }
.tpsv-hero .elementor-widget:nth-child(2) { animation-delay: 0.4s; }
.tpsv-hero .elementor-widget:nth-child(3) { animation-delay: 0.6s; }
.tpsv-hero .elementor-widget:nth-child(4) { animation-delay: 0.8s; }
.tpsv-hero .elementor-widget:nth-child(5) { animation-delay: 1s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BAR COUNTER STYLE ===== */
.tpsv-stats-bar {
  position: relative;
}
.tpsv-stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #CF5200;
  border-radius: 2px;
}

/* ===== CTA SECTION GLOW ===== */
.tpsv-cta {
  position: relative;
  overflow: hidden;
}
.tpsv-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(207,82,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== SECTION LABEL ACCENT (orange h6) ===== */
.tpsv-vehicles h6.elementor-heading-title,
.tpsv-difference h6.elementor-heading-title,
.tpsv-cta h6.elementor-heading-title {
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}


/* ===== VEHICLE SHOWCASE IMAGE SIZING ===== */
.tpsv-vehicles .elementor-widget-image img {
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
}

/* ===== TPSV DIFFERENCE CARD BORDER ACCENT ===== */
.tpsv-card {
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.tpsv-card:hover {
  border-left-color: #CF5200;
}

/* ===== STATS BAR NUMBER STYLING ===== */
.tpsv-stats-bar .elementor-heading-title {
  transition: color 0.3s ease;
}
.stat-item:hover .elementor-heading-title {
  color: #CF5200 !important;
}

/* ===== CTA BUTTONS PULSE ON HOVER ===== */
.tpsv-cta .elementor-button-wrapper .elementor-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tpsv-cta .elementor-button-wrapper .elementor-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 82, 0, 0.3);
}

/* ===== VEHICLE CARD TEXT CONTAINER ===== */
.vehicle-card .e-con-inner {
  transition: background 0.3s ease;
}
.vehicle-card:hover .e-con-inner {
  background: rgba(207, 82, 0, 0.03);
}

/* ===== HERO BACKGROUND SUBTLE PARALLAX FEEL ===== */
.tpsv-hero {
  background-attachment: fixed !important;
}

/* ===== SECTION DIVIDER LINES ===== */
.tpsv-difference::before,
.tpsv-cta::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #CF5200;
  margin: 0 auto 30px auto;
  border-radius: 2px;
}


/* ===== HERO VIDEO BACKGROUND ===== */
.tpsv-hero {
  position: relative !important;
  overflow: hidden !important;
}
.tpsv-video-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
.tpsv-video-bg .elementor-widget-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.tpsv-video-bg iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 177.78vh !important;
  min-width: 100% !important;
  min-height: 100% !important;
  transform: translate(-50%, -50%) scale(1.3) !important;
  border: none !important;
}
/* Dark overlay via pseudo-element */
.tpsv-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.68);
  z-index: 1;
  pointer-events: none;
}
.tpsv-hero > .elementor-widget:not(.tpsv-video-bg),
.tpsv-hero > .elementor-element:not(.tpsv-video-bg) {
  position: relative !important;
  z-index: 2 !important;
}
.tpsv-hero > .elementor-background-overlay {
  z-index: 1 !important;
}

/* ===== HEADER LOGO REPLACEMENT ===== */
.wp-block-site-title a {
  display: block;
  width: 75px;
  height: 55px;
  background-image: url('https://tpsv1.com/wp-content/uploads/2026/05/tplogo-transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
}

/* ===== MORE DRAMATIC SCROLL ANIMATIONS ===== */
.tpsv-card-dramatic {
  animation: scrollDramaticFadeUp 1.5s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 70%;
}
.tpsv-card-dramatic.delay-0 { animation-delay: 0s; }
.tpsv-card-dramatic.delay-1 { animation-delay: 0.2s; }
.tpsv-card-dramatic.delay-2 { animation-delay: 0.4s; }
.tpsv-card-dramatic.delay-3 { animation-delay: 0.6s; }
@keyframes scrollDramaticFadeUp {
  from { opacity: 0; transform: translateY(120px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== GULFSTREAM-INSPIRED DESIGN ===== */

/* --- Dotted Grid Pattern (Dark Sections) --- */
.tpsv-stats-bar,
.tpsv-difference,
.tpsv-cta {
  position: relative !important;
}



/* --- Dotted Grid Pattern (Light Sections) --- */
.tpsv-vehicles {
  position: relative !important;
}



/* --- Stats Section --- */
.tpsv-stats-bar {
  border-top: 3px solid #CF5200 !important;
  padding: 50px 5% !important;
}

/* --- Our Vehicles Section (Light) --- */
.tpsv-vehicles {
  padding: 80px 5% !important;
}
.tpsv-vehicles .elementor-heading-title {
  color: #1A1A1A !important;
}
.tpsv-vehicles .elementor-widget-heading:first-child .elementor-heading-title {
  color: #CF5200 !important;
}
.tpsv-vehicles .vehicle-card,
.tpsv-vehicles .tpsv-card-dramatic {
  background: #FFFFFF !important;
  border: 1px solid #E0E0E0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.tpsv-vehicles .vehicle-card:hover,
.tpsv-vehicles .tpsv-card-dramatic:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12) !important;
}
.tpsv-vehicles .vehicle-card .elementor-heading-title,
.tpsv-vehicles .tpsv-card-dramatic .elementor-heading-title {
  color: #1A1A1A !important;
}
.tpsv-vehicles .vehicle-card .elementor-widget-text-editor,
.tpsv-vehicles .tpsv-card-dramatic .elementor-widget-text-editor {
  color: #555 !important;
}

/* --- Why TruPath Section (Dark with Pattern) --- */
.tpsv-difference {
  padding: 80px 5% !important;
}
.tpsv-difference .tpsv-card-dramatic {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  padding: 40px 30px !important;
  transition: all 0.4s ease !important;
}
.tpsv-difference .tpsv-card-dramatic:hover {
  transform: translateY(-8px) !important;
  background: rgba(207,82,0,0.06) !important;
  border-color: rgba(207,82,0,0.25) !important;
  box-shadow: 0 12px 40px rgba(207,82,0,0.1) !important;
}

/* --- CTA Section --- */
.tpsv-cta {
  padding: 80px 5% !important;
  text-align: center !important;
}

/* --- Smooth section transitions --- */
/* overflow handled per-section */

/* ===== FOOTER STYLING ===== */
.tpsv-footer-links {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.tpsv-footer-links li {
  margin-bottom: 8px !important;
}
.tpsv-footer-links li a {
  color: #555555 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}
.tpsv-footer-links li a:hover {
  color: #CF5200 !important;
}
footer .wp-block-separator {
  margin-top: 40px !important;
  margin-bottom: 20px !important;
  opacity: 1 !important;
}

/* ===== GLOBAL DOT PATTERN (all content, not header/footer) ===== */
.wp-site-blocks > .elementor,
.wp-site-blocks > main,
.wp-site-blocks > .entry-content,
.wp-site-blocks > section,
body .elementor-page .elementor {
  position: relative;
}
.wp-site-blocks > .elementor::before,
.wp-site-blocks > main::before,
.wp-site-blocks > .entry-content::before,
body .elementor-page .elementor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px) !important;
  background-size: 22px 22px !important;
  z-index: 0;
  pointer-events: none;
}

/* Light sections get dark dots instead */
.tpsv-vehicles::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1px, transparent 1px) !important;
  background-size: 22px 22px !important;
  z-index: 0;
  pointer-events: none;
}
.tpsv-vehicles {
  position: relative !important;
}
.tpsv-vehicles > * {
  position: relative;
  z-index: 1;
}

/* Make sure content stays above the dot pattern */
.elementor-section-wrap,
.elementor > .elementor-element,
.elementor > .e-con,
.wp-site-blocks > .elementor > .elementor-element {
  position: relative;
  z-index: 1;
}

/* Exclude header and footer from the pattern */
header::before,
footer::before,
.site-header::before,
.site-footer::before,
.wp-block-template-part[data-slug="header"]::before,
.wp-block-template-part[data-slug="footer"]::before {
  display: none !important;
}

/* Hero section - dots should not interfere with video overlay */
.tpsv-hero::before {
  display: none !important;
}

/* ===== GLOBAL SCROLL ANIMATIONS (all pages) ===== */

/* Headings fade up on scroll */
.elementor-widget-heading {
  animation: scrollFadeUp 1.2s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 50%;
}

/* Text editors fade up slightly delayed */
.elementor-widget-text-editor {
  animation: scrollFadeUp 1.2s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 50%;
}

/* Images fade and scale up */
.elementor-widget-image {
  animation: scrollImageReveal 1.4s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 55%;
}

/* Icon widgets */
.elementor-widget-icon {
  animation: scrollFadeUp 1s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 45%;
}

/* Buttons slide up */
.elementor-widget-button {
  animation: scrollFadeUp 1s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

/* Dividers */
.elementor-widget-divider {
  animation: scrollFadeUp 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

/* Icon boxes and icon-list */
.elementor-widget-icon-box,
.elementor-widget-icon-list {
  animation: scrollFadeUp 1.2s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 50%;
}

/* Child containers (cards, grid items) - staggered */
.e-con.e-child {
  animation: scrollDramaticFadeUp 1.3s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
}

/* Image reveal animation */
@keyframes scrollImageReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Exclude hero section children from scroll animations */
.tpsv-hero > * {
  animation: none !important;
  animation-timeline: auto !important;
}
.tpsv-hero .elementor-widget-heading,
.tpsv-hero .elementor-widget-text-editor,
.tpsv-hero .elementor-widget-button,
.tpsv-hero .elementor-widget-divider,
.tpsv-hero .elementor-widget-image,
.tpsv-hero .elementor-widget-html,
.tpsv-hero .e-con.e-child {
  animation: none !important;
  animation-timeline: auto !important;
}

/* Exclude header and footer */
header .elementor-widget-heading,
header .elementor-widget-text-editor,
footer .elementor-widget-heading,
footer .elementor-widget-text-editor,
.wp-block-template-part .elementor-widget-heading,
.wp-block-template-part .elementor-widget-text-editor {
  animation: none !important;
  animation-timeline: auto !important;
}


/* Become a Dealer & other pages - Hero overlay for text visibility */
.elementor-page .tpsv-hero {
  position: relative !important;
}
.elementor-page .tpsv-hero > .elementor-widget {
  position: relative !important;
  z-index: 1 !important;
}

/* Dealer images strip */
.tpsv-dealer-images {
  display: flex !important;
  flex-direction: row !important;
  overflow: hidden !important;
}
.tpsv-dealer-images > .elementor-widget {
  flex: 1 1 33.333% !important;
  min-width: 0 !important;
}
.tpsv-dealer-images .elementor-widget-image img {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  display: block !important;
}

/* Dealer map section background */
.tpsv-dealer-map {
  background: #F5F5F5 !important;
  position: relative !important;
}


/* Fix: Hero children must be visible and above overlay */
.tpsv-hero .elementor-widget-heading,
.tpsv-hero .elementor-widget-text-editor,
.tpsv-hero .elementor-widget-button,
.tpsv-hero .elementor-widget {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Fix: Hero ::after overlay should be behind widgets */
.elementor-page .tpsv-hero::after {
  z-index: 0 !important;
}


/* Fix dealer image strip - full width equal columns */
.tpsv-dealer-images.e-con {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.tpsv-dealer-images > .elementor-element {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: 33.333% !important;
}
.tpsv-dealer-images .elementor-image img,
.tpsv-dealer-images .elementor-widget-image img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  display: block !important;
}


/* Become a Dealer - Image strip by element ID */
.elementor-element-9b05270.e-con {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.elementor-element-9b05270 > .elementor-element {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: 33.334% !important;
}
.elementor-element-9b05270 .elementor-image img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  display: block !important;
}


/* ===== VIDEO BG FIX: Override .tpsv-hero .elementor-widget for video ===== */
.tpsv-hero .elementor-widget.tpsv-video-bg,
.elementor-page .tpsv-hero > .elementor-widget.tpsv-video-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.tpsv-hero .elementor-widget.tpsv-video-bg .elementor-widget-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}


/* ===== GLOBAL DOT GRID: Applied to all sections ===== */
.elementor-page .e-con.e-parent:not(.tpsv-hero)::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  height: 100% !important;
  background-color: transparent !important;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px) !important;
  background-size: 22px 22px !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.elementor-page .e-con.e-parent:not(.tpsv-hero) {
  position: relative !important;
}
/* Ensure section content stays above grid */
.elementor-page .e-con.e-parent:not(.tpsv-hero) > .elementor-element,
.elementor-page .e-con.e-parent:not(.tpsv-hero) > .elementor-widget,
.elementor-page .e-con.e-parent:not(.tpsv-hero) > .e-con {
  position: relative !important;
  z-index: 1 !important;
}


/* ===== TPSV MOBILE RESPONSIVE (max-width: 767px) ===== */
@media (max-width: 767px) {

  /* --- HERO SECTION --- */
  .tpsv-hero {
    min-height: 85vh !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }
  .tpsv-hero .elementor-widget-heading .elementor-heading-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
    line-height: 1.2 !important;
  }
  /* Orange subheading (TRUPATH SPECIALTY VEHICLES) */
  .tpsv-hero .elementor-widget-heading h6.elementor-heading-title,
  .elementor-widget-heading h6[style*="color: rgb(207, 82, 0)"] {
    font-size: 0.7rem !important;
    letter-spacing: 3px !important;
  }
  /* Hero description text */
  .tpsv-hero .elementor-widget-text-editor {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }
  /* Hero buttons */
  .tpsv-hero .elementor-button {
    font-size: 0.85rem !important;
    padding: 12px 22px !important;
  }
  .tpsv-hero .elementor-widget-button {
    margin-bottom: 8px !important;
  }
  /* Video background on mobile */
  .tpsv-hero .tpsv-video-bg {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }
  .tpsv-hero .tpsv-video-bg iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 177.78vh !important;
    min-width: 100% !important;
    min-height: 100% !important;
    transform: translate(-50%, -50%) scale(1.3) !important;
    border: none !important;
  }

  /* --- STATS BAR --- */
  .tpsv-stats-bar {
    padding: 30px 15px !important;
  }
  .tpsv-stats-bar .e-con-inner {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .tpsv-stats-bar .e-child {
    width: 100% !important;
    text-align: center !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .tpsv-stats-bar .e-child:last-child {
    border-bottom: none;
  }
  .tpsv-stats-bar .elementor-heading-title {
    font-size: 2rem !important;
  }
  .tpsv-stats-bar .elementor-widget-text-editor {
    font-size: 0.8rem !important;
  }

  /* --- GENERAL SECTION PADDING --- */
  .elementor-page .e-con.e-parent {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .tpsv-hero.e-con.e-parent {
    padding-top: 60px !important;
  }

  /* --- SECTION HEADINGS --- */
  .elementor-page h2.elementor-heading-title {
    font-size: clamp(1.4rem, 6vw, 2rem) !important;
    line-height: 1.25 !important;
  }
  .elementor-page h3.elementor-heading-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem) !important;
    line-height: 1.3 !important;
  }
  /* Section label h6 (orange accents) */
  .tpsv-vehicles h6.elementor-heading-title,
  .tpsv-difference h6.elementor-heading-title,
  .tpsv-cta h6.elementor-heading-title {
    font-size: 0.65rem !important;
    letter-spacing: 2.5px !important;
  }

  /* --- VEHICLES GRID --- */
  .tpsv-vehicles .e-con-inner {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .tpsv-vehicles .e-child {
    width: 100% !important;
  }
  .tpsv-vehicles .elementor-widget-image img {
    max-height: 200px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
  }

  /* --- DIFFERENCE / WHY TRUPATH --- */
  .tpsv-difference .e-con-inner {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .tpsv-difference .e-child {
    width: 100% !important;
  }

  /* --- CERTIFICATIONS / LOGO STRIP --- */
  .tpsv-certifications {
    padding: 20px 10px !important;
  }

  /* --- CTA SECTION --- */
  .tpsv-cta {
    padding: 40px 20px !important;
    text-align: center !important;
  }
  .tpsv-cta .e-con-inner {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }
  .tpsv-cta .elementor-button {
    font-size: 0.85rem !important;
    padding: 12px 28px !important;
  }

  /* --- ABOUT US PAGE --- */
  .tpsv-our-story {
    padding: 30px 15px !important;
  }
  
  /* --- GENERAL TEXT --- */
  .elementor-widget-text-editor {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
  }

  /* --- DOT GRID OVERLAY (reduce on mobile) --- */
  .elementor-page .e-con.e-parent:not(.tpsv-hero)::before {
    opacity: 0.07 !important;
  }

  /* --- NAV / HEADER --- */
  header.wp-block-template-part {
    padding: 0.4rem 0.8rem !important;
  }

  /* --- SCROLL REVEAL adjust --- */
  .scroll-reveal {
    transform: none !important;
    opacity: 1 !important;
  }

  /* --- ELEMENTOR COLUMNS on mobile --- */
  .elementor-page .e-parent > .e-con-inner > .e-child {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}

/* ===== TABLET TOUCH-UP (max-width: 1024px) ===== */
@media (max-width: 1024px) and (min-width: 768px) {

  /* Hero section - fill viewport like desktop */
  .tpsv-hero {
    min-height: 100vh !important;
    padding-top: 80px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
  }

  /* Video background - fill hero completely */
  .tpsv-hero .tpsv-video-bg,
  .tpsv-hero .tpsv-video-bg .elementor-widget-container,
  .tpsv-hero .tpsv-video-bg > div {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    z-index: 0 !important;
  }

  .tpsv-hero .tpsv-video-bg iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 177.78vh !important;
    min-width: 100% !important;
    min-height: 100% !important;
    transform: translate(-50%, -50%) scale(1.3) !important;
    border: none !important;
  }

  .tpsv-hero .elementor-widget-heading .elementor-heading-title {
    font-size: clamp(2rem, 5vw, 3rem) !important;
  }
  .tpsv-hero .elementor-widget-heading h6.elementor-heading-title,
  .elementor-widget-heading h6[style*="color: rgb(207, 82, 0)"] {
    font-size: 0.8rem !important;
    letter-spacing: 4px !important;
  }
  .tpsv-stats-bar .elementor-heading-title {
    font-size: 2.2rem !important;
  }
}

/* Specialty Vehicles card hover fix */
.elementor-element-0de9319.vehicle-card { transition: transform 0.4s ease, box-shadow 0.4s ease !important; cursor: pointer; }
.elementor-element-0de9319.vehicle-card:hover { transform: translateY(-8px) !important; box-shadow: 0 16px 48px rgba(0,0,0,0.12) !important; }
.elementor-element-0de9319.vehicle-card:hover .elementor-image img { transform: scale(1.03); }
.elementor-element-0de9319.vehicle-card:hover .e-con-inner { background: rgba(207,82,0,0.03); }

/* ===== MOBILE NAVIGATION FIX ===== */

/* Mobile overlay: dark background, full screen */
.wp-block-navigation__responsive-container.is-menu-open {
  background-color: #0D0D0D !important;
  color: #fff !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 100000 !important;
  padding: 2rem 1.5rem !important;
  overflow-y: auto !important;
}

/* Menu items in overlay */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  color: #fff !important;
  font-size: 18px !important;
  font-family: 'Inter', sans-serif !important;
  padding: 12px 0 !important;
  display: block !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover {
  color: #CF5200 !important;
}

/* Stack menu items vertically */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
  padding-top: 2rem !important;
}

/* Submenu items in overlay */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
  background: transparent !important;
  position: static !important;
  padding-left: 1.5rem !important;
  border: none !important;
  box-shadow: none !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  font-size: 16px !important;
  color: #999 !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
  color: #CF5200 !important;
}

/* Close button styling */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
  color: #fff !important;
  position: absolute !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close svg {
  fill: #fff !important;
  width: 28px !important;
  height: 28px !important;
}

/* Hamburger icon color on dark background */
.wp-block-navigation__responsive-container-open svg {
  fill: #fff !important;
}

/* Submenu arrow/icon color */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-icon svg {
  fill: #fff !important;
}

/* Force hamburger menu on tablets and smaller desktops (below 1080px) */
@media (max-width: 1080px) {
  .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }
  .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }
}


/* Mobile nav open/close animations */
@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Animate the overlay background */
.wp-block-navigation__responsive-container.is-menu-open {
  animation: navFadeIn 0.3s ease-out !important;
}

/* Staggered slide-in for each menu item */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item {
  opacity: 0;
  animation: navSlideIn 0.4s ease-out forwards;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item:nth-child(1) { animation-delay: 0.05s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item:nth-child(2) { animation-delay: 0.1s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item:nth-child(3) { animation-delay: 0.15s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item:nth-child(4) { animation-delay: 0.2s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item:nth-child(5) { animation-delay: 0.25s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item:nth-child(6) { animation-delay: 0.3s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item:nth-child(7) { animation-delay: 0.35s; }
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content > .wp-block-navigation-item:nth-child(8) { animation-delay: 0.4s; }

/* Close button fade in */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
  animation: navSlideIn 0.3s ease-out forwards !important;
}

/* Orange glow hover on vehicle cards */
.tpsv-vehicle-card {
  transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.tpsv-vehicle-card:hover {
  border-color: #CF5200 !important;
  box-shadow: 0 0 20px rgba(207, 82, 0, 0.4), 0 4px 24px rgba(0, 0, 0, 0.06) !important;
}


/* --- BUS GALLERY: uniform image sizing --- */
.tpsv-bus-gallery .elementor-widget-image img {
  width: 100% !important;
  height: 400px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
}
@media (max-width: 767px) {
  .tpsv-bus-gallery .elementor-widget-image img {
    height: 250px !important;
  }
}

/* Box Trucks lineup - uniform image cropping */
[data-id="c2cf302"] img,
[data-id="0317841"] img,
[data-id="9e82077"] img {
  object-fit: cover !important;
}

/* Hide phantom WPForms fields */
#wpforms-999-field_6-container,
#wpforms-999-field_7-container,
#wpforms-1002-field_6-container,
#wpforms-1002-field_7-container {
  display: none !important;
}

/* ===== CONTACT US — FORM STYLING ===== */

/* Orange required asterisks */
.wpforms-required-label {
  color: #CF5200 !important;
}

/* Form field labels */
.wpforms-form .wpforms-field-label {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  margin-bottom: 6px !important;
}

/* Input fields styling on dark background */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea {
  background: #1a1a1a !important;
  border: 1px solid #3a3a3a !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  transition: border-color 0.3s ease !important;
}

/* Input focus state */
.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form textarea:focus {
  border-color: #CF5200 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(207, 82, 0, 0.2) !important;
}

/* Placeholder text */
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
  color: #666666 !important;
  font-style: italic !important;
}

/* Textarea specific */
.wpforms-form textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

/* Submit button styling */
.wpforms-form .wpforms-submit-container {
  margin-top: 20px !important;
}

.wpforms-form button[type="submit"],
.wpforms-form .wpforms-submit {
  background-color: #CF5200 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px 40px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.wpforms-form button[type="submit"]:hover,
.wpforms-form .wpforms-submit:hover {
  background-color: #e65d00 !important;
  transform: translateY(-1px) !important;
}

.wpforms-form button[type="submit"]:active,
.wpforms-form .wpforms-submit:active {
  transform: translateY(0) !important;
}

/* Form field containers spacing */
.wpforms-form .wpforms-field {
  margin-bottom: 20px !important;
}

/* Sub-labels (First, Last under Name field) */
.wpforms-form .wpforms-field-sublabel {
  color: #999999 !important;
  font-size: 13px !important;
}

/* Form container max-width for readability */
.wpforms-container {
  max-width: 800px !important;
}