/* 
  AI-Version 3 (New): Garage Car-House Seftigen
  Strategy: Clean Swiss Graphic Design, Authentic Local German Copy, Logo Morphing Transition
  Typography: Inter (Unified Swiss Sans-Serif)
  Color Palette: Swiss Garage Blue (#174b8b), Pure White (#ffffff), Soft Pearl (#f8fafc), Dark Slate (#0f172a)
*/

:root {
  --brand-blue: #174b8b;
  --brand-blue-dark: #103462;
  --brand-blue-light: #eef5ff;
  
  --accent-orange: #f97316;
  --accent-orange-hover: #ea580c;

  --bg-white: #ffffff;
  --bg-pearl: #f8fafc;
  --bg-slate: #f1f5f9;

  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;

  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-blue: rgba(23, 75, 139, 0.2);

  --font-family: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-card: 12px;
  --radius-btn: 8px;

  --shadow-subtle: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 15px 35px rgba(23, 75, 139, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-pearl);
  color: var(--text-dark);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  padding-bottom: 60px;
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--brand-blue-dark);
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.dot-sep { margin: 0 6px; opacity: 0.4; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(23, 75, 139, 0.25);
}

.btn-primary:hover {
  background: var(--brand-blue-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 75, 139, 0.35);
}

.btn-secondary {
  background: var(--bg-slate);
  color: var(--text-dark);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: #e2e8f0;
  color: var(--text-dark);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Top Bar */
.top-bar {
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-link {
  color: #ffffff;
  font-weight: 500;
}

/* Header & Logo Morphing Elements */
.navbar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

/* Morphing Logo Wrap */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo-wrap.morphed-in {
  opacity: 1;
  transform: translateX(0);
}

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* Hero Section with Prominent Logo Canvas */
.hero-section {
  background: var(--bg-white);
  padding: 60px 0 70px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero-logo-box {
  display: inline-block;
  padding: 16px 28px;
  background: var(--bg-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-blue);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.hero-logo-box:hover {
  transform: scale(1.03);
}

.hero-logo-img {
  height: 68px;
  width: auto;
}

.hero-subbadge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.trust-card {
  background: var(--bg-pearl);
  padding: 18px 20px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-card i {
  font-size: 1.4rem;
  color: var(--brand-blue);
}

.trust-card strong {
  display: block;
  font-size: 0.9rem;
}

.trust-card small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 40px auto;
}

.section-tag {
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 6px;
}

.section-head h2 {
  font-size: 2.1rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 8px;
}

/* Benefits Grid */
.benefits-section {
  background: var(--bg-pearl);
}

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

.benefit-card {
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-hover);
}

.b-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service Interactive Tabs */
.services-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab-btn {
  padding: 12px 20px;
  border-radius: 50px;
  background: var(--bg-pearl);
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(23, 75, 139, 0.25);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-pearl);
  padding: 36px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
}

.tab-text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.tab-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.tab-list {
  list-style: none;
  margin-bottom: 24px;
}

.tab-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.tab-img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* Team Section */
.team-section {
  background: var(--bg-pearl);
}

.team-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.team-img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.team-text h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.team-lead {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.local-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.local-card {
  background: var(--bg-white);
  padding: 14px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.local-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.local-card strong {
  display: block;
  font-size: 0.88rem;
}

.local-card small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Contact Section */
.contact-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-subtle);
}

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

.contact-card, .map-card {
  background: var(--bg-pearl);
  padding: 32px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
}

.contact-card-head h3 {
  font-size: 1.4rem;
  color: var(--brand-blue);
}

.contact-card-head p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.c-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.c-row i {
  color: var(--brand-blue);
  font-size: 1.1rem;
  margin-top: 3px;
}

.c-row strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.phone-highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.hours-card {
  background: var(--bg-white);
  padding: 18px;
  border-radius: var(--radius-card);
  margin-top: 24px;
  border: 1px solid var(--border-subtle);
}

.hours-card h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.h-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.h-line span {
  color: var(--text-muted);
}

.map-box {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

/* Footer */
.footer {
  background: var(--brand-blue);
  color: #ffffff;
  padding: 40px 0 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: 42px;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.footer-info p, .footer-meta p {
  color: #e2e8f0;
  font-size: 0.88rem;
}

.footer-legal a {
  color: #ffffff;
}

/* Mobile Sticky Bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 8px 12px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--brand-blue);
  color: #ffffff;
  font-weight: 700;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .hero-trust-cards, .benefits-grid, .team-grid, .contact-grid, .tab-grid {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 2.1rem; }
  .nav-links { display: none; }
  .mobile-call-bar { display: block; }
}
