/* ============================================
   PRO TRANS GmbH – Static Website Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&family=Playfair+Display:wght@400;700&family=Exo+2:wght@700;800&display=swap');

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

:root {
  --ocean-50: #f0f7fa;
  --ocean-100: #daeef5;
  --ocean-200: #b3dce9;
  --ocean-300: #7cc0d6;
  --ocean-400: #3a97b8;
  --ocean-500: #1a7a9e;
  --ocean-600: #14627f;
  --ocean-700: #104d65;
  --ocean-800: #0c3a4d;
  --ocean-900: #082736;
  --gold-400: #e8a838;
  --gold-500: #d4912a;
  --gold-600: #b87a22;
  --coral-500: #d05a3a;
  --font-sans: 'Source Sans 3', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-brand: 'Exo 2', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: all 0.5s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar.scrolled .brand-text { color: var(--ocean-800); }
.navbar.scrolled .nav-bottom-row a,
.navbar.scrolled .nav-bottom-row .dropdown-toggle { color: var(--ocean-800); }
.navbar.scrolled .nav-bottom-row a:hover,
.navbar.scrolled .nav-bottom-row .dropdown-toggle:hover { color: var(--ocean-500); background: rgba(0,0,0,0.05); }
.navbar.scrolled .nav-bottom-row a.careers-link { color: var(--gold-500); }
.navbar.scrolled .lang-toggle { color: var(--ocean-700); border-color: rgba(0,0,0,0.2); }
.navbar.scrolled .mobile-toggle { color: var(--ocean-800); }
/* Subpages: always solid dark navbar */
.navbar.subpage { background: var(--ocean-800); }
.navbar.subpage.scrolled { background: rgba(8,39,54,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.navbar.subpage.scrolled .brand-text { color: #fff; }
.navbar.subpage.scrolled .nav-bottom-row a,
.navbar.subpage.scrolled .nav-bottom-row .dropdown-toggle { color: rgba(255,255,255,0.85); }
.navbar.subpage.scrolled .nav-bottom-row a:hover,
.navbar.subpage.scrolled .nav-bottom-row .dropdown-toggle:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.subpage.scrolled .nav-bottom-row a.careers-link { color: var(--gold-400); }
.navbar.subpage.scrolled .lang-toggle { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
.navbar.subpage.scrolled .mobile-toggle { color: #fff; }
.navbar-inner {
  padding: 0 1.5rem; max-width: 1400px; margin: 0 auto;
}
.nav-top-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-top-right {
  display: flex; align-items: center; gap: 1rem;
}
.nav-bottom-row {
  display: flex; align-items: center; gap: 1.35rem;
  height: 38px; padding-bottom: 0.5rem;
}
.nav-bottom-row a, .nav-bottom-row .dropdown-toggle {
  color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.4rem 0.6rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s; cursor: pointer;
  background: none; border: none; font-family: var(--font-sans);
  text-decoration: none;
}
.nav-bottom-row a:hover, .nav-bottom-row .dropdown-toggle:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-bottom-row a.careers-link { color: var(--gold-400); }
.nav-bottom-row a.careers-link:hover { color: var(--gold-500); }
.brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.brand-logo { width: 56px; height: 56px; }
.brand-globe { width: 68px; height: 68px; flex-shrink: 0; }
.footer-globe { width: 30px; height: 30px; flex-shrink: 0; }
.brand-text {
  font-family: var(--font-brand);
  font-weight: 800; font-size: clamp(1.85rem, 2.2vw, 2.25rem);
  color: #fff; letter-spacing: 0.24em; text-transform: uppercase;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem; background: var(--gold-500); color: #fff;
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; border-radius: 4px;
  transition: background 0.2s; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--gold-600); }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.8rem; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px; color: rgba(255,255,255,0.85);
  font-size: 0.75rem; font-weight: 600; background: none; cursor: pointer;
  transition: border-color 0.2s;
}
.lang-toggle:hover { border-color: rgba(255,255,255,0.6); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--ocean-800); border-radius: 8px;
  padding: 0.5rem 0; min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.6rem 1rem; font-size: 0.8rem;
  color: rgba(255,255,255,0.85); white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ocean-900); z-index: 999; padding: 5rem 2rem 2rem;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block; padding: 0.75rem 1rem; color: #fff;
  font-size: 1rem; border-radius: 4px;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }
.mobile-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

@media (max-width: 1024px) {
  .nav-bottom-row, .nav-top-right { display: none; }
  .nav-top-row { height: 72px; }
  .brand-globe { width: 62px; height: 62px; }
  .brand-text { font-size: clamp(1.55rem, 5vw, 2rem); letter-spacing: 0.18em; }
  .mobile-toggle { display: block; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--ocean-700) 100%);
  overflow: hidden; padding-top: 6rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.4;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,39,54,0.85) 0%, rgba(16,77,101,0.6) 100%); }
.hero-content { position: relative; z-index: 2; padding: 4rem 0; }
.hero-tagline {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold-400); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-tagline::before { content: ''; width: 40px; height: 2px; background: var(--gold-400); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title .highlight { color: var(--gold-400); display: block; }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; background: var(--gold-500); color: #fff;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; border-radius: 4px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; background: transparent; color: #fff;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-phone {
  position: absolute; bottom: 2rem; left: 1.5rem; z-index: 2;
  display: flex; align-items: center; gap: 0.75rem; color: #fff;
}
.hero-phone-icon { width: 40px; height: 40px; background: var(--gold-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-phone-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.hero-phone-number { font-size: 1.1rem; font-weight: 700; }

/* Animated Truck */
.hero-truck {
  position: absolute; bottom: 0; right: -100%;
  width: 600px; height: 200px;
  animation: truckDrive 20s linear infinite;
  z-index: 1;
}
@keyframes truckDrive { 0% { right: -100%; } 100% { right: 120%; } }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section { padding: 5rem 0; }
.section-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold-500); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--gold-500); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--ocean-900); line-height: 1.2; margin-bottom: 1.5rem;
}
.section-title .highlight { color: var(--gold-500); }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.service-card {
  position: relative; border-radius: 12px; overflow: hidden;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.service-card-img { height: 200px; object-fit: cover; width: 100%; }
.service-card-body { padding: 1.5rem; }
.service-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ocean-900); margin-bottom: 0.5rem; }
.service-card-text { font-size: 0.9rem; color: #666; line-height: 1.6; margin-bottom: 1rem; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-500); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.service-card-link:hover { color: var(--gold-600); }

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  background: linear-gradient(135deg, var(--ocean-800), var(--ocean-900));
  padding: 4rem 0; position: relative; overflow: hidden;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { color: #fff; }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold-400); }
.stat-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2rem; }
.about-img { border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.about-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-500); color: #fff; padding: 0.5rem 1rem;
  border-radius: 50px; font-weight: 700; font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.about-text { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.about-ceo { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #eee; }
.about-ceo-name { font-weight: 700; color: var(--ocean-900); }
.about-ceo-role { font-size: 0.85rem; color: #888; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--ocean-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.contact-form { background: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ocean-800); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #ddd;
  border-radius: 6px; font-family: var(--font-sans); font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--ocean-500); outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 1rem; background: var(--gold-500); color: #fff;
  font-weight: 700; font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.1em; border: none; border-radius: 6px; cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--gold-600); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-block h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-500); margin-bottom: 0.5rem; }
.contact-info-block p { color: #555; line-height: 1.6; }
.contact-info-block a { color: var(--ocean-700); font-weight: 600; }
.contact-info-block a:hover { color: var(--ocean-500); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--ocean-900); color: rgba(255,255,255,0.7); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand-text { font-family: var(--font-brand); font-weight: 800; font-size: 1.2rem; color: #fff; letter-spacing: 0.2em; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-links a { display: block; padding: 0.25rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-400); }
.footer-location h5 { color: var(--gold-400); font-size: 0.8rem; margin-bottom: 0.25rem; }
.footer-location p { font-size: 0.85rem; margin-bottom: 0.75rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.footer-slogan { color: var(--gold-400); font-weight: 700; letter-spacing: 0.15em; font-size: 0.75rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   SERVICE PAGES
   ============================================ */
.page-hero {
  position: relative; padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--ocean-900), var(--ocean-700));
  color: #fff;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.3;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,39,54,0.9), rgba(16,77,101,0.7)); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero .back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.page-hero .back-link:hover { color: #fff; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 700px; line-height: 1.7; }
.page-content { padding: 4rem 0; }
.page-content p { color: #555; line-height: 1.8; margin-bottom: 1.25rem; }
.page-content h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ocean-900); margin: 2rem 0 1rem; }
.page-content ul { margin: 1rem 0; padding-left: 1.5rem; }
.page-content li { color: #555; line-height: 1.8; margin-bottom: 0.5rem; position: relative; padding-left: 1.5rem; }
.page-content li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-500); font-weight: 700; }
.cta-banner {
  background: linear-gradient(135deg, var(--ocean-800), var(--ocean-900));
  padding: 3rem; border-radius: 12px; text-align: center; color: #fff; margin-top: 3rem;
}
.cta-banner h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }

/* ============================================
   QUOTE FORM PAGE
   ============================================ */
.quote-form { max-width: 800px; margin: 0 auto; }
.form-section-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--ocean-900); margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--ocean-100); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================
   CAREERS PAGE
   ============================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.benefit-card {
  background: #fff; padding: 1.5rem; border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); border-left: 3px solid var(--gold-500);
}
.benefit-card h4 { color: var(--ocean-900); margin-bottom: 0.25rem; }
.benefit-card p { font-size: 0.9rem; color: #666; }
.job-card {
  background: #fff; border-radius: 12px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 2rem;
  border-top: 3px solid var(--ocean-700);
}
.job-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ocean-900); margin-bottom: 0.5rem; }
.job-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.job-meta span { font-size: 0.8rem; padding: 0.25rem 0.75rem; background: var(--ocean-50); border-radius: 20px; color: var(--ocean-700); }

/* ============================================
   LINKS PAGE
   ============================================ */
.links-category { margin-bottom: 3rem; }
.links-category h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ocean-900); margin-bottom: 1rem; }
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.link-card {
  background: #fff; padding: 1.25rem; border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: transform 0.2s;
  border-left: 3px solid var(--ocean-500);
}
.link-card:hover { transform: translateY(-2px); }
.link-card h4 { color: var(--ocean-800); margin-bottom: 0.25rem; }
.link-card p { font-size: 0.85rem; color: #888; }
.link-card a { color: var(--ocean-600); font-weight: 600; font-size: 0.85rem; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 2rem 0; }
.gallery-item { border-radius: 8px; overflow: hidden; cursor: pointer; transition: transform 0.2s; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; }
.gallery-caption { padding: 0.5rem; font-size: 0.85rem; color: #666; text-align: center; background: var(--ocean-50); }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  padding: 1rem 1.5rem;
}
.cookie-banner.active { display: block; }
.cookie-inner {
  max-width: 700px; margin: 0 auto; background: #fff;
  border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  overflow: hidden;
}
.cookie-header {
  background: var(--ocean-900); padding: 0.75rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
}
.cookie-close { background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 1.2rem; }
.cookie-body { padding: 1.25rem; }
.cookie-body p { font-size: 0.9rem; color: var(--ocean-700); margin-bottom: 1rem; }
.cookie-category {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--ocean-50); padding: 0.6rem 1rem; border-radius: 6px; margin-bottom: 0.5rem;
}
.cookie-category strong { font-size: 0.9rem; color: var(--ocean-800); }
.cookie-category small { font-size: 0.75rem; color: var(--ocean-500); }
.cookie-tag { font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 10px; font-weight: 600; }
.cookie-tag.always { background: var(--ocean-100); color: var(--ocean-600); }
.cookie-tag.optional { background: rgba(212,145,42,0.1); color: var(--gold-500); }
.cookie-buttons { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.cookie-btn-accept {
  flex: 1; padding: 0.75rem; background: var(--gold-500); color: #fff;
  font-weight: 700; text-transform: uppercase; font-size: 0.8rem;
  letter-spacing: 0.08em; border: none; border-radius: 6px; cursor: pointer;
}
.cookie-btn-accept:hover { background: var(--gold-600); }
.cookie-btn-reject {
  flex: 1; padding: 0.75rem; background: var(--ocean-100); color: var(--ocean-700);
  font-weight: 700; text-transform: uppercase; font-size: 0.8rem;
  letter-spacing: 0.08em; border: none; border-radius: 6px; cursor: pointer;
}
.cookie-btn-reject:hover { background: var(--ocean-200); }
.cookie-privacy { text-align: center; margin-top: 0.5rem; }
.cookie-privacy a { font-size: 0.75rem; color: var(--ocean-400); text-decoration: underline; }

/* ============================================
   LEGAL BOTTOM BAR
   ============================================ */
.legal-bar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  z-index: 100; display: flex; gap: 0.5rem; padding: 0.5rem;
}
.legal-bar a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; background: rgba(8,39,54,0.85); color: rgba(255,255,255,0.8);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; border-radius: 6px; backdrop-filter: blur(10px);
  transition: background 0.2s;
}
.legal-bar a:hover { background: rgba(8,39,54,0.95); color: #fff; }

/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none; padding: 1rem; background: #d4edda; color: #155724;
  border-radius: 6px; margin-bottom: 1rem; font-weight: 600;
}
.form-success.active { display: block; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s, transform 0.6s; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s, transform 0.6s; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .brand-globe { width: 52px; height: 52px; }
  .brand-text { font-size: 1.35rem; letter-spacing: 0.14em; }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Proske Stiftung footer link */
.footer-partner {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-partner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  background: rgba(255,255,255,0.94);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-partner a:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.footer-partner-logo {
  display: block;
  height: 54px;
  width: auto;
  max-width: 190px;
}
@media (max-width: 768px) {
  .footer-partner-logo { height: 46px; max-width: 165px; }
}

/* Proske Stiftung footer link: neutral external-link presentation */
.footer-partner {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-partner a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.8rem;
  background: rgba(255,255,255,0.94);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  max-width: min(100%, 520px);
}
.footer-partner a:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.footer-partner-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 165px;
  flex: 0 0 auto;
}
.footer-partner-note {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}
.footer-partner-note strong {
  color: var(--ocean-900);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-partner-note span {
  color: #4d5b63;
  font-size: 0.76rem;
}
@media (max-width: 768px) {
  .footer-partner a {
    flex-direction: column;
    gap: 0.45rem;
    text-align: center;
  }
  .footer-partner-logo { height: 42px; max-width: 150px; }
  .footer-partner-note { text-align: center; }
}

