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

:root {
  --primary: #2d5016;
  --secondary: #6b8e23;
  --accent: #d4a574;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --text: #333;
  --border: #e0e0e0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  color: var(--text);
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-unique {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo-section h1 {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-list li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mega-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--accent) 100%
  );
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
  animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  animation: float 25s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

.mega-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: white;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  display: inline-block;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid white;
  transition: 0.3s;
  display: inline-block;
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--primary);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-size: 12px;
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounce 2s infinite;
}

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

section {
  padding: 60px 0;
}

.section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-center h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-header-center p {
  color: #666;
  font-size: 16px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.intro-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.feature-badge {
  background: var(--light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card-premium {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-benefits {
  list-style: none;
  margin-top: 15px;
}

.service-benefits li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 13px;
  color: #666;
}

.service-benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.method-step {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.method-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 15px;
}

.transformation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.impact-list {
  margin-top: 30px;
}

.impact-item {
  margin-bottom: 25px;
}

.impact-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 16px;
}

.impact-item p {
  color: #666;
  font-size: 14px;
}

.transformation-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-modern {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-author {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--primary);
  font-size: 15px;
}

.testimonial-author span {
  color: #999;
  font-size: 13px;
}

.products-grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.product-showcase {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-showcase:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.product-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.product-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-features span {
  background: var(--light);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  color: var(--primary);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
}

.btn-product {
  background: var(--secondary);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-product:hover {
  background: var(--primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.why-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.location-details {
  margin-top: 30px;
}

.detail-item {
  margin-bottom: 20px;
}

.detail-item h4 {
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 5px;
}

.detail-item p {
  color: #666;
  font-size: 14px;
}

.location-map iframe {
  border-radius: 12px;
  width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.faq-modern-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-modern-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--primary);
}

.faq-modern-item p {
  font-size: 14px;
  color: #666;
}

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.final-cta-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 15px;
}

.final-cta-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-benefits span {
  font-size: 15px;
  font-weight: 500;
}

.btn-final-cta {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.btn-final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-note {
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.9;
}

footer {
  background: var(--dark);
  color: white;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--accent);
}

.footer-col p {
  font-size: 13px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 13px;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.btn-accept {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.btn-more {
  color: white;
  text-decoration: underline;
  font-size: 13px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--primary);
}

.page-hero {
  background: var(--primary);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.page-hero h2 {
  color: white;
  font-size: 32px;
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  padding: 20px;
}

.thankyou-content,
.error-content {
  max-width: 600px;
}

.thankyou-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.thankyou-content h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.thankyou-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.thankyou-actions,
.error-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-code {
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 20px;
}

.error-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white;
}

.policy-section {
  padding: 40px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
  margin-top: 30px;
  font-size: 22px;
}

.policy-content h3 {
  margin-top: 20px;
  font-size: 18px;
}

.policy-content ul,
.policy-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-content li {
  margin-bottom: 8px;
}

.update-date {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.contact-details {
  margin-top: 20px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-form {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 2px;
  width: auto;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    width: 300px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-list.active {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 28px;
  }

  .intro-grid,
  .transformation-content,
  .location-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-premium,
  .products-grid-showcase {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header-center h2 {
    font-size: 26px;
  }

  .final-cta-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .logo-section h1 {
    font-size: 16px;
  }

  .mega-hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  section {
    padding: 40px 0;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 16px;
  }

  .methodology-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 10px;
  }
}

.availability-info,
.garage-intro {
  background: var(--light);
}

.availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.schedule-list {
  margin-top: 25px;
}

.schedule-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.schedule-item h3 {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 5px;
}

.schedule-item p {
  color: #666;
  font-size: 14px;
}

.availability-features {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.features-list {
  list-style: none;
  margin-top: 15px;
}

.features-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid var(--border);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.booking-section {
  background: white;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.booking-step {
  text-align: center;
  padding: 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 15px;
}

.booking-cta {
  text-align: center;
  margin-top: 30px;
}

.service-duration {
  background: var(--light);
}

.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.duration-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.duration-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.duration-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.duration-time {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.availability-faq {
  background: white;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.faq-item p {
  color: #666;
  font-size: 14px;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  margin-bottom: 15px;
}

.intro-content p {
  color: #666;
  font-size: 15px;
  margin-bottom: 10px;
}

.garage-services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.service-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  font-size: 14px;
}

.garage-solutions {
  background: var(--light);
}

.solutions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.solution-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.solution-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.solution-item p {
  color: #666;
  font-size: 14px;
}

.garage-benefits {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.benefit-card {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 16px;
}

.benefit-card p {
  color: #666;
  font-size: 13px;
}

.garage-process {
  background: var(--light);
}

.process-timeline {
  max-width: 900px;
  margin: 30px auto 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-content p {
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  .availability-grid,
  .services-grid,
  .solutions-list {
    grid-template-columns: 1fr;
  }

  .booking-steps,
  .duration-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .container {
    padding: 0 10px;
  }

  .logo-section h1 {
    font-size: 14px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 20px;
  }
}
