/* ============================================
   03-affentransport – Bold Typography
   Mobile-First · Unique Design · No Boxes
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Archivo+Black:wght@500;600;700&display=swap');

:root {
  --primary: #1a1a1a;
  --primary-dark: #000;
  --accent: #ff6b35;
  --bg: #fffef9;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --touch-target: 44px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  background: #fffef9;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  overflow-x: hidden;
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--primary);
  color: white;
  padding: 1rem 1.25rem;
  padding-top: calc(1rem + env(safe-area-inset-top));
}

.nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}

.logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 1.25rem;
}

.logo-icon {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--primary-dark);
  border-radius: 0;
  font-weight: 700; font-size: 0.9rem;
}

.nav-links a, .dropdown-trigger {
  display: flex; align-items: center;
  padding: 0.875rem 1rem; min-height: 44px;
  color: white; font-weight: 500; transition: background 0.2s;
  border: none; background: transparent; font-family: inherit;
  font-size: 1rem; cursor: pointer; width: 100%; text-align: left;
}
.nav-links a:hover, .nav-links a:focus { background: rgba(255,255,255,0.1); }
.dropdown-trigger { justify-content: space-between; }

.dropdown-menu a { color: var(--text); }
.dropdown-menu a:hover { background: var(--bg); color: var(--primary); }

@media (min-width: 640px) {
  .dropdown-menu { background: white; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); padding: 0.5rem 0; }
}

/* Hero */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 1.5rem 6rem; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  z-index: 0; 
}

.hero-shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.hero-shape-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; right: -100px; }
.hero-shape-2 { width: 300px; height: 300px; background: white; bottom: 20%; left: -50px; }
.hero-shape-3 { width: 200px; height: 200px; background: var(--accent); bottom: -50px; right: 20%; }

.hero-content {
  position: relative; z-index: 1; max-width: 720px; text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: rgba(255,255,255,0.15);
  border-radius: 100px; font-size: 0.875rem; font-weight: 500;
  margin-bottom: 1.5rem; backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.25rem, 8vw, 4rem); font-weight: 700;
  line-height: 1.15; color: white; margin-bottom: 1.25rem;
}

.hero-highlight { color: var(--accent); display: block; margin-top: 0.25rem; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.92); line-height: 1.6; margin-bottom: 0.75rem; }
.hero-price { font-size: 1rem; color: var(--accent); font-weight: 600; margin-bottom: 2rem; }

.btn-primary {
  background: var(--accent); color: var(--primary-dark);
}
.btn-primary:hover, .btn-primary:focus {
  filter: brightness(1.1); transform: translateY(-2px);
}

.btn-secondary { background: white; color: var(--primary); }
.btn-secondary:hover, .btn-secondary:focus { background: rgba(255,255,255,0.95); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover, .btn-ghost:focus { border-color: white; background: rgba(255,255,255,0.1); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover, .btn-outline:focus { background: var(--primary); color: white; transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.75rem;
}

.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.5); }
}

/* Stats */
.stats {
  padding: 3rem 1.5rem;
  background: var(--white);
}

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

.section-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}

.section h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
  color: var(--primary); margin-bottom: 2rem; text-align: center;
}

.section-intro {
  text-align: center; max-width: 600px; margin: 0 auto 2rem;
  color: var(--text-muted);
}

/* Services */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  padding: 2rem 0; border: none; background: transparent;
  border-bottom: 3px solid var(--accent); border-radius: 0;
  transition: 0.3s ease;
}
.service-card:hover { border-bottom-color: var(--primary); padding-left: 1rem; }
.service-icon-wrap {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--accent); font-size: 2rem; margin-bottom: 1rem;
}
.service-icon { font-size: 2rem; }
.service-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.service-card p { opacity: 0.85; line-height: 1.6; }

/* Process */
.process {
  padding: 3rem 1.5rem;
  background: rgba(0,0,0,0.03);
}
@media (min-width: 640px) {
  .process-step { padding-left: 0; text-align: center; }
  .process-num { position: static; display: block; margin-bottom: 0.5rem; }
}

/* Cities */

.city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.city-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 1rem; min-height: 100px;
  background: transparent; border: none; border-bottom: 3px solid var(--accent);
  border-radius: 0; transition: 0.3s ease;
}
.city-card:hover, .city-card:focus {
  border-bottom-color: var(--primary); color: var(--primary);
}
.city-card-badge { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; opacity: 0.9; }
.city-card-label { font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; }
.city-card-highlight { border-bottom-color: var(--accent); }
.city-card-highlight .city-card-badge { color: var(--accent); }

.trust-bar { padding: 1.5rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: white; font-weight: 500; }
.trust-icon { color: var(--accent); }

.why-section { background: rgba(0,0,0,0.03); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }
.why-item { padding: 1.5rem; background: var(--white); border-left: 4px solid var(--accent); }
.why-num { display: block; font-weight: 800; font-size: 2rem; color: var(--accent); margin-bottom: 0.5rem; }
.why-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

.umzugstypen-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .umzugstypen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .umzugstypen-grid { grid-template-columns: repeat(4, 1fr); } }
.umzugstypen-card { padding: 1.5rem; background: var(--white); border-left: 4px solid var(--accent); text-align: center; transition: 0.3s ease; }
.umzugstypen-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.umzugstypen-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.umzugstypen-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.umzugstypen-card p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

.routes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .routes-grid { grid-template-columns: repeat(3, 1fr); } }
.route-card { display: flex; flex-direction: column; gap: 0.25rem; padding: 1.5rem; background: var(--white); border-left: 4px solid var(--accent); transition: 0.3s ease; }
.route-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.route-card-highlight { border-left-color: var(--accent); }
.route-arrow { font-size: 1.5rem; color: var(--accent); }
.route-from, .route-to { font-weight: 700; }
.route-badge { font-size: 0.75rem; opacity: 0.8; }
.routes-featured { background: rgba(0,0,0,0.02); }

.region-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .region-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .region-cards { grid-template-columns: repeat(4, 1fr); } }
.region-card { padding: 2rem; background: var(--white); border-left: 4px solid var(--accent); transition: 0.3s ease; }
.region-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.region-card h3 { margin-bottom: 0.5rem; }
.region-card p { font-size: 0.9rem; opacity: 0.9; margin: 0; }
.region-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }

.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { padding: 2rem; background: var(--white); border-left: 4px solid var(--accent); }
.testimonial-card p { font-style: italic; margin-bottom: 1rem; }
.testimonial-card footer { margin-top: 0; }
.testimonial-card cite { font-style: normal; font-size: 0.85rem; opacity: 0.8; }

.faq-snippet-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .faq-snippet-grid { grid-template-columns: repeat(2, 1fr); } }
.faq-snippet-item { padding: 1.5rem; background: var(--white); border-left: 4px solid var(--accent); }
.faq-snippet-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.faq-snippet-item p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

.contact-direct-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.contact-direct-item { display: flex; flex-direction: column; align-items: center; padding: 2rem 2.5rem; min-width: 200px; background: var(--white); border-left: 4px solid var(--accent); transition: 0.3s ease; text-align: center; }
.contact-direct-item:hover { transform: scale(1.03); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.contact-direct-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.contact-direct-label { font-weight: 600; margin-bottom: 0.25rem; }
.contact-direct-desc { font-size: 0.9rem; opacity: 0.8; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; opacity: 0.9; }
.footer-col a { display: block; padding: 0.25rem 0; font-size: 0.95rem; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 0.8; }

.btn-ghost-dark { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost-dark:hover, .btn-ghost-dark:focus { background: var(--primary); color: white; transform: translateY(-2px); }

.dropdown-menu-wide { max-height: 70vh; overflow-y: auto; }
@media (min-width: 640px) {
  .city-grid { grid-template-columns: repeat(4, 1fr); }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 0;
}

/* Footer */
.footer {
  background: var(--primary-dark); color: white;
  padding: 2rem 1.5rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}

/* Page Content */
.page-content {
  max-width: 800px; margin: 0 auto; padding: 0 1rem;
}

.page-content h2 {
  font-family: 'Archivo Black', sans-serif;
  text-align: left; margin-top: 2rem; color: var(--primary);
}

.page-content p, .page-content ul {
  margin-bottom: 1rem; color: var(--text-muted);
}

.page-content ul { padding-left: 1.5rem; }

/* FAQ */
.faq-item { background: var(--white); border-radius: 0; }


/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  padding: 0.75rem 1.5rem; background: var(--primary); color: white;
  font-weight: 600; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  background: transparent; border: none; cursor: pointer; padding: 10px;
}
.nav-toggle-bar {
  display: block; width: 100%; height: 2px; background: currentColor;
  border-radius: 2px; transition: 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-links { display: none; list-style: none; gap: 0.5rem; }
.nav-links.is-open {
  display: flex; position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; padding: 1rem;
}
.dropdown-menu { display: none; list-style: none; padding-left: 1rem; }
.dropdown.is-open .dropdown-menu { display: block; }
.dropdown-menu a { padding: 0.75rem 1rem; min-height: 44px; display: flex; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 1.75rem; min-height: 44px; font-weight: 600; font-size: 1rem;
  transition: 0.3s ease; border: none; cursor: pointer; font-family: inherit;
}

.hero-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; gap: 2rem; }
.stat-item { text-align: center; }
.stat-number { display: block; font-weight: 700; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.9rem; opacity: 0.9; }

.process-grid { display: grid; gap: 2rem; }
.process-step { position: relative; }
.process-num { font-weight: 700; opacity: 0.7; }
.process-step h3 { margin-bottom: 0.25rem; }
.process-step p { font-size: 0.95rem; opacity: 0.9; }

.cta-banner { color: white; margin: 2rem 1.5rem; padding: 4rem 2rem; }
.cta-content { text-align: center; }
.cta-content h2 { color: inherit; margin-bottom: 1rem; }
.cta-content p { margin-bottom: 1.5rem; opacity: 0.95; }

.testimonial { padding: 3rem 1.5rem; }
.testimonial-quote { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-quote p { font-size: 1.5rem; font-style: italic; line-height: 1.6; }
.testimonial-quote footer { margin-top: 1rem; }
.testimonial-quote cite { font-style: normal; font-size: 0.9rem; opacity: 0.8; }

.about-content, .preise-content { text-align: center; max-width: 700px; margin: 0 auto; }
.about-content p, .preise-content p { margin-bottom: 1.5rem; }

.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 1rem 1.25rem; min-height: 44px; border: 2px solid rgba(0,0,0,0.1);
  font-family: inherit; font-size: 1rem; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--primary);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

.faq-item { padding: 1.5rem; margin-bottom: 1rem; }
.faq-item h3 { margin-bottom: 0.5rem; }
.legal-content { font-size: 0.95rem; line-height: 1.7; }
.legal-content h2 { font-size: 1.25rem; margin-top: 2rem; }

.hero-small { min-height: 40vh; padding: 4rem 1.5rem; display: flex; align-items: center; justify-content: center; }

.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.footer-logo { font-weight: 700; font-size: 1.25rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { transition: opacity 0.2s; }
.footer-links a:hover { opacity: 0.8; }
.footer-bottom { padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.9rem; opacity: 0.9; }
.footer-eu { margin-top: 0.5rem; font-size: 0.85rem; opacity: 0.8; }

.section-cta { text-align: center; margin-top: 2rem; }

@media (min-width: 640px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex; flex-direction: row; position: static; padding: 0;
  }
  .nav-links a, .dropdown-trigger { padding: 0.5rem 1rem; min-height: auto; width: auto; }
  .dropdown { position: relative; }
  .dropdown-trigger { display: flex; }
  .dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    padding-left: 0;
  }
  .dropdown-menu-wide { min-width: 280px; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-step { text-align: center; }
  .footer-top { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 768px) {
  .section { padding: 5rem 2rem; }
  .footer { padding: 3rem 2rem; }
}
@media (min-width: 900px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .header { padding: 1rem 2rem; }
  .hero { padding: 5rem 2rem 7rem; }
  .cta-banner { margin: 3rem auto; max-width: 1100px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

