/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.8rem;
  color: rgba(255, 140, 0, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
  font-family: inherit;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ff8c00;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 50px;
  color: #ff8c00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.phone-btn:hover {
  background: rgba(255, 140, 0, 0.2);
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.phone-icon {
  font-size: 1.1rem;
}

.phone-text {
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 25px;
  height: 20px;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Styles */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at top, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 10 0 L 20 10 L 10 20 L 0 10 Z" fill="none" stroke="rgba(255,140,0,0.08)" stroke-width="0.3"/><path d="M 0 0 L 10 10 L 0 20" fill="none" stroke="rgba(255,140,0,0.05)" stroke-width="0.2"/><path d="M 20 0 L 10 10 L 20 20" fill="none" stroke="rgba(255,140,0,0.05)" stroke-width="0.2"/><path d="M 0 10 L 10 20 L 20 10" fill="none" stroke="rgba(255,140,0,0.05)" stroke-width="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds)"/></svg>');
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds2" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 7.5 0 L 15 7.5 L 7.5 15 L 0 7.5 Z" fill="none" stroke="rgba(255,140,0,0.06)" stroke-width="0.2"/><path d="M 0 0 L 7.5 7.5 L 0 15" fill="none" stroke="rgba(255,140,0,0.03)" stroke-width="0.15"/><path d="M 15 0 L 7.5 7.5 L 15 15" fill="none" stroke="rgba(255,140,0,0.03)" stroke-width="0.15"/><path d="M 0 7.5 L 7.5 15 L 15 7.5" fill="none" stroke="rgba(255,140,0,0.03)" stroke-width="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds2)"/></svg>');
  opacity: 0.4;
  animation: gridMove 25s linear infinite reverse;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, 10px); }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.badge-icon {
  font-size: 18px;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
}

.title-line {
  display: block;
  opacity: 0;
  animation: slideInUp 1s ease-out forwards;
  position: relative;
}

.title-line:nth-child(1) { 
  animation-delay: 0.2s; 
  color: white;
}
.title-line:nth-child(2) { 
  animation-delay: 0.4s; 
  background: linear-gradient(135deg, #ff8c00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.title-line:nth-child(3) { 
  animation-delay: 0.6s; 
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7em;
}

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

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  max-width: 500px;
  font-weight: 300;
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: inherit;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #ff8c00, #ffa500, #ff6b00);
  color: white;
  box-shadow: 
    0 10px 30px rgba(255, 140, 0, 0.4),
    0 0 0 0 rgba(255, 140, 0, 0.7);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4), 0 0 0 0 rgba(255, 140, 0, 0.7); }
  50% { box-shadow: 0 15px 40px rgba(255, 140, 0, 0.6), 0 0 0 10px rgba(255, 140, 0, 0); }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 140, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-icon {
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 600px;
}

.car-showcase {
  position: relative;
  width: 500px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bmw-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator:hover {
  color: #ff8c00;
}

.scroll-arrow {
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, #ff8c00, transparent);
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 15px;
  height: 15px;
  border-right: 3px solid #ff8c00;
  border-bottom: 3px solid #ff8c00;
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

/* Services Styles */
.services {
  padding: 120px 0;
  background: 
    radial-gradient(ellipse at top left, rgba(255, 140, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(0, 150, 255, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 12.5 0 L 25 12.5 L 12.5 25 L 0 12.5 Z" fill="none" stroke="rgba(255,140,0,0.08)" stroke-width="0.4"/><path d="M 0 0 L 12.5 12.5 L 0 25" fill="none" stroke="rgba(255,140,0,0.05)" stroke-width="0.3"/><path d="M 25 0 L 12.5 12.5 L 25 25" fill="none" stroke="rgba(255,140,0,0.05)" stroke-width="0.3"/><path d="M 0 12.5 L 12.5 25 L 25 12.5" fill="none" stroke="rgba(255,140,0,0.05)" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds)"/></svg>');
  opacity: 0.4;
  animation: hexMove 40s linear infinite;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diamonds2" width="18" height="18" patternUnits="userSpaceOnUse"><path d="M 9 0 L 18 9 L 9 18 L 0 9 Z" fill="none" stroke="rgba(255,140,0,0.06)" stroke-width="0.25"/><path d="M 0 0 L 9 9 L 0 18" fill="none" stroke="rgba(255,140,0,0.04)" stroke-width="0.2"/><path d="M 18 0 L 9 9 L 18 18" fill="none" stroke="rgba(255,140,0,0.04)" stroke-width="0.2"/><path d="M 0 9 L 9 18 L 18 9" fill="none" stroke="rgba(255,140,0,0.04)" stroke-width="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23diamonds2)"/></svg>');
  opacity: 0.5;
  animation: hexMove 35s linear infinite reverse;
}

@keyframes hexMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 140, 0, 0.05));
  border: 2px solid rgba(255, 140, 0, 0.3);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 30px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
}

.title-accent {
  display: block;
  background: linear-gradient(135deg, #ff8c00, #ffa500, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-description {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  padding: 35px 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
  border-color: rgba(255, 140, 0, 0.5);
}

.service-card.active {
  border-color: #ff8c00;
  box-shadow: 0 20px 60px rgba(255, 140, 0, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
  font-weight: 400;
}

.service-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
  border-radius: 8px;
}

.feature-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding-top: 25px;
  position: relative;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.service-price::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  border-radius: 1px;
  opacity: 0.3;
}

.service-btn {
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.services-cta {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #1a1a1a);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.services-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,140,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 45px;
  font-weight: 300;
  line-height: 1.6;
}

/* Gallery Styles */
.gallery {
  padding: 100px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.gallery-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.zoom-icon {
  font-size: 1.2rem;
  color: white;
}

.gallery-cta {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.gallery-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.modal-content img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

/* Contact Styles */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: #ff8c00;
}

.info-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.info-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.info-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.whatsapp-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  border: 2px solid rgba(255, 140, 0, 0.5);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-indicator:hover {
  background: linear-gradient(135deg, #ffa500, #ff8c00);
  border-color: rgba(255, 140, 0, 0.8);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.whatsapp-text {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 10px rgba(255, 140, 0, 0.6);
}

.whatsapp-arrow {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  animation: arrowPulse 2s infinite;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  color: white;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

@keyframes arrowPulse {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(10px);
    opacity: 0.8;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid #ff8c00;
  border-radius: 50%;
  color: #ff8c00;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

.social-link:hover {
  background: #ff8c00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

.social-link svg {
  width: 48px;
  height: 48px;
}

.contact-form-container {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 140, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8c00;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

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

.success-message,
.error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 500;
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.error-message {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.success-icon,
.error-icon {
  font-size: 1.2rem;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  font-family: inherit;
}

.submit-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;
}

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

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 140, 0, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Map Section Styles */
.map-section {
  padding: 0;
  background: #f8f9fa;
  position: relative;
}

.map-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.google-map {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
  border-radius: 0;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 0;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
  padding: 0;
  font-family: inherit;
}

.footer-links button:hover {
  color: #ff8c00;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-icon {
  font-size: 1.1rem;
  color: #ff8c00;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item span:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff8c00;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #ff8c00;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 30px;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .hero-container {
    gap: 80px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .services {
    padding: 100px 0;
  }
  
  .services-container {
    padding: 0 30px;
  }
  
  .services-grid {
    max-width: 900px;
    gap: 35px;
  }
  
  .service-card {
    padding: 40px 35px;
  }
  
  .gallery {
    padding: 90px 0;
  }
  
  .gallery-container {
    padding: 0 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .contact {
    padding: 90px 0;
  }
  
  .contact-container {
    padding: 0 30px;
  }
  
  .contact-content {
    gap: 50px;
  }
  
  .footer-container {
    padding: 80px 30px 0;
  }
  
  .footer-content {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .header-container {
    padding: 0 25px;
  }
  
  .nav-list {
    gap: 25px;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  
  .phone-btn .phone-text {
    font-size: 0.85rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-visual {
    height: 400px;
    order: -1;
    padding: 5px 0;
  }
  
  .car-showcase {
    width: 100%;
    max-width: 450px;
    height: 350px;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
  }
  
  .service-card {
    padding: 30px 25px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
  
  .service-title {
    font-size: 1.4rem;
  }
  
  .service-description {
    font-size: 0.95rem;
  }
  
  .gallery {
    padding: 80px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gallery-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
  
  .contact {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
  
  .contact-content {
    gap: 40px;
  }
  
  .form-row {
    gap: 25px;
  }
  
  .footer-container {
    padding: 70px 25px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-section h3 {
    font-size: 1rem;
  }
  
  .footer-section p,
  .footer-section li {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
    padding: 0 15px;
  }

  .header-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 15px 30px;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(255, 140, 0, 0.1);
  }

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

  .phone-btn .phone-text {
    display: none;
  }

  .phone-btn {
    padding: 10px;
  }

  .logo-text {
    gap: 1px;
  }

  .logo-name {
    font-size: 0.9rem;
  }

  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .hero {
    padding: 100px 0 80px;
    min-height: 100vh;
  }
  
  .hero-container {
    padding: 0 20px;
    gap: 20px;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 20px 0 30px;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .stat-item {
    min-width: 120px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-visual {
    height: 300px;
    padding: 5px 0;
  }
  
  .car-showcase {
    width: 100%;
    max-width: 450px;
    height: 280px;
  }
  
  .hero-scroll {
    display: none;
  }
  
  .services {
    padding: 80px 0;
  }
  
  .services-container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  
  .section-description {
    font-size: 0.95rem;
    margin-bottom: 50px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 100%;
  }
  
  .service-card {
    padding: 30px 25px;
  }
  
  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .service-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .service-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .service-features {
    margin-bottom: 25px;
  }
  
  .feature-item {
    padding: 8px 0;
    font-size: 0.85rem;
  }
  
  .service-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .service-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .services-cta {
    padding: 50px 30px;
    margin: 60px 0 0;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .gallery {
    padding: 60px 0;
  }
  
  .gallery-container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  
  .section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact {
    padding: 60px 0;
  }
  
  .contact-container {
    padding: 0 20px;
  }
  
  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  
  .section-description {
    font-size: 0.95rem;
    margin-bottom: 50px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .whatsapp-indicator {
    padding: 8px 16px;
    gap: 8px;
  }

  .whatsapp-text {
    font-size: 0.85rem;
  }

  .whatsapp-arrow {
    font-size: 1.3rem;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
  
  .social-link {
    width: 70px;
    height: 70px;
  }
  
  .social-link svg {
    width: 42px;
    height: 42px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }

  .google-map {
    height: 400px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .footer-container {
    padding: 60px 20px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .footer-section p,
  .footer-section li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    gap: 20px;
  }
  
  .social-links {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
    height: 65px;
  }

  .header-nav {
    top: 65px;
  }

  .nav-link {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .phone-btn {
    padding: 8px;
  }

  .phone-icon {
    font-size: 1rem;
    color: white;
  }

  .logo-name {
    font-size: 0.8rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
  }

  .mobile-menu-btn {
    width: 35px;
    height: 35px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-container {
    padding: 0 15px;
    gap: 15px;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  
  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item {
    min-width: 100px;
  }

  .stat-number {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .hero-visual {
    height: 250px;
    padding: 5px 0;
  }
  
  .car-showcase {
    width: 100%;
    max-width: 380px;
    height: 220px;
  }
  
  .services {
    padding: 60px 0;
  }
  
  .services-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .services-grid {
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .service-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .service-description {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }
  
  .service-features {
    margin-bottom: 20px;
  }
  
  .feature-item {
    padding: 6px 0;
    font-size: 0.8rem;
  }
  
  .service-price {
    font-size: 1rem;
  }
  
  .service-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
  
  .services-cta {
    padding: 40px 20px;
    margin: 50px 0 0;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .gallery {
    padding: 50px 0;
  }
  
  .gallery-container {
    padding: 0 15px;
  }
  
  .gallery-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: clamp(1.2rem, 7vw, 1.6rem);
  }
  
  .section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .gallery-grid {
    gap: 15px;
  }
  
  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .gallery-cta {
    padding: 30px 15px;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .modal-content {
    max-width: 98vw;
    max-height: 98vh;
    margin: 10px;
  }
  
  .modal-info {
    padding: 15px;
  }
  
  .modal-info h3 {
    font-size: 1rem;
  }
  
  .modal-info p {
    font-size: 0.9rem;
  }
  
  .contact {
    padding: 50px 0;
  }
  
  .contact-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: clamp(1.2rem, 7vw, 1.6rem);
  }
  
  .section-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .contact-content {
    gap: 30px;
  }
  
  .contact-form-container {
    padding: 25px 15px;
  }

  .google-map {
    height: 350px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .info-card {
    padding: 15px;
  }
  
  .footer-container {
    padding: 40px 15px 0;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-section p,
  .footer-section li {
    font-size: 0.85rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-link {
    font-size: 0.8rem;
  }
  
  .social-links {
    justify-content: center;
    gap: 12px;
  }

  .whatsapp-indicator {
    padding: 7px 14px;
    gap: 7px;
  }

  .whatsapp-text {
    font-size: 0.8rem;
  }

  .whatsapp-arrow {
    font-size: 1.2rem;
  }

  .whatsapp-icon {
    width: 22px;
    height: 22px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
