/* =========================
   HERO SECTION
========================= */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  text-align: center;
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(15,31,19,0.85), rgba(15,31,19,0.85)), url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,255,136,0.1) 0%, rgba(15,31,19,0.9) 100%);
  z-index: 1;
}

.hero-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #00ff88;
  display: block;
}

.hero-content .tagline {
  font-size: 1.2rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-content .cta-btn {
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Static Hero Variant */
.static-hero {
  min-height: 85vh;
}

/* Hero variants for different pages */
.hero-about,
.hero-services,
.hero-contact {
  min-height: 60vh;
}

/* =========================
   HISTORY SECTION
========================= */
.history {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: #152a20;
  padding: 4rem 3rem;
  border-radius: 10px;
}

.history h2 {
  margin-bottom: 1.5rem;
}

.history p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
}

/* =========================
   SERVICES SECTION
========================= */
.services {
  background-color: #0f1f13;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  background-color: #1a2b21;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 280px;
}

/* FIX: Service Icons auf 60px begrenzen */
.service-card .service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  transition: transform 0.4s;
  color: #00ff88;
  stroke-width: 1.5;
}

.service-card h3 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Service Details Liste */
.service-details {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  width: 100%;
  text-align: left;
}

.service-details li {
  color: #ccc;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,255,136,0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* =========================
   INDUSTRIES SECTION
========================= */
.industries {
  background-color: #0a120d;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.industry-item {
  background-color: #152a20;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}

/* FIX: Industry Icons auf 50px */
.industry-item .industry-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  color: #00ff88;
  stroke-width: 1.5;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.industry-item h4 {
  color: #00ff88;
  font-size: 1.1rem;
}

.industry-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,255,136,0.3);
  border-color: #00ff88;
}

/* =========================
   PROCESS SECTION
========================= */
.process {
  background-color: #0f1f13;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  background-color: #152a20;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #00ff88;
  color: #0f1f13;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.process-step p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,255,136,0.3);
  border-color: #00ff88;
}

/* =========================
   QUALIFICATIONS SECTION
========================= */
.qualifications {
  background-color: #0a120d;
}

.qual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.qual-item {
  background-color: #152a20;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}

/* FIX: Qualification Icons auf 60px */
.qual-item .qual-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: #00ff88;
  stroke-width: 1.5;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.qual-item h3 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.qual-item p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.qual-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,255,136,0.3);
  border-color: #00ff88;
}

/* =========================
   TEAM SECTION
========================= */
.team {
  background-color: #0a120d;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background-color: #152a20;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-color: #1a2b21;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #00ff88;
}

.team-avatar svg {
  width: 60px;
  height: 60px;
  color: #00ff88;
}

.team-member h4 {
  color: #00ff88;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.team-member p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.team-desc {
  color: #999;
  font-size: 0.85rem;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,255,136,0.3);
  border-color: #00ff88;
}

/* =========================
   KONTAKT / FORM
========================= */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #152a20;
  padding: 3rem;
  border-radius: 10px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info {
  background-color: #0a120d;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.info-item {
  background-color: #152a20;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-item h4 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-item p {
  color: #fff;
  font-size: 1rem;
}

.info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,255,136,0.3);
}

/* Map Styling */
.map {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.map iframe {
  display: block;
  border: none;
}

/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content .tagline {
    font-size: 1rem;
  }

  .hero {
    min-height: 70vh;
    padding: 3rem 1.5rem;
  }

  .hero-about,
  .hero-services,
  .hero-contact {
    min-height: 50vh;
  }

  .service-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .service-grid,
  .team-grid,
  .cert-grid,
  .info-grid,
  .qual-grid,
  .industry-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content .tagline {
    font-size: 0.95rem;
  }

  .service-card .service-icon {
    width: 50px;
    height: 50px;
  }

  .team-avatar {
    width: 100px;
    height: 100px;
  }

  .team-avatar svg {
    width: 50px;
    height: 50px;
  }
}

/* =========================
   JOBS PAGE STYLES
========================= */

/* Jobs Hero */
.hero-jobs {
  min-height: 60vh;
  background: linear-gradient(rgba(15,31,19,0.85), rgba(15,31,19,0.85)), 
              linear-gradient(135deg, #0f5132 0%, #1a2b21 100%);
}

/* Jobs Intro */
.jobs-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #152a20 0%, #0f1f13 100%);
  padding: 4rem 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.jobs-intro h2 {
  margin-bottom: 1.5rem;
}

.jobs-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 1rem;
}

/* Job Offers Section */
.job-offers {
  background-color: #0f1f13;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.job-card {
  background: linear-gradient(135deg, #152a20 0%, #1a2b21 100%);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.job-card .job-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #00ff88;
  stroke-width: 1.5;
  display: block;
}

.job-card h3 {
  color: #00ff88;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.job-card > p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.job-requirements {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.job-requirements li {
  color: #ccc;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.5;
}

.job-requirements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
  font-size: 1.1rem;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,255,136,0.3);
  border-color: #00ff88;
}

.job-card:hover .job-icon {
  transform: scale(1.1) rotateY(360deg);
  transition: transform 0.6s ease;
}

/* Benefits Section */
.benefits {
  background-color: #0a120d;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background: linear-gradient(135deg, #152a20 0%, #1a2b21 100%);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.benefit-item .benefit-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  color: #00ff88;
  stroke-width: 1.5;
  display: block;
}

.benefit-item h3 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.benefit-item p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,255,136,0.3);
  border-color: #00ff88;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.15);
  transition: transform 0.4s ease;
}

/* Application Section */
.application {
  background-color: #0f1f13;
}

.application-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.application-text h3 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.application-text p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.application-text strong {
  color: #00ff88;
}

.application-docs {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.application-docs li {
  color: #ccc;
  font-size: 1rem;
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
}

.application-docs li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Contact Box */
.contact-box {
  background: linear-gradient(135deg, #152a20 0%, #1a2b21 100%);
  padding: 2.5rem;
  border-radius: 10px;
  border: 2px solid #00ff88;
  box-shadow: 0 10px 30px rgba(0,255,136,0.2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-method svg {
  width: 40px;
  height: 40px;
  color: #00ff88;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.contact-method h4 {
  color: #00ff88;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-method a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
}

.contact-method a:hover {
  color: #00ff88;
  text-decoration: underline;
}

/* Responsive für Jobs Page */
@media screen and (max-width: 768px) {
  .job-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .application-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-box {
    padding: 2rem 1.5rem;
  }
  
  .contact-method {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .contact-method svg {
    width: 35px;
    height: 35px;
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .jobs-intro {
    padding: 2.5rem 1.5rem;
  }
  
  .job-card {
    padding: 2rem 1.5rem;
  }
  
  .benefit-item {
    padding: 2rem 1.5rem;
  }
  
  .contact-box {
    padding: 1.5rem;
  }
}