.elementor-15 .elementor-element.elementor-element-8e6c61a{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15 .elementor-element.elementor-element-0d88993{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-15 .elementor-element.elementor-element-8e6c61a{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-03ce37c *//* Removed global * and body .elementor-15 .elementor-element.elementor-element-03ce37cs, created bigroad-section container with specific styles */
.bigroad-section {
  margin: 0;
  scroll-behavior: smooth;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.header-top {
  background: #E30613;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Added responsive logo image styles */
.logo-image {
  height: 40px;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.navbar {
   background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.cta-button {
  background: white;
  color: #dc2626;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
  left: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Updated hero section with bigroad-specific classes and increased tire spacing */
.bigroad-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 3;
}

.bigroad-hero {
  min-height: 97vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px; /* Reduced padding-top from 120px to 90px to move content closer to header */
}

.bigroad-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.bigroad-truck-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://bigroadtires.com/wp-content/uploads/2025/08/fondo2.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bigroad-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.9) 0%,
    rgba(185, 28, 28, 0.8) 50%,
    rgba(153, 27, 27, 0.7) 100%
  );
}

.bigroad-floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.bigroad-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: bigroad-float 15s infinite linear;
}

@keyframes bigroad-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.bigroad-hero-text-container {
  position: relative;
  z-index: 3;
  width: 55%; /* Adjusted to 55% for better balance */
  max-width: 600px;
  padding-right: 40px; /* Added padding instead of margin to create separation */
}

.bigroad-hero-text {
  color: white !important;
}

.bigroad-hero-title {
  font-size: 3rem; /* Reduced from 3.5rem */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  color: white !important;
}

.bigroad-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.bigroad-title-line.bigroad-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.bigroad-title-underline {
  width: 80px;
  height: 4px;
  background: white;
  margin: 20px 0 30px 0;
  border-radius: 2px;
}

.bigroad-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: white !important;
}

/* Added missing animation class for description visibility */
.bigroad-hero-description.bigroad-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.bigroad-hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.5s;
}

.bigroad-hero-buttons.bigroad-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.bigroad-btn-primary {
  background: white;
  color: #dc2626;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bigroad-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bigroad-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bigroad-btn-secondary:hover {
  background: white;
  color: #dc2626;
  transform: translateY(-2px);
}

.bigroad-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.bigroad-btn-primary:hover .bigroad-btn-shine {
  left: 100%;
}

/* Updated tire accordion with increased spacing for better visibility */
.bigroad-tires-accordion-container {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 45%; /* Increased back to 45% to balance with text container */
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  /* Reduced right padding to move tires more to the right */
  padding: 0 80px 20px 0; /* Reduced right padding from 20px to 10px */
}

.bigroad-tire-stack {
  position: relative;
  width: 400px; /* Reduced from 450px */
  height: 400px; /* Reduced from 450px */
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease 0.8s;
}

.bigroad-tire-stack.bigroad-animate-in {
  opacity: 1;
  transform: translateX(0);
}

.bigroad-tire-item {
  position: absolute;
  width: 400px; /* Reduced from 450px */
  height: 400px; /* Reduced from 450px */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.bigroad-tire-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
}

.bigroad-tire-mine {
  z-index: 3;
  transform: translate(-100px, -50px); /* Adjusted from -120px, -60px */
}

.bigroad-tire-bolt {
  z-index: 2;
  transform: translate(-50px, -25px); /* Adjusted from -60px, -30px */
}

.bigroad-tire-block {
  z-index: 1;
  transform: translate(0, 0);
}

.bigroad-tire-item:hover {
  transform: translate(var(--hover-x, 0), var(--hover-y, 0)) scale(1.05);
  z-index: 10;
}

.bigroad-tire-mine:hover {
  --hover-x: -110px; /* Adjusted from -130px */
  --hover-y: -60px; /* Adjusted from -70px */
}

.bigroad-tire-bolt:hover {
  --hover-x: -60px; /* Adjusted from -70px */
  --hover-y: -35px; /* Adjusted from -40px */
}

.bigroad-tire-block:hover {
  --hover-x: 10px;
  --hover-y: -10px;
}

.bigroad-tire-item:hover .bigroad-tire-image {
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.bigroad-tire-item.bigroad-active {
  transform: translate(var(--hover-x, 0), var(--hover-y, 0)) scale(1.05);
  z-index: 10;
}

.bigroad-tire-item.bigroad-inactive {
  opacity: 0.7;
  transform: translate(var(--base-x, 0), var(--base-y, 0)) scale(0.95);
}

.bigroad-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.bigroad-scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bigroad-bounce 2s infinite;
}

@keyframes bigroad-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  40% {
    transform: rotate(45deg) translateY(-10px);
  }
  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(185, 28, 28, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .bigroad-hero-title {
    font-size: 2.8rem;
  }

  .bigroad-hero-text-container {
    width: 60%; /* adjusted for tablet view */
  }

  .bigroad-tires-accordion-container {
    width: 40%; /* increased for tablet view */
    justify-content: center; /* center the tire stack within container */
    padding: 0 0 20px 20px; /* added left padding to move tires more toward center */
  }

  /* Adjusted spacing for tablet view to center tires better */
  .bigroad-tire-mine {
    transform: translate(-60px, -30px); /* reduced negative X from -100px to -60px */
  }

  .bigroad-tire-bolt {
    transform: translate(-30px, -15px); /* reduced negative X from -50px to -30px */
  }

  .bigroad-tire-mine:hover {
    --hover-x: -70px; /* adjusted hover position from -110px to -70px */
    --hover-y: -40px; /* adjusted hover position from -60px to -40px */
  }

  .bigroad-tire-bolt:hover {
    --hover-x: -40px; /* adjusted hover position from -60px to -40px */
    --hover-y: -25px; /* adjusted hover position from -35px to -25px */
  }

  /* Make title underline full width on tablet */
  .bigroad-title-underline {
    width: 100%;
  }

  /* Responsive logo for tablet */
  .logo-image {
    height: 35px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .bigroad-hero {
    flex-direction: column;
    text-align: center;
    padding-top: 160px; /* Increased from 140px for more top space */
    padding-left: 20px; /* Added left padding */
    padding-right: 20px; /* Added right padding */
  }

  .bigroad-hero-text-container {
    width: 100%;
    margin-bottom: 40px;
    padding-right: 0; /* Removed right padding for mobile */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
  }

  /* Added top margin to title for better spacing */
  .bigroad-hero-title {
    font-size: 2.2rem;
    margin-top: 20px; /* Added top margin */
    text-align: center;
  }

  /* Center description text */
  .bigroad-hero-description {
    text-align: center;
    max-width: 90%; /* Limit width for better readability */
  }

  .bigroad-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .bigroad-tires-accordion-container {
    position: relative;
    width: 100%;
    height: 320px;
    padding: 0;
    right: -25px;
    justify-content: center;
  }

  .bigroad-tire-stack {
    width: 320px;
    height: 320px;
  }

  .bigroad-tire-item {
    width: 320px;
    height: 320px;
  }

  /* Adjusted spacing for mobile view */
  .bigroad-tire-mine {
    transform: translate(-80px, -40px);
  }

  .bigroad-tire-bolt {
    transform: translate(-40px, -20px);
  }

  .bigroad-tire-mine:hover {
    --hover-x: -85px;
    --hover-y: -45px;
  }

  .bigroad-tire-bolt:hover {
    --hover-x: -45px;
    --hover-y: -25px;
  }

  /* Make title underline full width on mobile */
  .bigroad-title-underline {
    width: 100%;
  }

  /* Responsive logo for mobile */
  .logo-image {
    height: 30px;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .bigroad-hero {
    padding-top: 180px; /* Increased for more top space on small screens */
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .bigroad-hero-title {
    font-size: 1.8rem;
    margin-top: 30px; /* Increased top margin for small screens */
  }

  .bigroad-hero-description {
    font-size: 1rem;
    max-width: 95%; /* Slightly wider on very small screens */
  }

  .bigroad-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .bigroad-tires-accordion-container {
    position: relative;
    width: 100%;
    height: 320px;
    padding: 0;
    justify-content: center;
    right: -25px;
  }

  .bigroad-tire-stack {
    width: 280px;
    height: 280px;
  }

  .bigroad-tire-item {
    width: 280px;
    height: 280px;
  }

  /* Adjusted spacing for small mobile view */
  .bigroad-tire-mine {
    transform: translate(-70px, -35px);
  }

  .bigroad-tire-bolt {
    transform: translate(-35px, -18px);
  }

  .bigroad-tire-mine:hover {
    --hover-x: -75px;
    --hover-y: -40px;
  }

  .bigroad-tire-bolt:hover {
    --hover-x: -40px;
    --hover-y: -23px;
  }

  /* Make title underline full width on mobile */
  .bigroad-title-underline {
    width: 100%;
  }

  /* Responsive logo for small mobile */
  .logo-image {
    height: 28px;
    max-width: 130px;
  }
}

/* Removed global animation reduction, applied only to bigroad section */
@media (prefers-reduced-motion: reduce) {
  .bigroad-section * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3319175 *//* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Muller Narrow';
  src: url('https://bigroadtires.com/wp-content/fonts/MullerNarrow-Regular.woff2') format('woff2'),
       url('https://bigroadtires.com/wp-content/fonts/MullerNarrow-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografía */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title.white {
  color: white;
}

.section-badge {
  background: #e31e24;
  color: white;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
}

.section-badge.red {
  background: #e31e24;
}

.section-badge.white {
  background: white;
  color: #e31e24;
}

.section-badge::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #e31e24;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.section-badge.white::after {
  border-left-color: white;
}


/* Sección Quiénes Somos */
.about-section {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  padding-right: 40px;
}

.about-description p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.highlight-text {
  font-weight: 700;
  color: #e31e24 !important;
}
.about-description p
{
    color: #495057;
}

.about-visual {
  position: relative;
}

.about-main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-tagline {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: white;
  padding: 20px;
  border-left: 5px solid #e31e24;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-tagline h3 {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.3;
}

.geometric-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #e31e24;
  opacity: 0.1;
}

.geometric-red {
  top: 50px;
  right: -100px;
  transform: rotate(45deg);
}

/* Párrafo con diseño de cita visual */
.quienes-somos-paragraph-quote {
  position: relative;
  background: white;
  padding: 25px 30px 25px 60px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.quienes-somos-quote-mark {
  position: absolute;
  left: 20px;
  top: 15px;
  font-size: 3rem;
  color: #e31e24;
  font-family: "Georgia", serif;
  line-height: 1;
  opacity: 0.7;
}

.quienes-somos-quote-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #495057;
  margin: 0;
  font-style: italic;
}

.quienes-somos-quote-text strong {
  color: #e31e24;
  font-weight: 700;
  font-style: normal;
}

/* Párrafo minimalista con ícono circular */
.quienes-somos-paragraph-minimal {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 2px solid #f8f9fa;
}

.quienes-somos-minimal-icon {
  width: 12px;
  height: 12px;
  background: #e31e24;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.quienes-somos-minimal-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #495057;
  margin: 0;
}

.quienes-somos-minimal-text strong {
  color: #e31e24;
  font-weight: 700;
}

/* Responsive para los estilos únicos de Quiénes Somos */
@media (max-width: 768px) {
  .quienes-somos-text-container {
    gap: 25px;
  }

  .quienes-somos-paragraph-featured,
  .quienes-somos-paragraph-quote {
    padding: 20px 25px;
  }

  .quienes-somos-paragraph-quote {
    padding-left: 50px;
  }

  .quienes-somos-quote-mark {
    font-size: 2.5rem;
    left: 15px;
  }

  .quienes-somos-paragraph-minimal {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .quienes-somos-paragraph-featured,
  .quienes-somos-paragraph-quote {
    padding: 15px 20px;
  }

  .quienes-somos-paragraph-quote {
    padding-left: 45px;
  }

  .quienes-somos-quote-mark {
    font-size: 2rem;
    left: 12px;
  }
}

/* Redesigned different section to match brochure exactly */
.different-section {
  background: #e31e24;
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.different-background {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.different-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}

.different-text {
  padding-right: 40px;
}

.different-intro {
  font-size: 1.1rem;
  line-height: 1.7;
}

.different-intro p {
  margin-bottom: 1.5rem;
}

.different-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: rgba(139, 0, 0, 0.8);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1);
}

.feature-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9) !important;
}

.different-footer {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0px;
  padding: 20px 0;
}

.different-tagline {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 100%;
}

.different-tagline h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
  margin: 0;
}

.red-text {
  color: #e31e24;
  background: white;
  padding: 0 10px;
  border-radius: 4px;
}

/* Completely redesigned sectors section with proper cross layout */
.sectors-section {
  background: #2a2a2a;
  color: white;
  padding: 80px 0;
  position: relative;
}

.sectors-header {
  text-align: center;
  margin-bottom: 60px;
}

.sectors-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 40px;
}

/* New modern grid layout for sectors */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.sector-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(227, 30, 36, 0.3);
  border-color: #e31e24;
}

.sector-card.regional,
.sector-card.transporte {
  background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
  color: white;
}

.sector-card.mineria,
.sector-card.construccion {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
  border: 2px solid #e31e24;
}

.sector-card.industrial {
  background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
  color: white;
}

/* Added geometric accent for visual interest */
.sector-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: rgba(227, 30, 36, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.sector-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.sector-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.sector-icon-img {
  width: 60px;
  height: 60px;
  filter: invert(1);
  object-fit: contain;
}

.sector-badge {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sector-content {
  position: relative;
  z-index: 2;
}

.sector-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sector-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.sector-tag {
  display: inline-block;
  background: #e31e24;
  color: white;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 15px;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.sectors-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid #e31e24;
  margin-top: 40px;
}

.footer-text {
  font-size: 1.1rem;
  color: white;
  margin: 0;
}

/* Enhanced responsive design for all sections */
@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left {
    padding-right: 0;
  }

  .brochure-image-container {
    height: 400px;
  }

  .tagline-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
  }

  .tagline-overlay h3 {
    font-size: 1.1rem;
  }

  .red-line {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .about-content {
    gap: 30px;
  }

  .about-tagline-block {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .red-line {
    width: 100%;
    height: 4px;
    margin-top: 0;
  }

  .tagline-text {
    font-size: 1.4rem;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sector-card {
    padding: 25px;
  }

  .sector-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .sector-icon {
    width: 60px;
    height: 60px;
  }

  .sector-icon-img {
    width: 50px;
    height: 50px;
  }

  .text-block.highlighted {
    padding: 20px 15px;
  }

  .brochure-image-container {
    height: 300px;
  }

  .tagline-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px;
  }

  .tagline-overlay h3 {
    font-size: 1rem;
  }
  .different-content
  {
      display: flex;
      flex-direction: column;
      gap: 15px;
      
  }
  .different-footer p {
      margin-bottom: 2.75em;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .about-section,
  .different-section,
  .sectors-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .tagline-text {
    font-size: 1.2rem;
  }

  .sector-card {
    padding: 20px;
  }

  .sector-content h3 {
    font-size: 1.2rem;
  }

  .different-tagline h2 {
    font-size: 1.5rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9f30771 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.categories-section {
  padding: 80px 0;
  background: #ffffff;
}

.categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.categories-header {
  text-align: center;
  margin-bottom: 60px;
}

.categories-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #dc2626;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  position: relative;
}

.categories-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  border-radius: 2px;
}

.categories-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  height: 350px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25);
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
  min-height: 100%;
  min-width: 100%;
}

.category-card:hover .background-image {
  transform: scale(1.1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
  transition: opacity 0.4s ease;
}

.category-card:hover .slide-overlay {
  opacity: 0.8;
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  z-index: 2;
}

.tire-container {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  z-index: 3;
}

.floating-tire {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
  transition: all 0.5s ease;
  animation: tire-float 4s ease-in-out infinite;
}

.category-card:hover .floating-tire {
  transform: scale(1.15) rotate(10deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@keyframes tire-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.slide-info {
  z-index: 4;
  max-width: 65%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vehicle-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  margin-bottom: 10px;
}

.category-card:hover .vehicle-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.slide-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.slide-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .categories-section {
    padding: 60px 0;
  }

  .categories-title {
    font-size: 2.4rem;
  }

  .category-card {
    height: 320px;
  }

  .floating-tire {
    width: 120px;
    height: 120px;
  }

  .slide-title {
    font-size: 1.6rem;
  }

  .slide-content {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .categories-title {
    font-size: 2.2rem;
  }

  .category-card {
    height: 300px;
  }

  .floating-tire {
    width: 110px;
    height: 110px;
  }

  .slide-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .categories-section {
    padding: 40px 0;
  }

  .categories-container {
    padding: 0 15px;
  }

  .categories-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .categories-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-card {
    height: 280px;
  }

  .tire-container {
    right: 20px;
  }

  .floating-tire {
    width: 100px;
    height: 100px;
  }

  .slide-content {
    padding: 20px;
  }

  .slide-title {
    font-size: 1.3rem;
  }

  .slide-description {
    font-size: 0.9rem;
  }

  .vehicle-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .categories-section {
    padding: 30px 0;
  }

  .categories-title {
    font-size: 1.6rem;
  }

  .category-card {
    height: 250px;
  }

  .floating-tire {
    width: 80px;
    height: 80px;
  }

  .slide-title {
    font-size: 1.1rem;
  }

  .slide-description {
    font-size: 0.85rem;
  }

  .slide-content {
    padding: 15px;
  }

  .vehicle-icon {
    width: 45px;
    height: 45px;
  }

  .tire-container {
    right: 15px;
  }
}

/* Enhanced animations */
@media (prefers-reduced-motion: no-preference) {
  .category-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .floating-tire {
    animation: tire-float 4s ease-in-out infinite;
  }

  .category-card:nth-child(2) .floating-tire {
    animation-delay: -1.3s;
  }

  .category-card:nth-child(3) .floating-tire {
    animation-delay: -2.6s;
  }
}
/* Tire Section Styles */
.tire-section {
  padding: 80px 0; /* Reduced from 100px */
  background: #ffffff;
  position: relative;
  min-height: 100vh;
  padding-bottom: 0px; /* Removed !important from padding-bottom to allow other styles to override */
}

.tire-container-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.tire-header {
  margin-bottom: 60px; /* Reduced from 80px */
}

.tire-header-bar {
  background: #dc2626;
  padding: 16px 32px; /* Reduced from 20px 40px */
  margin-bottom: 32px; /* Reduced from 40px */
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.tire-header-bar .tire-section-title
{
        font-size: 3.1rem !important;
        margin: 0px !important;
}

.tire-header-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.tire-section-title {
  font-size: 2.2rem; /* Reduced from 2.5rem */
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.tire-intro {
  display: flex;
  align-items: center; /* Changed from flex-start to center for better title alignment */
  gap: 24px; /* Reduced from 30px */
  max-width: 1200px;
}

.tire-category-title {
  font-size: 3rem; /* Reduced from 3.5rem */
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1; /* Adjusted line-height for better alignment */
  min-width: 280px; /* Reduced from 300px */
  flex-shrink: 0;
  margin: 0; /* Removed any default margins */
}

.tire-divider {
  width: 4px;
  height: 100px; /* Reduced from 120px */
  background: #dc2626;
  flex-shrink: 0;
  margin: 0;
  position: relative;
}

.tire-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #b91c1c;
  animation: fill-divider 2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fill-divider {
  to {
    height: 100%;
  }
}

.tire-description {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.7;
  font-weight: 400;
  flex: 1;
  margin: 0; /* Removed top margin for better alignment */
}

.tire-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; /* Reduced from 40px */
  margin-top: 48px; /* Reduced from 60px */
}

.tire-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  border: 2px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fade-in-up 0.8s ease-out forwards;
}

.tire-card:nth-child(1) {
  animation-delay: 0.2s;
}
.tire-card:nth-child(2) {
  animation-delay: 0.4s;
}
.tire-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tire-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.tire-card:hover::before {
  left: 100%;
}

.tire-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
}

.tire-card-header {
  background: #dc2626;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.tire-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.tire-card-body {
  padding: 32px 24px; /* Reduced from 40px 30px */
  background: #f8fafc;
  position: relative;
  z-index: 2;
  min-height: 380px; /* Reduced from 400px */
  display: flex;
  flex-direction: column;
}

.tire-card-subtitle {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.tire-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0; /* Reduced from 20px */
  position: relative;
  min-height: 240px; /* Added minimum height for better vertical image display */
}

.tire-product-image {
  width: 220px; /* Increased from 200px */
  height: 220px; /* Increased from 200px */
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: tire-rotate 8s linear infinite;
}

@keyframes tire-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.tire-card:hover .tire-product-image {
  transform: scale(1.1) rotate(0deg); /* Removed !important declarations to reduce specificity conflicts */
  filter: drop-shadow(0 15px 40px rgba(220, 38, 38, 0.3));
  /* Stopping rotation and resetting to original position on hover */
  animation: none;
}

.tire-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tire-card:hover .tire-card-footer {
  border-color: #dc2626;
}

.tire-discover-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.tire-card:hover .tire-discover-text {
  color: #dc2626;
}

.tire-arrow {
  width: 40px;
  height: 40px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.tire-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.tire-card:hover .tire-arrow {
  transform: translateX(10px) scale(1.1);
  background: #b91c1c;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.tire-card:hover .tire-arrow::before {
  width: 100%;
  height: 100%;
}

.tire-arrow svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.tire-card:hover .tire-arrow svg {
  transform: translateX(2px);
}

/* Added styles for expandable tire details */
.tire-details-container {
  margin-top: 48px; /* Reduced from 60px */
}

.tire-details {
  max-height: 1400px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  margin-bottom: 0;
}

.tire-details.active {
  /* Removed max-height limitation to allow full content display */
  max-height: none;
  opacity: 1;
  margin-bottom: 40px;
}

/* Enhanced tire details header styling */
.tire-details-header {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  margin: -24px -24px 24px -24px;
  padding: 16px 24px;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
}

.tire-details-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
  animation: header-shine 3s infinite;
}

@keyframes header-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.tire-details-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px; /* Reduced from 25px 35px */
  position: relative;
  z-index: 2;
}

.tire-details-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #dc2626;
  padding: 12px 25px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
}

.tire-details-badge:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.tire-badge-arrow {
  width: 0;
  height: 0;
  border-left: 12px solid #000000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-right: 5px;
}

.tire-details-badge span {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tire-details-close {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tire-details-close:hover {
  background: rgba(220, 38, 38, 0.8);
  border-color: #dc2626;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.tire-details-close svg {
  color: #ffffff;
  transition: all 0.3s ease;
}

.tire-details-body {
  padding: 28px;
}

.tire-details-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.tire-details-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tire-details-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tire-details-image {
  text-align: center;
  background: #f8fafc;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tire-details-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.tire-details-image img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tire-details-image:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(220, 38, 38, 0.2));
}

/* Added performance indicators styling to fill empty space */
.tire-performance-indicators {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.performance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 6px;
  border-left: 3px solid #dc2626;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.performance-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
  transition: left 0.4s ease;
}

.performance-item:hover::before {
  left: 100%;
}

.performance-item:hover {
  transform: translateX(4px);
  border-left-color: #b91c1c;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.performance-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.performance-item:hover .performance-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.performance-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  position: relative;
  z-index: 2;
}

/* Added simplified specifications table styling */
.tire-specs-simple {
  margin-top: 20px;
}

.tire-specs-simple h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  text-align: center;
}

.tire-specs-simple table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tire-specs-simple table tr {
  border-bottom: 1px solid #e5e7eb;
}

.tire-specs-simple table tr:last-child {
  border-bottom: none;
}

.tire-specs-simple table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  vertical-align: middle;
}

.tire-specs-simple table td:first-child {
  font-weight: 600;
  color: #000000;
  background: #f8fafc;
  width: 50%;
}

.tire-specs-simple table td:last-child {
  color: #000000;
  font-weight: 500;
  text-align: right;
}

/* Enhanced specifications table with brand colors and better styling */
.tire-specs-enhanced {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  /* Added mobile-friendly overflow handling */
  width: 100%;
  max-width: 100%;
}

.specs-header {
  background: #dc2626;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
}

.specs-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: specs-shine 3s infinite;
}

@keyframes specs-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.specs-header h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

/* Added horizontal scroll container for mobile tables */
.specs-table-container {
  background: #ffffff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  /* Ensure minimum width for readability on mobile */
  min-width: 300px;
}

.specs-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.specs-table tbody tr:hover {
  background: #fef2f2;
}

.spec-label {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  background: #f8fafc;
  width: 60%;
  border-right: 1px solid #e5e7eb;
  position: relative;
  /* Prevent text wrapping on mobile */
  white-space: nowrap;
  min-width: 120px;
}

.spec-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #dc2626;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.specs-table tbody tr:hover .spec-label::before {
  opacity: 1;
}

.spec-value {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  text-align: right;
  background: #ffffff;
  /* Prevent text wrapping and ensure minimum width */
  white-space: nowrap;
  min-width: 100px;
}

/* Enhanced tire visual section with better styling */
.tire-visual-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

/* Added enhanced styling for tire characteristics section with brand colors */
.tire-characteristics-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.tire-section-header {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  margin: -24px -24px 24px -24px;
  padding: 16px 24px;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
}

.tire-section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
  animation: section-shine 3s infinite;
}

@keyframes section-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.tire-section-header h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.tire-feature-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #dc2626;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tire-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
  transition: left 0.5s ease;
}

.tire-feature-card:hover::before {
  left: 100%;
}

.tire-feature-card:hover {
  background: #ffffff;
  border-left-color: #b91c1c;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tire-feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.feature-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.feature-content h4 {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.feature-content p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
}

.tire-application-card {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 8px;
  padding: 20px;
  border: 2px solid #fecaca;
  margin-top: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tire-application-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.5s ease;
}

.tire-application-card:hover::before {
  left: 100%;
}

.tire-application-card:hover {
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.application-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.application-icon {
  width: 32px;
  height: 32px;
  background: #dc2626;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.application-badge {
  background: #dc2626;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tire-application-card p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tire-section {
    padding: 64px 0; /* Reduced from 80px */
  }
  .tire-category-title {
    font-size: 2.6rem; /* Reduced from 3rem */
    min-width: 220px; /* Reduced from 250px */
  }
  .tire-products-grid {
    gap: 24px; /* Reduced from 30px */
  }
  .tire-product-image {
    width: 200px; /* Increased from 180px */
    height: 200px; /* Increased from 180px */
  }
  .tire-details-main {
    gap: 30px;
  }
  .tire-characteristics-section,
  .tire-visual-section {
    padding: 20px;
  }

  .tire-section-header {
    margin: -20px -20px 20px -20px;
    padding: 14px 20px;
  }

  .tire-feature-card {
    padding: 16px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
  }

  .tire-details-image {
    padding: 24px;
    min-height: 300px;
  }
}

@media (max-width: 992px) {
  .tire-intro {
    flex-direction: column;
    gap: 16px; /* Reduced from 20px */
  }
  .tire-category-title {
    font-size: 2.2rem; /* Reduced from 2.5rem */
    min-width: auto;
  }
  .tire-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px; /* Reduced from 30px */
  }
  .tire-product-image {
    width: 190px; /* Increased from 180px */
    height: 190px; /* Increased from 180px */
  }
  .tire-details-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .tire-details-right {
    order: -1;
  }
  .tire-section-header h3 {
    font-size: 1.1rem;
  }
  .tire-characteristics-section,
  .tire-visual-section {
    padding: 16px;
  }

  .tire-section-header {
    margin: -16px -16px 16px -16px;
    padding: 12px 16px;
  }

  .tire-feature-card {
    padding: 14px;
    gap: 12px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .feature-content h4 {
    font-size: 1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }

  .tire-details-image {
    padding: 20px;
    min-height: 250px;
  }

  .spec-label,
  .spec-value {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .tire-section {
    padding: 48px 0;
  }
  .tire-details.active {
    max-height: 1590px;
  }
  .tire-container-main {
    padding: 0 15px;
  }
  .tire-header {
    margin-bottom: 48px;
  }
  .tire-header-bar {
    padding: 12px 16px;
    margin-bottom: 24px;
  }
  .tire-section-title {
    font-size: 1.8rem;
  }
  .tire-category-title {
    font-size: 1.9rem;
  }
  .tire-description {
    font-size: 1rem;
  }
  .tire-products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .tire-card-body {
    padding: 24px 16px;
    min-height: 320px;
  }
  .tire-product-image {
    width: 170px;
    height: 170px;
  }
  .tire-discover-text {
    font-size: 1rem;
  }
  .tire-arrow {
    width: 35px;
    height: 35px;
  }
  .tire-arrow svg {
    width: 18px;
    height: 18px;
  }
  .tire-details-main {
    gap: 20px;
  }
  .tire-characteristics-section,
  .tire-visual-section {
    padding: 16px;
  }

  .tire-section-header {
    margin: -16px -16px 16px -16px;
    padding: 12px 16px;
  }

  .tire-feature-card {
    padding: 12px;
    gap: 10px;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
  }

  .tire-details-image {
    padding: 16px;
    min-height: 200px;
  }

  .spec-label,
  .spec-value {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .tire-section {
    padding: 32px 0;
  }
  .tire-specs-enhanced {
    max-width: 100%;
  }
  .tire-details.active {
    max-height: 1750px;
  }
  .tire-header-bar {
    padding: 10px 12px;
  }
  .tire-section-title {
    font-size: 1.5rem;
  }
  .tire-category-title {
    font-size: 1.7rem;
  }
  .tire-description {
    font-size: 0.9rem;
  }
  .tire-card-header {
    padding: 12px 16px;
  }
  .tire-card-title {
    font-size: 1.4rem;
  }
  .tire-card-body {
    padding: 20px 12px;
    min-height: 300px;
  }
  .tire-product-image {
    width: 150px;
    height: 150px;
  }
  .tire-discover-text {
    font-size: 1rem;
  }
  .tire-arrow {
    width: 35px;
    height: 35px;
  }
  .tire-arrow svg {
    width: 18px;
    height: 18px;
  }
  .tire-details-main {
    gap: 16px;
  }
  .tire-characteristics-section,
  .tire-visual-section {
    padding: 12px;
  }

  .tire-section-header {
    margin: -12px -12px 12px -12px;
    padding: 10px 12px;
  }

  .tire-feature-card {
    padding: 12px;
    gap: 10px;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
  }

  .tire-details-image {
    padding: 16px;
    min-height: 200px;
    width: 87vw;
  }

  .spec-label,
  .spec-value {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  .tire-details-body {
    padding: 0px;
  }
}

/* Added specific mobile landscape optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .tire-details-main {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .tire-details-right {
    order: 0;
  }

  .spec-label,
  .spec-value {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

/* Added utility class for better mobile table handling */
.mobile-scroll-hint {
  display: none;
}

@media (max-width: 768px) {
  .mobile-scroll-hint {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 8px;
    font-style: italic;
  }
}
/* VOLQUETES Section Styles */
.volquetes-section {
  padding: 80px 0;
  padding-top: 10px;
  background: #ffffff;
  position: relative;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

.volquetes-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.volquetes-header {
  margin-bottom: 60px;
}

.volquetes-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
}

.volquetes-category-title {
  font-size: 3rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  min-width: 280px;
  flex-shrink: 0;
  margin: 0;
}

.volquetes-divider {
  width: 4px;
  height: 100px;
  background: #dc2626;
  flex-shrink: 0;
  margin: 0;
  position: relative;
}

.volquetes-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #b91c1c;
  animation: volquetes-fill-divider 2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes volquetes-fill-divider {
  to {
    height: 100%;
  }
}

.volquetes-description {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.7;
  font-weight: 400;
  flex: 1;
  margin: 0;
}

.volquetes-cards-section {
  margin-top: 48px;
}

.volquetes-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.volquetes-tire-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  border: 2px solid #e5e7eb;
  opacity: 0;
  transform: translateY(40px);
  animation: volquetes-fade-in-up 0.8s ease-out forwards;
}

.volquetes-tire-card:nth-child(1) {
  animation-delay: 0.2s;
}
.volquetes-tire-card:nth-child(2) {
  animation-delay: 0.4s;
}
.volquetes-tire-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes volquetes-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.volquetes-tire-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.volquetes-tire-card:hover::before {
  left: 100%;
}

.volquetes-tire-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
}

.volquetes-card-header {
  background: #dc2626;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.volquetes-tire-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.volquetes-card-body {
  padding: 32px 24px;
  background: #f8fafc;
  position: relative;
  z-index: 2;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.volquetes-tire-description {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.volquetes-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  position: relative;
  min-height: 240px;
}

.volquetes-tire-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: volquetes-tire-rotate 8s linear infinite;
}

@keyframes volquetes-tire-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.volquetes-tire-card:hover .volquetes-tire-image {
  transform: scale(1.1) rotate(0deg) !important;
  filter: drop-shadow(0 15px 40px rgba(220, 38, 38, 0.3));
  animation: none !important;
}

.volquetes-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.volquetes-tire-card:hover .volquetes-card-footer {
  border-color: #dc2626;
}

.volquetes-discover-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.volquetes-tire-card:hover .volquetes-discover-text {
  color: #dc2626;
}

.volquetes-arrow {
  width: 40px;
  height: 40px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.volquetes-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.volquetes-tire-card:hover .volquetes-arrow {
  transform: translateX(10px) scale(1.1);
  background: #b91c1c;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.volquetes-tire-card:hover .volquetes-arrow::before {
  width: 100%;
  height: 100%;
}

.volquetes-arrow svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.volquetes-tire-card:hover .volquetes-arrow svg {
  transform: translateX(2px);
}

/* Modal/Details Styles */
.volquetes-tire-details {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.volquetes-details-header {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.volquetes-details-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: volquetes-header-shine 3s infinite;
}

@keyframes volquetes-header-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.volquetes-details-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #dc2626;
  padding: 12px 25px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.volquetes-badge-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.volquetes-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.volquetes-close-btn:hover {
  background: rgba(220, 38, 38, 0.8);
  border-color: #dc2626;
  transform: rotate(90deg) scale(1.1);
}

.volquetes-close-icon {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}

.volquetes-details-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 60px;
  min-height: 600px;
}

.volquetes-top-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.volquetes-details-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 100%;
}

.volquetes-details-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
  align-items: center;
}

.volquetes-characteristics-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  width: 100%;
}

.volquetes-section-title {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: -24px -24px 24px -24px;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 12px 12px 0 0;
}

.volquetes-characteristic-card {
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #dc2626;
  transition: all 0.3s ease;
}

.volquetes-characteristic-card:hover {
  background: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.volquetes-characteristic-title {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.volquetes-characteristic-desc {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.volquetes-tire-image-container {
  text-align: center;
  background: #f8fafc;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
}

.volquetes-tire-detail-image {
  max-width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

.volquetes-specs-section {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  width: 100%;
  margin-top: 0;
}

.volquetes-specs-title {
  background: #dc2626;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  padding: 16px 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.volquetes-specs-table-container {
  background: #ffffff;
  overflow-x: auto;
}

.volquetes-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.volquetes-specs-table thead th {
  background: #dc2626;
  color: #ffffff;
  padding: 8px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  min-width: 80px;
}

.volquetes-specs-table thead th:last-child {
  border-right: none;
}

.volquetes-specs-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.volquetes-specs-table tbody tr:last-child {
  border-bottom: none;
}

.volquetes-specs-table tbody tr:hover {
  background: #fef2f2;
}

.volquetes-specs-table tbody td {
  padding: 8px 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #000000;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;
  background: #ffffff;
}

.volquetes-specs-table tbody td:last-child {
  border-right: none;
}

/* Fixed responsive design with proper mobile-first approach and improved breakpoints */
/* Mobile First - Base styles (320px+) */
@media (max-width: 767px) {
  .volquetes-section {
    padding: 40px 0 20px 0;
  }

  .volquetes-container {
    padding: 0 16px;
  }

  .volquetes-header {
    margin-bottom: 40px;
  }

  .volquetes-intro {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
  }

  .volquetes-category-title {
    font-size: 2rem;
    line-height: 1.2;
    min-width: auto;
    text-align: center;
  }

  .volquetes-divider {
    width: 80px;
    height: 4px;
    order: -1;
  }

  .volquetes-description {
    font-size: 1rem;
    text-align: center;
  }

  .volquetes-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .volquetes-tire-card {
    margin: 0;
    max-width: 100%;
  }

  .volquetes-card-body {
    padding: 24px 20px;
    min-height: 300px;
  }

  .volquetes-tire-name {
    font-size: 1.5rem;
  }

  .volquetes-tire-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .volquetes-image-container {
    min-height: 200px;
  }

  .volquetes-tire-image {
    width: 180px;
    height: 180px;
  }

  /* Modal responsive fixes */
  .volquetes-tire-details {
    margin: 20px 16px;
    border-radius: 8px;
    max-width: calc(100vw - 32px);
  }

  .volquetes-details-header {
    padding: 16px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .volquetes-badge-text {
    font-size: 1.2rem;
  }

  .volquetes-close-btn {
    width: 40px;
    height: 40px;
  }

  .volquetes-details-content {
    padding: 20px 16px;
    gap: 24px;
    min-height: auto;
  }

  .volquetes-top-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .volquetes-section-title {
    font-size: 1.1rem;
    padding: 12px 16px;
    margin: -24px -24px 20px -24px;
  }

  .volquetes-characteristic-card {
    padding: 16px;
    margin-bottom: 12px;
  }

  .volquetes-characteristic-title {
    font-size: 1rem;
  }

  .volquetes-characteristic-desc {
    font-size: 0.9rem;
  }

  .volquetes-tire-image-container {
    min-height: 250px;
    padding: 20px;
    max-width: 100%;
  }

  .volquetes-tire-detail-image {
    max-height: 220px;
  }

  .volquetes-specs-table {
    font-size: 0.7rem;
    min-width: 600px;
  }

  .volquetes-specs-table thead th,
  .volquetes-specs-table tbody td {
    padding: 6px 4px;
    font-size: 0.65rem;
  }

  .volquetes-specs-title {
    font-size: 1rem;
    padding: 12px 16px;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .volquetes-category-title {
    font-size: 1.8rem;
  }

  .volquetes-tire-image {
    width: 160px;
    height: 160px;
  }

  .volquetes-card-body {
    padding: 20px 16px;
  }

  .volquetes-tire-details {
    margin: 16px 12px;
  }

  .volquetes-details-content {
    padding: 16px 12px;
  }

  .volquetes-specs-table {
    min-width: 500px;
  }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .volquetes-container {
    padding: 0 24px;
  }

  .volquetes-category-title {
    font-size: 2.5rem;
  }

  .volquetes-intro {
    flex-direction: row;
    text-align: left;
  }

  .volquetes-divider {
    width: 4px;
    height: 80px;
  }

  .volquetes-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .volquetes-details-content {
    padding: 30px 24px;
  }

  .volquetes-top-section {
    grid-template-columns: 1fr 320px;
    gap: 30px;
  }

  .volquetes-tire-image-container {
    max-width: 320px;
    min-height: 300px;
  }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
  .volquetes-container {
    max-width: 1400px;
    padding: 0 32px;
  }

  .volquetes-category-title {
    font-size: 3rem;
  }

  .volquetes-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .volquetes-details-content {
    padding: 40px 60px;
  }

  .volquetes-top-section {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }

  .volquetes-tire-image-container {
    max-width: 400px;
    min-height: 470px;
  }
}

/* Large Desktop (1367px+) */
@media (min-width: 1367px) {
  .volquetes-container {
    padding: 0 40px;
  }

  .volquetes-category-title {
    font-size: 3.2rem;
  }

  .volquetes-details-content {
    padding: 60px 80px;
  }

  .volquetes-top-section {
    gap: 50px;
  }
}

/* Added touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
  .volquetes-tire-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
  }

  .volquetes-tire-card:active {
    transform: scale(0.98);
  }

  .volquetes-tire-image {
    animation: none;
  }

  .volquetes-tire-card:hover .volquetes-tire-image {
    transform: none;
    animation: none;
  }
}
/* CYBERSECURITY Services Section Styles */
.cybersecurity-section {
  padding: 80px 0;
  padding-top: 10px;
  background: #ffffff;
  position: relative;
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
}

.cybersecurity-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.cybersecurity-header {
  margin-bottom: 60px;
}

.cybersecurity-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
}

.cybersecurity-category-title {
  font-size: 3rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  min-width: 280px;
  flex-shrink: 0;
  margin: 0;
}

.cybersecurity-divider {
  width: 4px;
  height: 100px;
  background: #dc2626;
  flex-shrink: 0;
  margin: 0;
  position: relative;
}

.cybersecurity-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #b91c1c;
  animation: cybersecurity-fill-divider 2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes cybersecurity-fill-divider {
  to {
    height: 100%;
  }
}

.cybersecurity-description {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.7;
  font-weight: 400;
  flex: 1;
  margin: 0;
}

.cybersecurity-cards-section {
  margin-top: 48px;
}

.cybersecurity-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cybersecurity-service-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  border: 2px solid #e5e7eb;
  opacity: 0;
  transform: translateY(40px);
  animation: cybersecurity-fade-in-up 0.8s ease-out forwards;
}

.cybersecurity-service-card:nth-child(1) {
  animation-delay: 0.2s;
}
.cybersecurity-service-card:nth-child(2) {
  animation-delay: 0.4s;
}
.cybersecurity-service-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes cybersecurity-fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cybersecurity-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.cybersecurity-service-card:hover::before {
  left: 100%;
}

.cybersecurity-service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
}

.cybersecurity-card-header {
  background: #dc2626;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.cybersecurity-service-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.cybersecurity-card-body {
  padding: 32px 24px;
  background: #f8fafc;
  position: relative;
  z-index: 2;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.cybersecurity-service-description {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.cybersecurity-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  position: relative;
  min-height: 240px;
}

.cybersecurity-service-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: cybersecurity-pulse 3s ease-in-out infinite;
}

@keyframes cybersecurity-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.cybersecurity-service-card:hover .cybersecurity-service-image {
  transform: scale(1.1) !important;
  filter: drop-shadow(0 15px 40px rgba(220, 38, 38, 0.3));
  animation: none !important;
}

.cybersecurity-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.cybersecurity-service-card:hover .cybersecurity-card-footer {
  border-color: #dc2626;
}

.cybersecurity-discover-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.cybersecurity-service-card:hover .cybersecurity-discover-text {
  color: #dc2626;
}

.cybersecurity-arrow {
  width: 40px;
  height: 40px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.cybersecurity-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.cybersecurity-service-card:hover .cybersecurity-arrow {
  transform: translateX(10px) scale(1.1);
  background: #b91c1c;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.cybersecurity-service-card:hover .cybersecurity-arrow::before {
  width: 100%;
  height: 100%;
}

.cybersecurity-arrow svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.cybersecurity-service-card:hover .cybersecurity-arrow svg {
  transform: translateX(2px);
}

/* Modal/Details Styles */
.cybersecurity-service-details {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cybersecurity-details-header {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cybersecurity-details-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: cybersecurity-header-shine 3s infinite;
}

@keyframes cybersecurity-header-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.cybersecurity-details-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #dc2626;
  padding: 12px 25px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cybersecurity-badge-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cybersecurity-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cybersecurity-close-btn:hover {
  background: rgba(220, 38, 38, 0.8);
  border-color: #dc2626;
  transform: rotate(90deg) scale(1.1);
}

.cybersecurity-close-icon {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}

.cybersecurity-details-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 60px;
  min-height: 600px;
}

.cybersecurity-top-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.cybersecurity-characteristics-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  width: 100%;
}

.cybersecurity-section-title {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: -24px -24px 24px -24px;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 12px 12px 0 0;
}

.cybersecurity-characteristic-card {
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #dc2626;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cybersecurity-characteristic-card:hover {
  background: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.cybersecurity-characteristic-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cybersecurity-characteristic-content {
  flex: 1;
}

.cybersecurity-characteristic-title {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.cybersecurity-characteristic-desc {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cybersecurity-application-section {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 8px;
  padding: 20px;
  border: 2px solid #fecaca;
  margin-top: 20px;
}

.cybersecurity-application-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  width: fit-content;
}

.cybersecurity-application-list {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  padding-left: 20px;
}

.cybersecurity-application-list li {
  margin-bottom: 8px;
}

.cybersecurity-service-image-container {
  text-align: center;
  background: #f8fafc;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  gap: 20px;
}

.cybersecurity-service-detail-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

.cybersecurity-performance-badge {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.cybersecurity-badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cybersecurity-badge-content {
  flex: 1;
  text-align: left;
}

.cybersecurity-badge-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cybersecurity-badge-desc {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
}

.cybersecurity-specs-section {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  width: 100%;
  margin-top: 0;
}

.cybersecurity-specs-title {
  background: #dc2626;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  padding: 16px 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cybersecurity-specs-table-container {
  background: #ffffff;
  overflow-x: auto;
}

.cybersecurity-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cybersecurity-specs-table thead th {
  background: #dc2626;
  color: #ffffff;
  padding: 8px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  min-width: 80px;
}

.cybersecurity-specs-table thead th:last-child {
  border-right: none;
}

.cybersecurity-specs-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.cybersecurity-specs-table tbody tr:last-child {
  border-bottom: none;
}

.cybersecurity-specs-table tbody tr:hover {
  background: #fef2f2;
}

.cybersecurity-specs-table tbody td {
  padding: 8px 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #000000;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;
  background: #ffffff;
}

.cybersecurity-specs-table tbody td:last-child {
  border-right: none;
}

/* Responsive Design */
/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
  .cybersecurity-section {
    padding: 40px 0;
  }

  .cybersecurity-container {
    padding: 0 16px;
  }

  .cybersecurity-intro {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cybersecurity-category-title {
    font-size: 2rem;
    line-height: 1.2;
    min-width: auto;
  }

  .cybersecurity-description {
    font-size: 1rem;
  }

  .cybersecurity-divider {
    width: 80px;
    height: 3px;
  }

  .cybersecurity-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cybersecurity-service-card {
    margin: 0 8px;
  }

  .cybersecurity-card-body {
    padding: 24px 16px;
    min-height: 320px;
  }

  .cybersecurity-service-image {
    width: 180px;
    height: 180px;
  }

  .cybersecurity-details-content {
    padding: 20px 16px;
  }

  .cybersecurity-top-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cybersecurity-service-image-container {
    min-height: 220px;
    padding: 16px;
    max-width: 100%;
  }

  .cybersecurity-performance-badge {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .cybersecurity-badge-content {
    text-align: center;
  }

  .cybersecurity-specs-table {
    font-size: 0.7rem;
  }

  .cybersecurity-specs-table thead th,
  .cybersecurity-specs-table tbody td {
    padding: 6px 4px;
    font-size: 0.65rem;
  }
}

/* Mobile Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .cybersecurity-intro {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cybersecurity-category-title {
    font-size: 2.5rem;
    min-width: auto;
  }

  .cybersecurity-divider {
    width: 100px;
    height: 4px;
  }

  .cybersecurity-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cybersecurity-details-content {
    padding: 30px 20px;
  }

  .cybersecurity-top-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cybersecurity-service-image-container {
    max-width: 100%;
    min-height: 280px;
    padding: 24px;
  }

  .cybersecurity-performance-badge {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .cybersecurity-container {
    padding: 0 24px;
  }

  .cybersecurity-category-title {
    font-size: 2.8rem;
  }

  .cybersecurity-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .cybersecurity-details-content {
    padding: 40px 40px;
  }

  .cybersecurity-top-section {
    grid-template-columns: 1fr 350px;
    gap: 35px;
  }

  .cybersecurity-service-image-container {
    max-width: 350px;
    min-height: 320px;
  }

  .cybersecurity-specs-table {
    font-size: 0.8rem;
  }
}

/* Laptop Small (1025px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .cybersecurity-container {
    max-width: 1200px;
    padding: 0 32px;
  }

  .cybersecurity-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .cybersecurity-details-content {
    padding: 50px 50px;
  }

  .cybersecurity-top-section {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }
}

/* Laptop Large & Desktop (1367px+) */
@media (min-width: 1367px) {
  .cybersecurity-container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .cybersecurity-category-title {
    font-size: 3.2rem;
  }

  .cybersecurity-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .cybersecurity-details-content {
    padding: 60px 80px;
  }

  .cybersecurity-top-section {
    grid-template-columns: 1fr 400px;
    gap: 50px;
  }
}

/* Improved modal responsive behavior */
@media (max-width: 768px) {
  .cybersecurity-service-details {
    margin: 20px 10px;
    border-radius: 8px;
  }

  .cybersecurity-details-header {
    padding: 16px 20px;
  }

  .cybersecurity-badge-text {
    font-size: 1.2rem;
  }

  .cybersecurity-close-btn {
    width: 40px;
    height: 40px;
  }
}

/* Enhanced table responsiveness */
@media (max-width: 1024px) {
  .cybersecurity-specs-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cybersecurity-specs-table {
    min-width: 800px;
  }
}

/* Updated tire details styling to match BIGROAD brand identity */
.tire-details-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid #f1f5f9;
}

.tire-top-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.tire-characteristics-section {
  background: #f8fafc;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #dc2626;
}

.tire-section-title {
  background: #dc2626;
  color: #ffffff;
  padding: 12px 20px;
  margin: -24px -24px 24px -24px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tire-characteristic-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tire-characteristic-icon {
  font-size: 1.5rem;
  background: #fef2f2;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #fecaca;
  flex-shrink: 0;
}

.tire-characteristic-content h5 {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.tire-characteristic-content p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.tire-image-container {
  background: #f8fafc;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.tire-detail-image {
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

.tire-specs-section {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.tire-specs-title {
  background: #dc2626;
  color: #ffffff;
  padding: 16px 24px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tire-specs-table-container {
  overflow-x: auto;
  background: #ffffff;
}

.tire-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.tire-spec-header {
  background: #f8fafc;
  color: #374151;
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px solid #dc2626;
  border-right: 1px solid #e5e7eb;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tire-spec-value {
  padding: 14px 8px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  color: #1f2937;
  font-weight: 500;
}

.tire-spec-value:last-child,
.tire-spec-header:last-child {
  border-right: none;
}

/* Responsive design updates for mobile devices */
@media (max-width: 1024px) {
  .tire-top-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tire-image-container {
    min-height: 250px;
  }

  .tire-detail-image {
    max-height: 220px;
  }
}

@media (max-width: 768px) {
  .tire-details-content {
    padding: 20px;
  }

  .tire-characteristic-card {
    flex-direction: column;
    text-align: center;
  }

  .tire-specs-table {
    font-size: 0.75rem;
  }

  .tire-spec-header,
  .tire-spec-value {
    padding: 8px 4px;
    font-size: 0.7rem;
  }
}

/* Added BIGROAD brand identity styling for tire details */
.tire-details-header-brand {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 0;
}

.brand-geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  background: #dc2626;
  opacity: 0.8;
}

.geometric-shape.shape-1 {
  width: 200px;
  height: 80px;
  top: -20px;
  right: -50px;
  transform: skew(-20deg);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.geometric-shape.shape-2 {
  width: 150px;
  height: 60px;
  top: 20px;
  right: 100px;
  transform: skew(-15deg);
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.geometric-shape.shape-3 {
  width: 100px;
  height: 40px;
  top: -10px;
  right: 200px;
  transform: skew(-25deg);
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.tire-brand-header-content {
  position: relative;
  z-index: 2;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tire-brand-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tire-brand-subtitle {
  font-size: 1rem;
  color: #f3f4f6;
  margin: 0;
  font-weight: 400;
  opacity: 0.9;
}

.tire-details-close-brand {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.tire-details-close-brand:hover {
  background: rgba(220, 38, 38, 0.8);
  border-color: #dc2626;
  transform: rotate(90deg) scale(1.1);
}

.tire-details-content-brand {
  padding: 32px;
  background: #ffffff;
}

.tire-brand-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.tire-characteristics-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.characteristics-header-brand {
  background: #dc2626;
  padding: 16px 24px;
  border-radius: 0;
  margin-bottom: 24px;
}

.characteristics-title-brand {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.characteristics-grid-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.characteristic-item-brand {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #dc2626;
  transition: all 0.3s ease;
}

.characteristic-item-brand:hover {
  background: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.characteristic-icon-brand {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.characteristic-item-brand:hover .characteristic-icon-brand {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.icon-placeholder {
  font-size: 1.2rem;
  color: #ffffff;
}

.characteristic-content-brand h5 {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.characteristic-content-brand p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.construction-section-brand {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.construction-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.construction-icon-brand {
  width: 32px;
  height: 32px;
  background: #dc2626;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.construction-header-brand h4 {
  color: #dc2626;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.construction-list-brand {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.construction-list-brand li {
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.construction-list-brand li::before {
  content: "•";
  color: #dc2626;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.traction-badge-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #dc2626;
  padding: 12px 20px;
  border-radius: 8px;
  width: fit-content;
}

.traction-icon-brand {
  color: #ffffff;
  font-size: 1.2rem;
}

.traction-text-brand {
  color: #ffffff;
}

.traction-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tire-image-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  min-height: 400px;
}

.tire-detail-image-brand {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

.tire-image-brand:hover .tire-detail-image-brand {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(220, 38, 38, 0.2));
}

.tire-specs-brand {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.specs-title-brand {
  background: #dc2626;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.specs-table-brand {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.specs-table-brand table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.specs-table-brand thead th {
  background: #f8fafc;
  color: #000000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 8px;
  text-align: center;
  border-bottom: 2px solid #dc2626;
  white-space: nowrap;
}

.specs-table-brand tbody td {
  padding: 12px 8px;
  font-size: 0.85rem;
  color: #000000;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
  white-space: nowrap;
}

.specs-table-brand tbody tr:hover {
  background: #fef2f2;
}

.specs-table-brand tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive design for brand identity elements */
@media (max-width: 992px) {
  .tire-brand-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tire-image-brand {
    order: -1;
    min-height: 300px;
  }

  .tire-brand-title {
    font-size: 2rem;
  }

  .geometric-shape.shape-1 {
    width: 150px;
    height: 60px;
  }

  .geometric-shape.shape-2 {
    width: 100px;
    height: 40px;
  }

  .geometric-shape.shape-3 {
    width: 80px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .tire-details-content-brand {
    padding: 20px;
  }

  .tire-brand-header-content {
    padding: 20px 24px;
  }

  .tire-brand-title {
    font-size: 1.8rem;
  }

  .characteristic-item-brand {
    padding: 16px;
    gap: 12px;
  }

  .characteristic-icon-brand {
    width: 40px;
    height: 40px;
  }

  .construction-section-brand {
    padding: 20px;
  }

  .tire-image-brand {
    padding: 20px;
    min-height: 250px;
  }

  .specs-table-brand table {
    min-width: 600px;
  }

  .specs-table-brand thead th,
  .specs-table-brand tbody td {
    padding: 8px 6px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .tire-brand-header-content {
    padding: 16px 20px;
  }

  .tire-brand-title {
    font-size: 1.5rem;
  }

  .tire-details-content-brand {
    padding: 16px;
  }

  .characteristic-item-brand {
    padding: 12px;
    gap: 10px;
  }

  .characteristic-icon-brand {
    width: 36px;
    height: 36px;
  }

  .tire-image-brand {
    padding: 16px;
    min-height: 200px;
  }

  .specs-table-brand table {
    min-width: 500px;
  }
}

/* Added touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
  .tire-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
  }

  .tire-card:active {
    transform: scale(0.98);
  }

  .tire-product-image {
    animation: none;
  }

  .tire-card:hover .tire-product-image {
    transform: none;
    animation: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-078a0c0 *//* BIGROAD Brand Story Section - adjusted colors to use only red, white, and black */
.bigroad-brand-story-section {
  /* Reduced height from min-height: 100vh to 80vh for more compact design */
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  /* Added background image with red overlay filter */
  background: linear-gradient(
      135deg,
      rgba(220, 38, 38, 0.85) 0%,
      rgba(185, 28, 28, 0.9) 50%,
      rgba(153, 27, 27, 0.95) 100%
    ), url("https://bigroadtires.com/wp-content/uploads/2025/08/fondo2.jpg") center / cover;
}

.bigroad-brand-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bigroad-road-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  /* Removed the background image since it's now the main background */
  background: rgba(0, 0, 0, 0.1);
  opacity: 0.3;
  animation: bigroad-road-move 20s linear infinite;
}

@keyframes bigroad-road-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100px);
  }
}

.bigroad-tire-tracks {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: bigroad-tracks-move 15s linear infinite;
}

@keyframes bigroad-tracks-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-60px);
  }
}

.bigroad-brand-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  /* Reduced padding from 60px to 40px for more compact design */
  padding: 40px 20px;
  /* Reduced min-height from 100vh to 80vh */
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

.bigroad-brand-logo-placeholder {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 10;
}

/* Updated logo styles for actual image instead of text placeholder */
.bigroad-logo-image {
  max-height: 60px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  animation:  3s ease-in-out infinite alternate;
}

.bigroad-logo-image:hover {
  opacity: 1;
}

@keyframes bigroad-logo-glow {
  0% {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  }
  100% {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  }
}

.bigroad-brand-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Reduced gap from 80px to 60px for more compact layout */
  gap: 60px;
  align-items: center;
  /* Reduced margin-top from 100px to 60px */
  margin-top: 60px;
}

.bigroad-brand-text-area {
  animation: bigroad-slide-in-left 1s ease-out;
}

@keyframes bigroad-slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.bigroad-brand-main-title {
  /* Reduced font size from 3.5rem to 3rem for more compact design */
  font-size: 5rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  /* Reduced margin-bottom from 50px to 30px */
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.bigroad-title-line {
  display: block;
  position: relative;
  animation: bigroad-title-reveal 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.bigroad-title-line:nth-child(1) {
  animation-delay: 0.2s;
}
.bigroad-title-line:nth-child(2) {
  animation-delay: 0.4s;
}
.bigroad-title-line:nth-child(3) {
  animation-delay: 0.6s;
}
.bigroad-title-line:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes bigroad-title-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bigroad-title-line.highlight {
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.bigroad-brand-story-cards {
  display: flex;
  flex-direction: column;
  /* Reduced gap from 25px to 20px for more compact cards */
  gap: 20px;
}

.bigroad-story-card {
  position: relative;
  /* Reduced height from 120px to 100px for more compact cards */
  height: 100px;
  perspective: 1000px;
  cursor: pointer;
}

.bigroad-card-front,
.bigroad-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  /* Reduced padding from 20px to 15px */
  padding: 15px;
  display: flex;
  align-items: center;
}

.bigroad-card-back {
  transform: rotateY(180deg);
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.bigroad-story-card:hover .bigroad-card-front {
  transform: rotateY(180deg);
}

.bigroad-story-card:hover .bigroad-card-back {
  transform: rotateY(0deg);
}

.bigroad-story-card p {
  color: white;
  /* Reduced font size from 1rem to 0.9rem for more compact text */
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.bigroad-card-back p {
  font-weight: 700;
  /* Reduced font size from 1.2rem to 1.1rem */
  font-size: 1.1rem;
  text-align: center;
  color: #ffffff;
}

.bigroad-brand-visual-area {
  position: relative;
  animation: bigroad-slide-in-right 1s ease-out;
}

@keyframes bigroad-slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.bigroad-truck-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bigroad-brand-truck {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: bigroad-truck-float 4s ease-in-out infinite;
}

@keyframes bigroad-truck-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bigroad-floating-tire {
  position: absolute;
  bottom: -20px;
  right: -50px;
  /* Removed tire spinning animation as requested */
}

.bigroad-brand-tire {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* Removed tire spinning animation keyframes */

.bigroad-road-path {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  opacity: 0.3;
}

.bigroad-path-svg {
  width: 100%;
  height: 100%;
}

.bigroad-path-svg path {
  stroke-dasharray: 10, 5;
  animation: bigroad-path-draw 3s ease-in-out infinite;
}

@keyframes bigroad-path-draw {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -30;
  }
}

.bigroad-brand-cta {
  text-align: center;
  /* Reduced margin-top from 60px to 40px */
  margin-top: 40px;
}

.bigroad-cta-button {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  padding: 20px 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-block;
}

.bigroad-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
  background: #000000;
  color: #ffffff;
}

.bigroad-button-animation {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.bigroad-cta-button:hover .bigroad-button-animation {
  left: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bigroad-brand-content {
    gap: 40px;
  }
  .bigroad-brand-main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .bigroad-brand-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .bigroad-brand-main-title {
    font-size: 2.2rem;
  }
  .bigroad-brand-logo-placeholder {
    position: static;
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .bigroad-brand-container {
    padding: 30px 15px;
  }
  .bigroad-brand-main-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .bigroad-story-card {
    height: 80px;
  }
  .bigroad-card-front,
  .bigroad-card-back {
    padding: 12px;
  }
  .bigroad-story-card p {
    font-size: 0.8rem;
  }
  .bigroad-floating-tire {
    right: -30px;
    bottom: -10px;
  }
  .bigroad-brand-tire {
    width: 100px;
    height: 100px;
  }
  .bigroad-cta-button {
    padding: 15px 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .bigroad-brand-main-title {
    font-size: 1.6rem;
  }
  .bigroad-story-card {
    height: 70px;
  }
  .bigroad-card-front,
  .bigroad-card-back {
    padding: 10px;
  }
  .bigroad-story-card p {
    font-size: 0.75rem;
  }
  .bigroad-brand-truck {
    max-width: 300px;
  }
  .bigroad-floating-tire {
    right: -20px;
  }
  .bigroad-brand-tire {
    width: 80px;
    height: 80px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a56419a *//* Updated all CSS .elementor-15 .elementor-element.elementor-element-a56419as to use unique bigroad-testimonials prefix */
/* Main Section with Dynamic Background */
.bigroad-testimonials-section {
  background: #ffffff;
  padding: 100px 20px;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Dynamic geometric background elements inspired by brochure */
.bigroad-testimonials-geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bigroad-testimonials-red-shape {
  position: absolute;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bigroad-testimonials-red-shape-1 {
  width: 300px;
  height: 80px;
  top: 10%;
  right: -50px;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.bigroad-testimonials-red-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -100px;
  clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0% 80%);
}

.bigroad-testimonials-red-shape-3 {
  width: 150px;
  height: 60px;
  top: 50%;
  right: 5%;
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
}

.bigroad-testimonials-red-shape.bigroad-testimonials-animate-shape {
  opacity: 0.1;
  transform: scale(1) rotate(0deg);
}

.bigroad-testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Enhanced header with bold typography inspired by brochure */
.bigroad-testimonials-section-header {
  text-align: left;
  max-width: 1340px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Added flex layout for header content with tire stack */
.bigroad-testimonials-header-content {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}

.bigroad-testimonials-text-content {
  flex: 1;
  max-width: 900px;
  width: 850px !important;
}

/* Professional tire stack styling on the right side */
.bigroad-testimonials-tire-stack {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.bigroad-testimonials-stacked-tire {
  width: 170px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
  background: #f8f9fa;
  transition: all 0.4s ease;
  position: relative;
}

.bigroad-testimonials-stacked-tire:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
}

.bigroad-testimonials-tire-top {
  animation: bigroadTestimonialsFloatTire 6s infinite ease-in-out;
}

.bigroad-testimonials-tire-bottom {
  animation: bigroadTestimonialsFloatTire 6s infinite ease-in-out;
  animation-delay: 3s;
}

@keyframes bigroadTestimonialsFloatTire {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bigroad-testimonials-stacked-tire .bigroad-testimonials-tire-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  filter: brightness(1.1) contrast(1.1);
}

.bigroad-testimonials-stacked-tire:hover .bigroad-testimonials-tire-image {
  transform: scale(1.1);
}

.bigroad-testimonials-title-container {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.bigroad-testimonials-red-accent-line {
  width: 8px;
  height: 80px;
  background: linear-gradient(180deg, #dc2626, #ef4444);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.bigroad-testimonials-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -1px;
  line-height: 0.9;
  text-transform: uppercase;
}

.bigroad-testimonials-subtitle-container {
  margin-bottom: 25px;
}

.bigroad-testimonials-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.bigroad-testimonials-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #4a5568;
  line-height: 1.8;
  max-width: 800px;
  font-weight: 500;
}

/* Enhanced main content layout */
.bigroad-testimonials-content-layout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 590px;
  padding: 60px 0;
}

/* Enhanced central image with professional styling */
.bigroad-testimonials-central-image-container {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.bigroad-testimonials-central-image-container.bigroad-testimonials-scale-in {
  opacity: 1;
  transform: scale(1);
}

.bigroad-testimonials-image-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 6px solid #ffffff;
  position: relative;
  background: #f8f9fa;
}

.bigroad-testimonials-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% ;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
  z-index: 2;
}

.bigroad-testimonials-professional-image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: all 0.4s ease;
}

.bigroad-testimonials-badge {
  position: absolute;
  bottom: 20px;
  right: 130px;
  background: #dc2626;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.bigroad-testimonials-pulse-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid rgba(220, 38, 38, 0.3);
  border-radius: 50%;
  animation: bigroadTestimonialsPulse 3s infinite;
}

.bigroad-testimonials-pulse-ring-2 {
  animation-delay: 1.5s;
  border-color: rgba(220, 38, 38, 0.2);
}

@keyframes bigroadTestimonialsPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* Enhanced testimonials with immediate visibility and better design */
.bigroad-testimonials-testimonial {
  position: absolute;
  width: 380px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 2px solid #f1f5f9;
  opacity: 1; /* Immediate visibility instead of 0 */
  transform: translateY(0); /* No initial offset */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.bigroad-testimonials-testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #dc2626;
}

.bigroad-testimonials-testimonial.bigroad-testimonials-slide-in {
  animation: bigroadTestimonialsSlideIn 0.6s ease-out forwards;
}

@keyframes bigroadTestimonialsSlideIn {
  from {
    opacity: 0.7;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Moved testimonials closer to central image by reducing offset distances */
/* Testimonial Positioning */
.bigroad-testimonials-testimonial-top-left {
  top: 20px;
  left: 10px;
}

.bigroad-testimonials-testimonial-top-right {
  top: 20px;
  right: 10px;
}

.bigroad-testimonials-testimonial-bottom-left {
  bottom: 20px;
  left: 10px;
}

.bigroad-testimonials-testimonial-bottom-right {
  bottom: 20px;
  right: 10px;
}

/* Enhanced testimonial content design */
.bigroad-testimonials-testimonial-content {
  position: relative;
}

.bigroad-testimonials-quote-icon {
  font-size: 3rem;
  color: #dc2626;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  opacity: 0.3;
}

.bigroad-testimonials-testimonial-text {
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
  font-style: italic;
}

.bigroad-testimonials-testimonial-footer {
  margin-top: 15px;
}

.bigroad-testimonials-testimonial-role {
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bigroad-testimonials-testimonial-check {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  border: 3px solid #ffffff;
}

/* Bottom CTA section inspired by brochure */
.bigroad-testimonials-cta-section {
  margin-top: 80px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a, #2d3748);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.bigroad-testimonials-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.bigroad-testimonials-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bigroad-testimonials-cta-text {
  font-size: 1.1rem;
  color: #cbd5e0;
  font-weight: 500;
  margin-bottom: 0px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bigroad-testimonials-testimonial-top-left,
  .bigroad-testimonials-testimonial-bottom-left {
    left: 20px;
  }

  .bigroad-testimonials-testimonial-top-right,
  .bigroad-testimonials-testimonial-bottom-right {
    right: 20px;
  }

  .bigroad-testimonials-header-content {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .bigroad-testimonials-content-layout {
    min-height: 600px;
  }

  .bigroad-testimonials-image-circle {
    width: 320px;
    height: 320px;
  }

  .bigroad-testimonials-testimonial {
    width: 280px;
    padding: 25px;
  }

  .bigroad-testimonials-testimonial-top-left,
  .bigroad-testimonials-testimonial-bottom-left {
    left: 30px;
  }

  .bigroad-testimonials-testimonial-top-right,
  .bigroad-testimonials-testimonial-bottom-right {
    right: 30px;
  }

  .bigroad-testimonials-stacked-tire {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .bigroad-testimonials-section {
    padding: 80px 15px;
  }

  .bigroad-testimonials-section-header {
    margin-bottom: 60px;
  }

  .bigroad-testimonials-header-content {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }

  .bigroad-testimonials-title-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .bigroad-testimonials-red-accent-line {
    height: 50px;
    width: 6px;
  }

  .bigroad-testimonials-content-layout {
    flex-direction: column;
    min-height: auto;
    gap: 40px;
  }

  .bigroad-testimonials-image-circle {
    width: 280px;
    height: 280px;
  }

  /* Stack testimonials vertically on mobile */
  .bigroad-testimonials-testimonial {
    position: static;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 25px;
  }

  .bigroad-testimonials-red-shape {
    display: none;
  }

  .bigroad-testimonials-tire-stack {
    flex-direction: row;
    gap: 30px;
    align-self: center;
  }

  .bigroad-testimonials-stacked-tire {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 640px) {
  .bigroad-testimonials-section {
    padding: 60px 10px;
  }

  .bigroad-testimonials-image-circle {
    width: 250px;
    height: 250px;
  }

  .bigroad-testimonials-testimonial {
    padding: 25px 20px;
  }

  .bigroad-testimonials-cta-section {
    margin-top: -20px;
    padding: 30px 20px;
  }

  .bigroad-testimonials-stacked-tire {
    width: 110px;
    height: 180px;
  }
  .bigroad-testimonials-content-layout
  {
      padding-top:20px;
  }
  .bigroad-testimonials-badge
  {
      right: 75px;
  }
}

/* Enhanced hover effects */
.bigroad-testimonials-testimonial:hover .bigroad-testimonials-testimonial-check {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.bigroad-testimonials-image-circle:hover .bigroad-testimonials-professional-image {
  transform: scale(1.05);
}

/* Animation Classes */
.bigroad-testimonials-animate-in {
  opacity: 1;
  transform: translateY(0);
}

.bigroad-testimonials-floating-tire {
  display: none;
}

.bigroad-testimonials-tire-1 {
  top: 15%;
  left: 8%;
}

.bigroad-testimonials-tire-2 {
  bottom: 25%;
  right: 12%;
}

.bigroad-testimonials-tire-3 {
  top: 60%;
  left: 5%;
}

.bigroad-testimonials-tire-image {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) opacity(0.8);
  transition: all 0.3s ease;
}

.bigroad-testimonials-floating-tire:hover .bigroad-testimonials-tire-image {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0d88993 *//* BIGROAD Brand Design Tokens */
:root {
  --background: #000000;
  --foreground: #ffffff;
  --card: #dc2626;
  --card-foreground: #ffffff;
  --primary: #dc2626;
  --primary-foreground: #ffffff;
  --secondary: #fef2f2;
  --secondary-foreground: #000000;
  --muted: #374151;
  --muted-foreground: #ffffff;
  --accent: #dc2626;
  --accent-foreground: #ffffff;
  --border: #ffffff;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.bigroad-benefits {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a, #2d3748);
  padding: 5rem 0;
}

/* Geometric Background Elements */
.geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.geo-shape {
  position: absolute;
  background: var(--card);
  opacity: 0.8;
}

.geo-1 {
  width: 300px;
  height: 200px;
  top: 10%;
  right: -50px;
  transform: rotate(25deg) skewX(-15deg);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.geo-2 {
  width: 250px;
  height: 150px;
  top: 60%;
  left: -80px;
  transform: rotate(-20deg) skewX(10deg);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.geo-3 {
  width: 180px;
  height: 120px;
  top: 30%;
  left: 20%;
  transform: rotate(45deg);
  clip-path: polygon(0 0, 100% 25%, 75% 100%, 0% 75%);
  opacity: 0.3;
}

.geo-4 {
  width: 200px;
  height: 100px;
  bottom: 20%;
  right: 15%;
  transform: rotate(-30deg) skewY(15deg);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 0.4;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

/* Image Section */
.image-section {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  display: none;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.quote-section {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
  transform: translateY(-20px);
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid var(--card);
}

.quote-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.quote-description {
  font-size: 0.9rem;
  color: var(--card-foreground);
  opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
  padding-left: 2rem;
}

.section-header {
  margin-bottom: 3rem;
}

.main-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--card);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--card);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.benefit-item:hover::before {
  transform: scaleY(1);
}

.benefit-item:hover {
  background: rgba(220, 38, 38, 0.05);
  border-color: var(--card);
  transform: translateX(8px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-foreground);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.benefit-description {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-grid {
    gap: 3rem;
  }
  
  .main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .benefits-section {
    padding-left: 0;
  }
  
  .main-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .geo-1, .geo-2 {
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .bigroad-benefits {
    padding: 1rem 0;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .geo-3, .geo-4 {
    display: none;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.5rem;
  }
  
  .benefit-title {
    font-size: 1.1rem;
  }
  
  .benefit-description {
    font-size: 0.9rem;
  }
  
  .quote-text {
    font-size: 1rem;
  }
  
  .quote-description {
    font-size: 0.85rem;
  }
}

/* Animation Classes */
.animate-in {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item {
  animation: slideInLeft 0.6s ease forwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Geometric shapes animation */
.geo-shape {
  animation: float 6s ease-in-out infinite;
}

.geo-1 { animation-delay: 0s; }
.geo-2 { animation-delay: 1s; }
.geo-3 { animation-delay: 2s; }
.geo-4 { animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(25deg) skewX(-15deg); }
  50% { transform: translateY(-10px) rotate(25deg) skewX(-15deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7af05a4 */.bigroad-contact-section {
  position: relative;
  min-height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("https://bigroadtires.com/wp-content/uploads/2025/08/fondo_footer.webp") center / cover no-repeat;
  overflow: hidden;
}

.contact-bg-overlay {
  display: none;
}

.floating-tire-decoration {
  position: absolute;
  bottom: 108px;
  right: 5%;
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
}

.decorative-tire {
  width: 450px;
  height: 450px;
  object-fit: contain;
  animation: none;
}

@keyframes floatTire {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.contact-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto; /* Changed from fixed 135px margins to auto centering */
  padding: 60px 20px 0;
}

.contact-content {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  padding: 40px 60px;
  box-shadow: none;
  border: none;
}

.contact-header {
  text-align: left;
  margin-bottom: 40px;
}

.contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
  width: 100%; /* Changed from 55vw to 100% for better responsive behavior */
  max-width: 800px; /* Added max-width to prevent it from getting too wide */
}

.title-word,
.title-highlight {
  display: inline-block;
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.title-highlight {
  color: #dc2626;
  position: relative;
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  border-radius: 2px;
  animation: expandLine 1s ease-out 0.8s forwards;
  transform: scaleX(0);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  to {
    transform: scaleX(1);
  }
}

.contact-description {
  font-size: 1.125rem;
  color: white;
  max-width: 700px;
  margin: 0;
  line-height: 1.7;
}

.contact-form {
  max-width: 830px;
  margin: 0;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  position: relative;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-width: unset; /* Removed fixed 400px min-width that caused horizontal scrolling */
  padding: 28px 24px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  color: #1f2937;
  transition: all 0.3s ease;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group label {
  position: absolute;
  left: 24px;
  top: 18px;
  font-size: 1.1rem;
  color: #6b7280;
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.form-underline {
  display: none;
}

.form-group.focused label,
.form-group.has-value label {
  top: -8px;
  font-size: 0.875rem;
  color: #dc2626;
  font-weight: 500;
  background: white;
  padding: 0 8px;
  border-radius: 4px;
}

.form-group.focused input,
.form-group.focused textarea {
  border-bottom-color: #dc2626;
}

.form-submit-area {
  text-align: center;
  margin-top: 50px;
}

.submit-btn {
  position: relative;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  margin-bottom: 20px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

.submit-btn.loading {
  background: #9ca3af;
  cursor: not-allowed;
}

.submit-btn.success {
  background: #10b981;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  pointer-events: none;
}

.btn-ripple.active {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.contact-note {
  font-size: 0.9rem;
  color: white;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

.contact-footer {
  background: #dc2626;
  padding: 25px 0;
  margin-top: 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 40px !important; /* Reduced from 50px to 40px for better proportion */
  width: auto;
  max-width: 180px !important; /* Added max-width to prevent logo from being too wide */
  object-fit: contain; /* Added to maintain aspect ratio */
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .contact-container {
    margin: 0 60px;
    padding: 50px 20px 0;
  }

  .decorative-tire {
    width: 380px;
    height: 380px;
  }

  .floating-tire-decoration {
    bottom: 100px;
    right: 3%;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .bigroad-contact-section {
    min-height: 70vh;
  }

  .contact-container {
    margin: 0 20px; /* Reduced margins for tablets */
    padding: 40px 15px 0;
  }

  .contact-content {
    padding: 30px 20px;
    margin: 0; /* Removed margin to prevent overflow */
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 24px 20px; /* Reduced padding for smaller screens */
    font-size: 1rem;
  }

  .form-group label {
    font-size: 1rem;
    left: 20px;
  }

  .decorative-tire {
    width: 300px;
    height: 300px;
  }

  .floating-tire-decoration {
    bottom: 120px;
    right: 2%;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .logo-img {
    height: 35px; /* Reduced logo size for tablets */
    max-width: 160px;
  }
}

/* Large mobile phones */
@media (max-width: 640px) {
  .contact-container {
    margin: 0 15px;
    padding: 30px 10px 0;
  }

  .contact-content {
    padding: 25px 15px;
  }

  .contact-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 20px;
  }

  .contact-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .form-group input,
  .form-group textarea {
    padding: 20px 16px;
    font-size: 0.95rem;
  }

  .form-group label {
    font-size: 0.95rem;
    left: 16px;
  }

  .decorative-tire {
    width: 250px;
    height: 250px;
  }

  .floating-tire-decoration {
    bottom: 80px;
    right: -10px;
  }

  .logo-img {
    height: 32px; /* Further reduced for mobile */
    max-width: 140px;
  }
}

/* Small mobile phones */
@media (max-width: 480px) {
  .bigroad-contact-section {
    min-height: 65vh;
  }

  .contact-container {
    margin: 0 10px; /* Further reduced margins */
    padding: 25px 5px 0;
  }

  .contact-content {
    padding: 20px 10px; /* Reduced padding to prevent overflow */
    margin: 0;
  }

  .contact-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 16px;
  }

  .contact-description {
    font-size: 0.9rem;
  }

  .contact-form {
    margin-top: 15px;
  }

  .form-row {
    gap: 15px;
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 18px 14px;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.9rem;
    left: 14px;
  }

  .form-group.focused label,
  .form-group.has-value label {
    font-size: 0.8rem;
  }

  .submit-btn {
    padding: 16px 40px;
    font-size: 1rem;
  }

  .form-submit-area {
    margin-top: 30px;
  }

  .contact-note {
    font-size: 0.8rem;
    margin-top: 15px;
  }

  .decorative-tire {
    width: 200px;
    height: 200px;
  }

  .floating-tire-decoration {
    bottom: 60px;
    right: -20px;
    opacity: 0.7; /* Reduced opacity on very small screens */
  }

  .contact-footer {
    padding: 20px 0;
    margin-top: 30px;
  }

  .footer-content {
    padding: 0 15px;
  }

  .logo-img {
    height: 28px; /* Smaller size for small mobile screens */
    max-width: 120px;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }
  .decorative-tire {
    display: none;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .contact-container {
    margin: 0 5px;
  }
  .decorative-tire {
    display: none;
  }

  .contact-content {
    padding: 15px 8px;
  }

  .floating-tire-decoration {
    display: none; /* Hide tire decoration on very small screens to save space */
  }

  .form-group input,
  .form-group textarea {
    padding: 16px 12px;
  }

  .form-group label {
    left: 12px;
  }
}/* End custom CSS */
/* Start custom CSS */html {
  scroll-behavior: smooth;
}/* End custom CSS */