﻿/* ==========================================
   Reset & Basics
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2a44;
  background: #f8f9fc;
}

/* ==========================================
   Header
========================================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  color: #003087;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #005eb8;
}

/* ==========================================
   Hero
========================================== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/2026-01-07-02A.png') center/cover no-repeat fixed;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,48,135,0.78) 0%, rgba(0,48,135,0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.6rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #005eb8;
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,94,184,0.25);
}

.btn-primary:hover {
  background: #004080;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,94,184,0.35);
}

/* ==========================================
   LUCIDE ICONS - Endgültige starke Version
========================================== */

/* ALLE Lucide SVG Icons global */
[data-lucide] {
  color: #005eb8;
}

/* Das erzeugte SVG */
svg.lucide {
  stroke: #005eb8 !important;
  color: #005eb8 !important;
}

/* Standardgröße */
svg.lucide {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* Trust-Band */
.trust-band svg.lucide {
  width: 45px;
  height: 45px;
}

/* Service-Karten */
.service-card svg.lucide {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}

/* Untere Themenkarten */
.topic-icon svg.lucide {
  width: 35px;
  height: 35px;
}

/* Hover */
svg.lucide:hover {
  stroke: #003087 !important;
}

/* Verhindert Farbvererbung */
.service-card,
.topic-card {
  color: inherit;
}

/* ==========================================
   Kundenlogos & Slider
========================================== */

.logo-section {
  padding: 90px 20px;
  background: #ffffff;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: logo-scroll 45s linear infinite;
}

.logo-track img {
  height: 175px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================
   Trust Band
========================================== */
.trust-band {
  background: #ffffff;
  padding: 40px 5%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  color: #003087;
  font-weight: 600;
}

/* ==========================================
   Services
========================================== */
.services {
  padding: 100px 5% 120px;
  background: #f8f9fc;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
  color: #003087;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.2rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: all 0.28s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 1rem;
  color: #003087;
}

.mehr-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: #005eb8;
  font-weight: 600;
  text-decoration: none;
}

.mehr-link:hover {
  color: #003087;
  text-decoration: underline;
}

/* ==========================================
   Footer
========================================== */
.footer {
  background: #002855;
  color: #d0e0f5;
  padding: 60px 5% 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-links a {
  color: #d0e0f5;
  text-decoration: none;
  margin-left: 1.8rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding: 30px 0 20px;
  font-size: 0.9rem;
  opacity: 0.75;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* ==========================================
   Responsive
========================================== */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.3rem; }
  .trust-band { gap: 2rem; padding: 30px 5%; }
}

@media (max-width: 768px) {
  .top-bar {
    height: auto;
    padding: 15px 5%;
    flex-direction: column;
    gap: 12px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.4rem; }
}
/* ==========================================
   Unterseiten-spezifisch
========================================== */

/* Hero für Unterseiten etwas schmaler */
.hero-subpage {
  height: 55vh;
  min-height: 420px;
}

.hero-subpage .hero h1 {
  font-size: 3.2rem;
}

.hero-subpage .hero-subtitle {
  font-size: 1.4rem;
}

/* Inhaltsbereich Unterseite */
.content-section {
  padding: 100px 5% 120px;
  background: #ffffff;
}

.intro-block, .relevance-block, .main-text {
  max-width: 920px;
  margin: 0 auto 60px;
}

.intro-block h2, .relevance-block h3, .main-text h3 {
  color: #003087;
  margin-bottom: 1.4rem;
}

.relevance-block h3 {
  font-size: 1.8rem;
}

.service-list {
  list-style: none;
  margin: 2rem 0;
}

.service-list li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-left: 2.2rem;
  position: relative;
}

.service-list li i {
  position: absolute;
  left: 0;
  color: #005eb8;
  font-size: 1.4rem;
}

/* CTA-Block am Ende */
.cta-block {
  background: #f0f5ff;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 4rem;
}

.cta-block h3 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  color: #003087;
}

.cta-block p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #1f2a44;
}

/* Responsive Anpassungen für Unterseite */
@media (max-width: 768px) {
  .content-section {
    padding: 70px 5% 90px;
  }
  
  .cta-block {
    padding: 2.5rem 1.8rem;
  }
}
/* ==========================================
   Kontaktformular-Styling
========================================== */
.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.form-group {
  margin-bottom: 1.6rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #003087;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d9e8;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #005eb8;
  box-shadow: 0 0 0 3px rgba(0,94,184,0.1);
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .half {
  flex: 1;
}

.required {
  color: #d32f2f;
  font-weight: bold;
}

.form-hint {
  margin: 1.2rem 0 2rem;
  font-size: 0.95rem;
  color: #555;
}

.form-hint .small-hint {
  margin-top: 0.6rem;
  font-style: italic;
  color: #666;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.info-group {
  margin-bottom: 1.6rem;
}

.info-group p {
  margin: 0;
  line-height: 1.7;
}

/* ==========================================
   Standorte / Impressum spacing
========================================== */

.relevance-block h4 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: #003087;
}

.relevance-block p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.relevance-block {
  margin-bottom: 3rem;
}

.main-text p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.main-text h3 {
  margin-bottom: 1.5rem;
}

.main-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   Firmenblock mit Karte
========================================== */

.company-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: nowrap;           /* WICHTIG: verhindert automatisches Umbrechen */
}

.company-info {
  flex: 1 1 48%;               /* etwas flexibler als vorher */
  min-width: 320px;
}

.company-map {
  flex: 1 1 48%;
  min-width: 320px;
}

.company-map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Auf kleineren Bildschirmen trotzdem sauber stapeln */
@media (max-width: 992px) {
  .company-layout {
    flex-wrap: wrap;
    gap: 35px;
  }
  
  .company-info,
  .company-map {
    flex: 1 1 100%;
  }
}

/* ==========================================
   Standorte nebeneinander
========================================== */

.locations-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.location-card {
  background: #f8f9fc;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ==========================================
   THEMENBEREICHE STARTSEITE
========================================== */

/* THEMENBEREICHE */
.topic-section {
    padding: 90px 20px;
    background: #f7f9fc;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 102, 204, 0.08);
    color: #0066cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

.section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

.topic-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.topic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.topic-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: transparent;
}

/* Icon selbst */
.topic-icon i {
    color: #005eb8 !important;
    stroke: #005eb8 !important;
}

.topic-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #111827;
}

.topic-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 25px;
}

.topic-link {
    font-size: 15px;
    font-weight: 700;
    color: #0066cc;
}

@media (max-width: 768px) {

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .topic-card {
        padding: 28px;
    }
}









