/* Base Styles */
body {
    margin: 0;
}

.garage-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

.garage-page * {
  box-sizing: border-box;
}

.hidden {
  display: none;
}

/* Header */
.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon img {
  margin-top: 2px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D8AB4D;
}

.nav, .nav .menu {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #e94560;
}

/* Language switch */
.lang-switch {
  position: relative;
}

.lang-switch .show {
  display: block;
}

.lang-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.lang-btn i {
  font-size: 0.7rem;
}

.lang-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background: #1f2933;
  border-radius: 10px;
  min-width: 120px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  display: none;
  overflow: hidden;
  z-index: 2000;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
}

.lang-dropdown a:hover {
  background: rgba(255,255,255,0.1);
}

.lang-dropdown a.active {
  background: #e94560;
}

.lang-switch a {
  color: #cfd8dc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}

.lang-switch a.active {
  background: #e94560;
  color: #16213e;
}

.lang-switch a:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* Hero Section */
.hero {
  min-height: 60vh;
  background: url('header-background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

/* Sections Common */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.section-container h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  max-width: 400px;
  margin: 0 auto 3rem;
}

/* Services Section */
.services {
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  padding: 0 4rem;
}

/* About Section */
.about {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: #1a1a2e;
  font-weight: 500;
}

.about-stats {
  display: grid;
  gap: 2rem;
}

.stat {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 3.4rem;
  border-radius: 16px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #e94560;
}

.stat-label {
  color: #ccc;
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.contact-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 1rem;
  border-radius: 12px;
}

.contact-item h4 {
  margin: 0;
  color: #1a1a2e;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  color: #666;
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-result {
  font-weight: bold;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e94560;
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn-primary {
  width: 100%;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  color: #666;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Footer Social Icons */
.footer-social a {
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #e94560;
}

/* Responsive */
@media (max-width: 968px) {
  .nav .menu {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-content {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding-top: 4.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }

  .logo-icon img {
    height: 20px;
  }

  .logo-text {
    font-size: 1rem;
  }
  
  .section-container h2 {
    font-size: 2rem;
  }

  .service-card p {
    padding: 0 0.5rem;
  }
}