:root {
  --electric-blue: #0066FF;
  --burnt-orange: #FF6B35;
  --dark-bg: #0A1628;
  --light-bg: #F8FAFC;
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.text-dark {
  color: var(--text-secondary) !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--light-bg);
}

strong {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--burnt-orange);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  white-space: nowrap;
  min-height: 52px;
}

.btn-primary {
  background-color: var(--burnt-orange);
  color: var(--text-white);
  border-color: var(--burnt-orange);
}

.btn-primary:hover {
  background-color: #E55A25;
  border-color: #E55A25;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--electric-blue);
  border-color: var(--electric-blue);
}

.btn-secondary:hover {
  background-color: var(--electric-blue);
  color: var(--text-white);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--electric-blue), var(--burnt-orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--burnt-orange);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--burnt-orange);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2a4a 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./media/hero-auto-shop.webp') center/cover;
  opacity: 0.15;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 42, 74, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--burnt-orange);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burnt-orange);
  font-size: 1.125rem;
}

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

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--burnt-orange);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--electric-blue), #0052CC);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.375rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-price {
  display: inline-block;
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--burnt-orange);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.125rem;
}

.features-section {
  background-color: var(--dark-bg);
  color: var(--text-white);
}

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

.feature-item {
  text-align: center;
  padding: 24px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--burnt-orange), #E55A25);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.feature-title {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.feature-description {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px;
  background-color: white;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--electric-blue), #0052CC);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.process-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 8px;
}

.process-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-location {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cta-section {
  background: linear-gradient(135deg, var(--electric-blue) 0%, #0052CC 100%);
  color: var(--text-white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background-color: white;
  color: var(--electric-blue);
  border-color: white;
}

.cta-section .btn-primary:hover {
  background-color: var(--burnt-orange);
  border-color: var(--burnt-orange);
  color: white;
}

.footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}

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

.footer-title {
  font-size: 1.125rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-text {
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--burnt-orange);
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burnt-orange);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-consent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 400px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  padding: 24px;
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cookie-title {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cookie-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cookie-accept {
  background-color: var(--burnt-orange);
  color: white;
  border: none;
}

.cookie-accept:hover {
  background-color: #E55A25;
}

.cookie-decline {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid #E2E8F0;
}

.cookie-decline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.page-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2a4a 100%);
  color: var(--text-white);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 42, 74, 0.8) 100%);
}

.page-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-white);
  margin-bottom: 12px;
}

.page-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.breadcrumb-current {
  color: var(--burnt-orange);
}

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

.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  color: var(--burnt-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--burnt-orange);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(0, 102, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-blue);
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background-color: var(--burnt-orange);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-medium);
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px;
  border: 2px solid #E2E8F0;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background-color: #FAFAFA;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--electric-blue);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.service-detail-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.service-detail-title {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.service-detail-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-detail-list {
  list-style: none;
  margin-bottom: 32px;
}

.service-detail-list li {
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
}

.service-detail-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background-color: rgba(255, 107, 53, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burnt-orange);
  font-size: 0.875rem;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: linear-gradient(135deg, var(--burnt-orange), #E55A25);
  color: white;
  padding: 20px 32px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

.map-section {
  background-color: var(--dark-bg);
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  background-color: #1a2a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
}

.success-message {
  text-align: center;
  padding: 64px 24px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  margin: 0 auto 32px;
}

.success-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.success-text {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.grid-two-cols {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 64px; 
  align-items: start;
}

@media (max-width: 1024px) {
  .service-detail-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-medium);
  }

  .grid-two-cols {
    grid-template-columns: 1fr; 
  }

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

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .section {
    padding: 60px 0;
  }

  .cookie-consent {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

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