/* Main Content Area */
.content-area {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Hero Sections */
.banner-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: linear-gradient(rgba(30, 41, 59, 0.7), rgba(16, 22, 32, 0.8)), url('../images/hero1-auto-repair-workshop_orig.jpg') center/cover;
  background-attachment: fixed;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(220, 38, 38, 0.1) 0%, rgba(30, 41, 59, 0.3) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* About Section */
.about-content-wrapper {
  background: var(--bg-secondary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-content-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
  z-index: 1;
}

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

.about-image {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

/* Services Grid */
.services-grid-section {
  background: var(--bg-primary);
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1rem;
}

/* Team Section */
.team-section {
  background: var(--bg-card);
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--accent);
}

.team-member-name {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
  text-align: center;
}

.client-testimonial {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.client-testimonial::before {
  content: '"';
  font-size: 6rem;
  color: var(--accent);
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: serif;
}

.testimonial-content {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

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

/* Contact Section */
.contact-section {
  background: var(--bg-primary);
  padding: 5rem 0;
}

.contact-info-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item svg {
  margin-right: 1rem;
  color: var(--accent);
  width: 24px;
  height: 24px;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

/* Gallery */
.gallery-section {
  background: var(--bg-card);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-thumb {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Pricing Table */
.pricing-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
}

.pricing-table {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 3rem;
}

.pricing-table-header {
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.pricing-service {
  font-weight: 600;
  flex: 1;
}

.pricing-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Statistics */
.stats-section {
  background: var(--primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Live Workshop Status */
.workshop-status {
  background: linear-gradient(135deg, var(--accent) 0%, #b91c1c 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.workshop-status h4 {
  margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-wrapper {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-section {
    background-attachment: scroll;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}