/* ========================================
   EKREM DOGAN – KFZ-Prüfingenieure
   GTÜ Design System – Technik braucht Sicherheit
   style.css
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gtue-red:     #E2001A;
  --gtue-red-dk:  #b8001a;
  --gtue-dark:    #1A1A1A;
  --gtue-darker:  #111111;
  --gtue-gray:    #F4F4F4;
  --gtue-gray-2:  #E8E8E8;
  --accent:       #E2001A;
  --text-dark:    #1A1A1A;
  --text-mid:     #555555;
  --text-light:   #888888;
  --white:        #FFFFFF;
  --border:       #E0E0E0;
  --shadow:       0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 10px 36px rgba(0, 0, 0, 0.14);
  --radius:       4px;
  --font:         'Inter', 'Segoe UI', Arial, sans-serif;
  --max-width:    1160px;
  --nav-height:   70px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gtue-dark);
  height: var(--nav-height);
  box-shadow: 0 2px 0 var(--gtue-red);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-brand .brand-tagline {
  font-size: 0.7rem;
  color: var(--gtue-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gtue-red);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* GTÜ badge in nav */
.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(226,0,26,0.5);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-left: 16px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.nav-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gtue-red);
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--gtue-dark);
  background-image: url('https://images.pexels.com/photos/4489749/pexels-photo-4489749.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center right;
  color: var(--white);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

/* Dark overlay for text legibility */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,26,0.96) 0%,
    rgba(26,26,26,0.88) 55%,
    rgba(26,26,26,0.55) 100%
  );
  z-index: 0;
}

/* Red vertical left stripe */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--gtue-red);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-left: 32px;
}

/* Eyebrow – "Technik braucht Sicherheit." in GTÜ-Rot */
.hero-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gtue-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--gtue-red);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero h1 span {
  color: var(--gtue-red);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* GTÜ partner badge in hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226,0,26,0.12);
  border: 1px solid rgba(226,0,26,0.35);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--gtue-red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--gtue-red);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gtue-red-dk);
  border-color: var(--gtue-red-dk);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* ---------- Section Shared ---------- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gtue-gray);
}

.section-dark {
  background: var(--gtue-dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gtue-red);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--gtue-dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.65);
}

/* ---------- Leistungen ---------- */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leistung-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

/* Red top accent bar */
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gtue-red);
}

.leistung-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gtue-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
  display: block;
  flex-shrink: 0;
}

.leistung-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gtue-dark);
  margin-bottom: 16px;
  line-height: 1.35;
}

.leistung-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leistung-card ul li {
  color: var(--text-mid);
  font-size: 0.91rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.leistung-card ul li::before {
  content: '✓';
  color: var(--gtue-red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- YouTube Videos ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow-hover);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Video Thumbnail Cards (replaces iframes) ---------- */
.video-thumb-link {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow-hover);
  cursor: pointer;
}

.video-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.85;
}

.video-thumb-link:hover img {
  transform: scale(1.04);
  opacity: 0.7;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-play-btn svg {
  width: 64px;
  height: 64px;
  fill: var(--white);
  background: var(--gtue-red);
  border-radius: 50%;
  padding: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-thumb-link:hover .video-play-btn svg {
  transform: scale(1.12);
  background: var(--gtue-red-dk);
}

.video-caption h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gtue-dark);
  margin-bottom: 4px;
}

.section-dark .video-caption h4 {
  color: var(--white);
}

.video-caption p {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.section-dark .video-caption p {
  color: rgba(255,255,255,0.6);
}

/* ---------- Öffnungszeiten & Standorte ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gtue-red);
}

.info-card-header .icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.info-card-header .icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gtue-red);
  display: block;
}

.info-card-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gtue-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Opening hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-mid);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 55%;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-badge {
  display: inline-block;
  background: #e8f7f0;
  color: #2d7a55;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.hours-badge.closed {
  background: #fdeaea;
  color: #c0392b;
}

/* Standorte */
.standort {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.standort-item {
  background: var(--gtue-gray);
  border-left: 3px solid var(--gtue-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.standort-item .s-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.standort-item .s-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gtue-red);
  display: block;
}

.standort-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--gtue-dark);
  margin-bottom: 4px;
}

.standort-item p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.standort-item a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gtue-red);
  font-weight: 600;
  font-size: 0.87rem;
  margin-top: 6px;
  transition: color 0.2s;
}

.standort-item a:hover {
  color: var(--gtue-red-dk);
}

/* ---------- GTÜ Partner Banner ---------- */
.partner-banner {
  background: var(--gtue-red);
  padding: 52px 0;
  text-align: center;
}

.partner-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.partner-banner strong {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logo-box {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 12px 28px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gtue-darker);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
  border-top: 3px solid var(--gtue-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  color: var(--gtue-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 300px;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gtue-red);
}

.footer-col p {
  font-size: 0.87rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--gtue-red);
}

/* ---------- Inner Page Header ---------- */
.page-header {
  background: var(--gtue-dark);
  color: var(--white);
  padding: 60px 0 48px;
  text-align: center;
  border-bottom: 3px solid var(--gtue-red);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gtue-red);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gtue-red);
}

.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---------- Kontakt Page ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  position: relative;
}

.contact-form-card::before,
.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gtue-red);
  border-radius: var(--radius) var(--radius) 0 0;
}

.contact-form-card h3,
.contact-info-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gtue-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gtue-red);
  box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gtue-red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font);
  letter-spacing: 0.03em;
}

.form-submit:hover {
  background: var(--gtue-red-dk);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item .c-icon {
  width: 42px;
  height: 42px;
  background: var(--gtue-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item .c-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  display: block;
}

.contact-item h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 0.92rem;
  color: var(--text-dark);
}

.contact-item a { color: var(--gtue-red); }

/* ---------- Team Page ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-card-img {
  width: 100%;
  height: 220px;
  background: var(--gtue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 4px solid var(--gtue-red);
  overflow: hidden;
  position: relative;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.04);
}

.team-card-body {
  padding: 24px;
}

.team-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gtue-dark);
  margin-bottom: 4px;
}

.team-card-body .role {
  font-size: 0.82rem;
  color: var(--gtue-red);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---------- Anfahrt Page ---------- */
.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.map-placeholder {
  background: var(--gtue-gray);
  border-radius: var(--radius);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  font-size: 3rem;
  border: 1px solid var(--border);
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.anfahrt-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gtue-red);
  display: block;
  flex-shrink: 0;
}

/* ---------- Impressum Page ---------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gtue-dark);
  margin: 40px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-left: 14px;
  border-left: 3px solid var(--gtue-red);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

.legal-content a {
  color: var(--gtue-red);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .leistungen-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ---------- GTÜ Logo in Navbar & Footer ---------- */
.nav-gtue-logo {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-gtue-logo {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

/* ---------- Prüfzeiten Card ---------- */
.pruefzeiten-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pruefzeit-item {
  padding: 28px 32px;
}

.pruefzeit-feierabend {
  background: var(--gtue-dark);
  color: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
}

.pruefzeit-regular {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.pruefzeit-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gtue-red);
  margin-bottom: 8px;
}

.pruefzeit-days {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pruefzeit-feierabend .pruefzeit-days {
  color: var(--white);
}

.pruefzeit-time {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.pruefzeit-feierabend .pruefzeit-time {
  color: var(--white);
}

.pruefzeit-regular .pruefzeit-time {
  color: var(--gtue-dark);
}

.pruefzeit-note {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.8;
}

.pruefzeit-feierabend .pruefzeit-note {
  color: rgba(255,255,255,0.7);
}

.pruefzeit-regular .pruefzeit-note {
  color: var(--text-mid);
}

.pruefzeit-samstag {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gtue-dark);
  background: var(--gtue-gray);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: inline-block;
}

/* ---------- Stats Section – Sicherheit mit Brief und Siegel ---------- */
.stats-section {
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

.stat-value {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- HU-Plaketten Strip ---------- */
.plaketten-section {
  padding: 72px 0;
}

.plaketten-grid {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}

.plakette-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.plakette-item img {
  width: 120px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.plakette-item img:hover {
  transform: translateY(-4px);
}

.plakette-item span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plakette-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.plakette-accent {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.plakette-cta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gtue-dark);
  margin-bottom: 6px;
}

.plakette-cta p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Override partner-banner p cascade for cta-gute-fahrt */
.cta-gute-fahrt .cta-banner-sub {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0;
}

.cta-gute-fahrt .cta-banner-text strong {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

/* ---------- CTA Banner – Plakette fällig / Gute Fahrt ---------- */
.cta-gute-fahrt {
  padding: 56px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text {
  flex: 1;
}

.cta-banner-text p:first-child {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.cta-banner-text strong {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.cta-banner-sub {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 480px;
  line-height: 1.65;
}

.cta-banner-graphic {
  flex-shrink: 0;
}

.cta-banner-graphic img {
  height: 100px;
  width: auto;
  border-radius: var(--radius);
  opacity: 0.9;
}

@media (max-width: 760px) {
  :root {
    --nav-height: 62px;
  }

  .nav-links, .nav-badge {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--gtue-dark);
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-top: 2px solid var(--gtue-red);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-badge {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero-inner {
    padding-left: 20px;
  }

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-logos {
    gap: 20px;
  }

  .section {
    padding: 56px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plaketten-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .plakette-cta {
    grid-column: 1 / -1;
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-sub {
    max-width: 100%;
  }

  .cta-banner-graphic img {
    height: 70px;
  }

  .pruefzeit-time {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary, .btn-outline {
    text-align: center;
  }

  .kontakt-grid,
  .anfahrt-grid {
    gap: 20px;
  }

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

  .plakette-item:nth-child(3) {
    grid-column: 1 / -1;
  }
}
