/* ==========================================
   VESPIRALLE - VIBRANT ENERGETIC DESIGN
   Premium Automotive Accessories
   ========================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #212121;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #212121;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #D32F2F;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #B71C1C;
}

ul {
  list-style: none;
}

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS - VIBRANT & ENERGETIC */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B71C1C 0%, #8B0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(211, 47, 47, 0.5);
}

.btn-secondary {
  background: #FFFFFF;
  color: #D32F2F;
  border: 2px solid #D32F2F;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.2);
}

.btn-secondary:hover {
  background: #D32F2F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(211, 47, 47, 0.4);
}

/* HEADER */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-top {
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  padding: 8px 0;
  text-align: center;
}

.contact-info {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #212121;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D32F2F, #FFC107);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 30px rgba(211, 47, 47, 0.6);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #212121 0%, #000000 100%);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: 2px solid #D32F2F;
  color: #D32F2F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D32F2F;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #D32F2F, #FFC107);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(211, 47, 47, 0.1);
  padding-left: 30px;
}

.mobile-nav a:hover::before {
  transform: translateX(0);
}

/* HERO SECTION - VIBRANT & ENERGETIC */
.hero {
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 50%, #FFC107 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

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

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1.4s ease;
}

/* VALUE PROPOSITION */
.value-proposition {
  padding: 80px 20px;
  background: #F5F5F5;
}

.value-proposition h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 42px;
  position: relative;
}

.value-proposition h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #D32F2F, #FFC107);
  border-radius: 2px;
}

.features-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #D32F2F, #FFC107);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 8px rgba(211, 47, 47, 0.3));
}

.feature-card h3 {
  color: #212121;
  font-size: 20px;
  margin-bottom: 0;
}

/* SERVICES SHOWCASE */
.services-showcase {
  padding: 80px 20px;
  background: #FFFFFF;
}

.services-showcase h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 42px;
  position: relative;
}

.services-showcase h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #D32F2F, #FFC107);
  border-radius: 2px;
}

.services-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  flex: 1 1 350px;
  max-width: 380px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 40px 32px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.service-card:hover::before {
  top: -20%;
  right: -20%;
  width: 250px;
  height: 250px;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #D32F2F;
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.service-card h3 {
  color: #D32F2F;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #424242;
  margin-bottom: 12px;
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #D32F2F;
  margin-bottom: 20px;
}

.service-card .btn {
  align-self: flex-start;
}

/* TESTIMONIALS - READABLE TEXT */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.testimonials h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 42px;
  position: relative;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #D32F2F, #FFC107);
  border-radius: 2px;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: #FFFFFF;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #D32F2F;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(211, 47, 47, 0.2);
}

.testimonial-card p {
  color: #212121;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .author {
  color: #424242;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #FFC107;
  font-size: 20px;
  margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #212121 0%, #000000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

.promo-code {
  display: inline-block;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #FFFFFF;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #212121 0%, #000000 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column h3 {
  color: #D32F2F;
  font-size: 20px;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #D32F2F, #FFC107);
}

.footer-column p {
  color: #BDBDBD;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  color: #BDBDBD;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #D32F2F;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #757575;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #BDBDBD;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #D32F2F;
}

/* INTERNAL HERO */
.hero-internal {
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.hero-internal h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-internal p {
  color: #FFFFFF;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

/* PRODUCTS PAGE */
.products {
  padding: 80px 20px;
  background: #F5F5F5;
}

.product-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  flex: 1 1 350px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: #D32F2F;
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.product-card h3 {
  color: #D32F2F;
  font-size: 22px;
}

.product-card ul.features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding-left: 0;
}

.product-card ul.features li {
  color: #424242;
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}

.product-card ul.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFC107;
  font-weight: 700;
  font-size: 16px;
}

.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #D32F2F;
  margin-bottom: 16px;
}

/* PRODUCT BENEFITS */
.product-benefits {
  padding: 60px 20px;
  background: #FFFFFF;
}

.product-benefits h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 40px;
  font-size: 36px;
}

.benefits-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  color: #424242;
  font-size: 18px;
  padding-left: 32px;
  position: relative;
}

.benefits-list li::before {
  content: '⭐';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  text-align: center;
}

.cta-section h2 {
  color: #212121;
  font-size: 38px;
  margin-bottom: 16px;
}

.cta-section p {
  color: #212121;
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #D32F2F;
  margin-bottom: 32px;
}

/* ABOUT PAGE */
.about-story {
  padding: 80px 20px;
  background: #FFFFFF;
}

.about-story h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 40px;
  font-size: 36px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  color: #424242;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.stats-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
}

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.3);
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 45px rgba(211, 47, 47, 0.5);
}

.stat-card h3 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 8px;
}

.stat-card p {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 0;
}

/* VALUES */
.values {
  padding: 80px 20px;
  background: #F5F5F5;
}

.values h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.values-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.value-card {
  flex: 1 1 280px;
  max-width: 300px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

.value-card img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 8px rgba(211, 47, 47, 0.3));
}

.value-card h3 {
  color: #D32F2F;
  font-size: 20px;
}

.value-card p {
  color: #424242;
  font-size: 15px;
  margin-bottom: 0;
}

/* TEAM */
.team {
  padding: 80px 20px;
  background: #FFFFFF;
}

.team h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 24px;
  font-size: 36px;
}

.team > .container > p {
  text-align: center;
  color: #424242;
  font-size: 18px;
  margin-bottom: 60px;
}

.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: #D32F2F;
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.team-member h3 {
  color: #D32F2F;
  font-size: 24px;
  margin-bottom: 8px;
}

.team-member .role {
  color: #757575;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member p {
  color: #424242;
  font-size: 15px;
}

/* GALLERY PAGE */
.gallery-showcase {
  padding: 80px 20px;
  background: #F5F5F5;
}

.gallery-showcase h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.projects-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-card {
  flex: 1 1 350px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid #D32F2F;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.project-card h3 {
  color: #D32F2F;
  font-size: 22px;
}

.project-card p {
  color: #424242;
  font-size: 15px;
}

.project-card .tags {
  color: #757575;
  font-size: 13px;
  font-style: italic;
}

.project-card .vehicle {
  font-weight: 600;
  color: #212121;
  font-size: 14px;
}

/* MATERIALS */
.materials {
  padding: 60px 20px;
  background: #FFFFFF;
}

.materials h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 24px;
  font-size: 36px;
}

.materials > .container > p {
  text-align: center;
  color: #424242;
  font-size: 18px;
  margin-bottom: 40px;
}

.materials-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.materials-list li {
  color: #424242;
  font-size: 18px;
  padding-left: 32px;
  position: relative;
}

.materials-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #FFC107;
  font-size: 18px;
}

/* BLOG PAGE */
.featured-post {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

.post-featured {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.post-featured h2 {
  color: #212121;
  font-size: 32px;
  margin-bottom: 20px;
}

.post-featured p {
  color: #424242;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.meta {
  color: #757575;
  font-size: 14px;
  margin-bottom: 0;
}

/* BLOG GRID */
.blog-grid {
  padding: 80px 20px;
  background: #F5F5F5;
}

.blog-grid h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.posts-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.post-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: #FFFFFF;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 4px solid #D32F2F;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.post-card h3 {
  color: #D32F2F;
  font-size: 20px;
  margin-bottom: 8px;
}

.post-card p {
  color: #424242;
  font-size: 15px;
}

.post-card .meta {
  color: #757575;
  font-size: 13px;
}

/* EXPERT TIPS */
.expert-tips {
  padding: 60px 20px;
  background: #FFFFFF;
}

.expert-tips h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.tips-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.tip-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 32px 28px;
  border-radius: 20px;
  border-left: 5px solid #FFC107;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.3);
}

.tip-card h3 {
  color: #D32F2F;
  font-size: 20px;
  margin-bottom: 12px;
}

.tip-card p {
  color: #424242;
  font-size: 15px;
  margin-bottom: 0;
}

/* CONTACT PAGE */
.contact-methods {
  padding: 80px 20px;
  background: #F5F5F5;
}

.contact-methods h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.methods-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.method-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.method-card img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 8px rgba(211, 47, 47, 0.3));
}

.method-card h3 {
  color: #D32F2F;
  font-size: 22px;
  margin-bottom: 8px;
}

.method-card .value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #212121;
  margin-bottom: 8px;
}

.method-card .hours {
  color: #757575;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.method-card p {
  color: #424242;
  font-size: 15px;
}

/* LOCATION INFO */
.location-info {
  padding: 60px 20px;
  background: #FFFFFF;
}

.location-info h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 40px;
  font-size: 36px;
}

.location-details {
  max-width: 700px;
  margin: 0 auto;
}

.address-block {
  background: #F5F5F5;
  padding: 40px 32px;
  border-radius: 20px;
  border-left: 5px solid #D32F2F;
}

.address-block h3 {
  color: #D32F2F;
  font-size: 24px;
  margin-bottom: 16px;
}

.address-block h4 {
  color: #212121;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.address-block p {
  color: #424242;
  font-size: 16px;
  line-height: 1.8;
}

.address-block ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.address-block ul li {
  color: #424242;
  font-size: 15px;
  padding-left: 24px;
  position: relative;
}

.address-block ul li::before {
  content: '►';
  position: absolute;
  left: 0;
  color: #FFC107;
}

/* OPENING HOURS */
.opening-hours {
  padding: 60px 20px;
  background: #F5F5F5;
}

.opening-hours h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 40px;
  font-size: 36px;
}

.hours-list {
  max-width: 500px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-list li {
  background: #FFFFFF;
  padding: 16px 24px;
  border-radius: 10px;
  color: #424242;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hours-list strong {
  color: #212121;
}

.opening-hours .note {
  text-align: center;
  color: #757575;
  font-size: 14px;
  font-style: italic;
}

/* TEAM CONTACT */
.team-contact {
  padding: 80px 20px;
  background: #FFFFFF;
}

.team-contact h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.team-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.team-card h3 {
  color: #D32F2F;
  font-size: 22px;
  margin-bottom: 8px;
}

.team-card .role {
  color: #757575;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-card p {
  color: #424242;
  font-size: 14px;
}

/* LEGAL PAGES */
.hero-legal {
  background: linear-gradient(135deg, #212121 0%, #000000 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

.hero-legal h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-legal p {
  color: #BDBDBD;
  font-size: 16px;
  margin-bottom: 12px;
}

.last-updated {
  color: #FFC107;
  font-size: 14px;
  font-weight: 600;
}

.legal-content {
  padding: 80px 20px;
  background: #FFFFFF;
}

.legal-content .text-section {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #D32F2F;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FFC107;
}

.legal-content h3 {
  color: #212121;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: #424242;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-content ul li {
  color: #424242;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D32F2F;
  font-weight: 700;
  font-size: 20px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.thank-you-content h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
}

.thank-you-content p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 20px;
}

/* NEXT STEPS */
.next-steps {
  padding: 80px 20px;
  background: #F5F5F5;
}

.next-steps h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.steps-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.step-card img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 8px rgba(211, 47, 47, 0.3));
}

.step-card h3 {
  color: #D32F2F;
  font-size: 20px;
}

.step-card p {
  color: #424242;
  font-size: 15px;
  margin-bottom: 0;
}

/* CONTACT REMINDER */
.contact-reminder {
  padding: 60px 20px;
  background: #FFFFFF;
  text-align: center;
}

.contact-reminder h2 {
  color: #D32F2F;
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-reminder p {
  color: #424242;
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-reminder .contact-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #D32F2F;
  margin: 20px 0;
}

.contact-reminder .contact-hours {
  color: #757575;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-reminder .contact-email {
  color: #424242;
  font-size: 18px;
  font-weight: 600;
}

/* FEATURED PRODUCTS */
.featured-products {
  padding: 60px 20px;
  background: #F5F5F5;
}

.featured-products h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.featured-products .products-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.featured-products .btn {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

/* RETURN NAVIGATION */
.return-navigation {
  padding: 60px 20px;
  background: #FFFFFF;
  text-align: center;
}

.return-navigation h2 {
  color: #D32F2F;
  font-size: 32px;
  margin-bottom: 40px;
}

.return-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* QUICK LINKS */
.quick-links {
  padding: 60px 20px;
  background: #F5F5F5;
}

.quick-links h2 {
  text-align: center;
  color: #D32F2F;
  margin-bottom: 60px;
  font-size: 36px;
}

.links-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.link-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.link-card:hover {
  transform: translateY(-10px);
  border-color: #D32F2F;
  box-shadow: 0 15px 40px rgba(211, 47, 47, 0.25);
}

.link-card h3 {
  color: #D32F2F;
  font-size: 22px;
  margin-bottom: 12px;
}

.link-card p {
  color: #424242;
  font-size: 15px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #212121 0%, #000000 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  color: #BDBDBD;
  font-size: 14px;
  margin-bottom: 0;
  flex: 1 1 300px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #FFFFFF;
}

.btn-cookie-reject {
  background: transparent;
  color: #BDBDBD;
  border: 1px solid #757575;
}

.btn-cookie-settings {
  background: transparent;
  color: #FFC107;
  border: 1px solid #FFC107;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px 32px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

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

.cookie-modal h2 {
  color: #D32F2F;
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 12px;
  border-left: 4px solid #D32F2F;
}

.cookie-category h3 {
  color: #212121;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #BDBDBD;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #D32F2F;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  color: #424242;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Sections */
  .value-proposition,
  .services-showcase,
  .testimonials {
    padding: 60px 20px;
  }
  
  /* Grids */
  .features-grid,
  .services-grid,
  .testimonials-grid,
  .product-grid,
  .stats-grid,
  .values-grid,
  .team-grid,
  .projects-grid,
  .posts-grid,
  .tips-grid,
  .methods-grid,
  .steps-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .product-card,
  .stat-card,
  .value-card,
  .team-member,
  .project-card,
  .post-card,
  .tip-card,
  .method-card,
  .step-card,
  .link-card {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Banner */
  .cookie-consent .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
  
  /* Contact */
  .contact-phone {
    font-size: 24px;
  }
  
  /* Thank You */
  .thank-you-content h1 {
    font-size: 32px;
  }
  
  .return-links {
    flex-direction: column;
  }
  
  .return-links .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    width: 100%;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 28px;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px 20px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}