
/*

  _______              _       _____       _       _   _                            _______ _____         _____ 
 |__   __|            (_)     / ____|     | |     | | (_)                          |__   __/ ____|  /\   |_   _|
    | |_ __ ___  _ __  _  ___| (___   ___ | |_   _| |_ _  ___  _ __  ___   ______     | | | (___   /  \    | |  
    | | '__/ _ \| '_ \| |/ __|\___ \ / _ \| | | | | __| |/ _ \| '_ \/ __| |______|    | |  \___ \ / /\ \   | |  
    | | | | (_) | |_) | | (__ ____) | (_) | | |_| | |_| | (_) | | | \__ \             | |  ____) / ____ \ _| |_ 
    |_|_|  \___/| .__/|_|\___|_____/ \___/|_|\__,_|\__|_|\___/|_| |_|___/             |_| |_____/_/    \_\_____|
                | |                                                                                             
                |_|                                                                                             

  TropicSolutions  •  TSAI
   T r o p i c S o l u t i o n s    –    T S A I 
  System entwickelt von TropicSolutions – Florian Bach

*/

/**
 * System entwickelt von TropicSolutions - Florian Bach
 * TSAI
 *
 * @package   Reparatursaurier
 * @author    Florian Bach
 * @copyright © 2025 TropicSolutions. Alle Rechte vorbehalten.
 * @license   Selfcoded by TropicSolutions
 * @link      https://tropicsolutions.net
 **/



/* Services Page Styling - Converted from React component */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  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%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* About Section */
.about-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-image-wrapper {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.about-image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.about-badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-badge-text {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
}

/* Services Grid */
.services-section {
  margin-bottom: 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--surface);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(1) {
  animation-delay: 0.5s;
}
.service-card:nth-child(2) {
  animation-delay: 0.6s;
}
.service-card:nth-child(3) {
  animation-delay: 0.7s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  color: white;
}

.service-content {
  padding: 1.5rem;
  flex: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.feature-card:nth-child(1) {
  animation-delay: 0.9s;
}
.feature-card:nth-child(2) {
  animation-delay: 1.0s;
}
.feature-card:nth-child(3) {
  animation-delay: 1.1s;
}
.feature-card:nth-child(4) {
  animation-delay: 1.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out 1.3s both;
}

[data-theme="dark"] .process-section {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
}

.process-number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.process-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.process-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  margin-top: 5rem;
  animation: fadeInUp 0.8s ease-out 1.5s both;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-badge {
    bottom: 1rem;
    left: 1rem;
  }

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

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

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

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

  .process-section {
    padding: 2rem 1.5rem;
  }
}
