


body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


.hero-gradient {
  background: linear-gradient(135deg, #c0c0c0 0%, #8e9eab 25%, #6c757d 50%, #495057 75%, #2c3e50 100%);
  background-attachment: fixed;
}

.automotive-gradient {
  background: linear-gradient(45deg, #e8eaed 0%, #9ca5b0 30%, #6c757d 70%, #495057 100%);
}

.hero.is-small {
  min-height: 40vh;
}

.chrome-accent {
  background: linear-gradient(90deg, #f8f9fa 0%, #dee2e6 25%, #adb5bd 50%, #6c757d 75%, #495057 100%);
  background-size: 200% 200%;
  animation: chrome-shimmer 3s ease-in-out infinite;
}

@keyframes chrome-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.navbar-burger {
  color: #2c3e50;
}

.navbar-burger:hover {
  background-color: #ff6b35;
  color: white;
}

.navbar-burger.is-active {
  background-color: #ff6b35;
  color: white;
}


.glass-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.automotive-glass {
  background: rgba(44, 62, 80, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}


.neon-border {
  border: 2px solid #ff6b35;
  box-shadow: 0 0 10px #ff6b35, inset 0 0 10px rgba(255, 107, 53, 0.1);
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
  from { box-shadow: 0 0 10px #ff6b35, inset 0 0 10px rgba(255, 107, 53, 0.1); }
  to { box-shadow: 0 0 20px #ff6b35, inset 0 0 20px rgba(255, 107, 53, 0.2); }
}

.neon-accent-line {
  background: linear-gradient(90deg, transparent 0%, #ff6b35 50%, transparent 100%);
  height: 3px;
  position: relative;
  overflow: hidden;
}

.neon-accent-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
  animation: neon-sweep 3s infinite;
}

@keyframes neon-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}


.hexagon-pattern {
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(44, 62, 80, 0.3) 0%, transparent 50%);
  position: relative;
}

.hexagon-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b35' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}


.paint-splatter-hover {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.paint-splatter-hover:hover {
  transform: scale(1.02);
}

.paint-splatter-hover::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.paint-splatter-hover:hover::before {
  opacity: 1;
  animation: paint-splatter 0.6s ease-out;
}

@keyframes paint-splatter {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0;
  }
}


.ruby-background {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #ff6b35 100%);
}

.sapphire-background {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 50%, #5dade2 100%);
}

.emerald-background {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #58d68d 100%);
}

.amethyst-background {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #bb8fce 100%);
}


.automotive-heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.power-statement {
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(45deg, #ff6b35, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto;
  gap: 2rem;
}

@media (max-width: 768px) {
  .asymmetric-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
}

.floating-card {
  position: relative;
  transform: perspective(1000px) rotateX(5deg);
  transition: transform 0.3s ease;
}

.floating-card:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}


.automotive-btn {
  background: linear-gradient(45deg, #ff6b35, #e74c3c);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.automotive-btn:hover {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.automotive-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.automotive-btn:hover::before {
  left: 100%;
}

.chrome-btn {
  background: linear-gradient(45deg, #f8f9fa, #dee2e6);
  color: #495057;
  border: 2px solid #adb5bd;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 4px rgba(0,0,0,0.1);
}

.chrome-btn:hover {
  background: linear-gradient(45deg, #e9ecef, #ced4da);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.2);
}


.premium-service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.premium-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35);
}

.automotive-stat-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(44, 62, 80, 0.1));
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.automotive-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}


.automotive-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid #ff6b35;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.automotive-nav .navbar-brand {
  background: rgba(255, 255, 255, 0.95);
}

.automotive-nav .navbar-menu {
  background: rgba(255, 255, 255, 0.95);
}

.automotive-nav .navbar-item,
.automotive-nav .navbar-link {
  color: #2c3e50;
  transition: all 0.3s ease;
}

.automotive-nav .navbar-item:hover,
.automotive-nav .navbar-link:hover {
  background-color: #ff6b35;
  color: white;
}

.automotive-nav .navbar-item.has-dropdown:hover .navbar-link {
  background-color: #ff6b35;
  color: white;
}

.automotive-nav .navbar-item.has-dropdown:hover .navbar-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}

.automotive-nav .navbar-dropdown {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.automotive-nav .navbar-dropdown .navbar-item {
  color: #2c3e50;
}

.automotive-nav .navbar-dropdown .navbar-item:hover {
  background-color: #f8f9fa;
  color: #ff6b35;
}

.nav-logo {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(45deg, #ff6b35, #e74c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo span.power-statement {
  color: #ff6b35;
  -webkit-text-fill-color: #ff6b35;
  background: none;
}


.automotive-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.automotive-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 1.5rem;
}

.automotive-hero .neon-accent-line {
  margin: 0 auto 1.5rem auto;
}

.automotive-hero .title {
  margin-bottom: 1rem;
}

.automotive-hero .subtitle {
  margin-bottom: 2rem;
}

.automotive-hero .field {
  margin: 0;
}

@media (max-width: 768px) {
  .automotive-hero {
    min-height: 70vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .automotive-hero .container {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .automotive-heading {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .automotive-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .automotive-nav .navbar-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .automotive-nav .navbar-menu.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  @media (min-width: 769px) {
    .automotive-nav .navbar-menu {
      position: static;
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) !important;
      box-shadow: none;
      border-top: none;
    }
  }
  
  .automotive-nav .navbar-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.98);
  }
}


.enhanced-image {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.enhanced-image:hover {
  transform: scale(1.02);
}


@media (max-width: 768px) {
  .glass-panel {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .automotive-btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hexagon-pattern {
    padding: 2rem 1rem;
  }
}


.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.icon.is-large {
  font-size: 2.5rem;
  line-height: 1;
}

.icon.is-large i {
  font-size: 2.5rem;
}

.icon.is-large .fas,
.icon.is-large .far,
.icon.is-large .fab {
  font-size: 2.5rem;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  z-index: 9999;
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.cookie-banner-title {
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.cookie-banner-text {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #bdc3c7;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
}

.cookie-accept {
  background: #ff6b35;
  color: white;
}

.cookie-decline {
  background: transparent;
  color: #ffd700;
  border: 1px solid #ffd700;
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
}

.footer {
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(15px);
  border-top: 2px solid #ff6b35;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer .title,
.footer .subtitle {
  color: #ffffff;
}

.footer .has-text-light {
  color: #ffffff !important;
}

.footer a.has-text-light {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a.has-text-light:hover {
  color: #ffd700 !important;
  text-decoration: underline;
}

.footer p {
  color: #bdc3c7;
}

.footer a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffd700;
}

.cookie-consent-banner a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookie-consent-banner a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-banner-text a {
  color: #ffd700;
  text-decoration: underline;
}

.cookie-banner-text a:hover {
  color: #ff6b35;
}

.cookie-banner-text a.has-text-light {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-banner-text a.has-text-light:hover {
  color: #ffd700;
}