/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://www.schlosshelden247.de
 Description:  Child Theme für Schlosshelden Schlüsseldienst Mannheim
 Template:     generatepress
 Version:      1.1.0
*/

/* ============================================================
   GLOBALE DESIGN-VARIABLEN & BASIS
   ============================================================ */
:root {
  --primary: #0a1128;
  --secondary: #1282a2;
  --accent: #fecb00;
  --whatsapp: #25d366;
  --text-light: #fefcfb;
  --text-dark: #0a1128;
  --gray-light: #f4f4f9;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  background-color: var(--text-light);
}

/* ============================================================
         GENERATEPRESS HEADER ANPASSUNGEN
         ============================================================ */
.site-header {
  background: white;
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 9000;
}

.site-header .inside-header {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

/* Damit der Content nicht unter dem fixed Header verschwindet */
.site-main,
#sh-custom-wrapper {
  margin-top: 0;
}

/* Abstand kompensieren – Höhe des Headers ca. 80px */
.site-content {
  padding-top: 0 !important;
}

.main-navigation a {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 0.85rem;
}

.main-navigation a:hover {
  color: var(--secondary) !important;
}

.site-logo img,
.custom-logo {
  height: 60px !important;
  width: auto !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-weight: 800;
}

/* ============================================================
         UNTERSEITEN CONTENT-BEREICH
         ============================================================ */
.entry-content {
  line-height: 1.8;
  font-size: 1rem;
}

.entry-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 1.5rem;
  color: var(--secondary);
}

.entry-content strong {
  color: var(--primary);
}
.entry-content a {
  color: var(--secondary);
  text-decoration: underline;
}
.entry-content a:hover {
  color: var(--primary);
}

/* ============================================================
         LAYOUT-FIXES
         ============================================================ */
.site-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.inside-article,
.entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

.featured-image,
.page-header-image {
  display: none !important;
}

/* ============================================================
         #sh-custom-wrapper BASIS
         ============================================================ */
#sh-custom-wrapper {
  --primary: #0a1128;
  --secondary: #1282a2;
  --accent: #fecb00;
  --whatsapp: #25d366;
  --text-light: #fefcfb;
  --text-dark: #0a1128;
  --gray-light: #f4f4f9;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  background-color: var(--text-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  position: relative;
  width: 100%;
}

/* Seitenweite Fixes */
.page .wp-post-image {
  display: none !important;
}

/* Emoji Fix */
#sh-custom-wrapper img.emoji {
  display: inline-block !important;
  width: 1.4em !important;
  height: 1.4em !important;
  min-width: 1.4em !important;
  max-width: 1.4em !important;
  margin: 0 6px 0 0 !important;
  padding: 0 !important;
  vertical-align: middle !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* Emoji Fix global */
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1.2em !important;
  width: 1.2em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

#sh-custom-wrapper .icon-span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  font-size: 1.4rem !important;
  margin-right: 10px !important;
  line-height: 1 !important;
}

#sh-custom-wrapper h3 {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

#sh-custom-wrapper h3 span {
  width: auto !important;
  height: auto !important;
  display: inline-block !important;
}

/* ============================================================
         ANIMATIONEN
         ============================================================ */
@keyframes sh-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 203, 0, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(254, 203, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 203, 0, 0);
  }
}

#sh-custom-wrapper .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

#sh-custom-wrapper .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
         TRUST RIBBON
         ============================================================ */
#sh-custom-wrapper .trust-ribbon {
  background: linear-gradient(90deg, #ffffff 0%, #f8fafc 100%);
  color: var(--primary);
  text-align: center;
  padding: 12px 5%;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 100px;
}

#sh-custom-wrapper .rating-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

#sh-custom-wrapper .stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

#sh-custom-wrapper .verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 130, 162, 0.08);
  padding: 5px 15px;
  border-radius: 50px;
  color: var(--secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

/* ============================================================
         BUTTONS
         ============================================================ */
#sh-custom-wrapper .cta-btn {
  background: var(--accent);
  color: var(--text-dark);
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.cta-btn .emoji {
  margin: 0 !important;
}

#sh-custom-wrapper .cta-btn:hover {
  background: var(--accent) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(254, 203, 0, 0.4);
  color: var(--text-dark) !important;
}

#sh-custom-wrapper .whatsapp-btn {
  background: var(--whatsapp);
  color: white;
}

#sh-custom-wrapper .whatsapp-btn:hover {
  background: var(--whatsapp) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  color: white !important;
}

/* ============================================================
         SECTION HEADER
         ============================================================ */
#sh-custom-wrapper .section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

#sh-custom-wrapper .section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.2;
}

#sh-custom-wrapper .section-header p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
         HERO
         ============================================================ */
#sh-custom-wrapper .hero {
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 5%;
  color: white;
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-mannheim {
  background-image:
    linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)),
    url("https://www.schlosshelden247.de/wp-content/uploads/2025/09/mannheim-schlusseldienst-24h-service.webp");
}

.hero-bensheim {
  background-image:
    linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)),
    url("https://www.schlosshelden247.de/wp-content/uploads/2026/05/maria-ziegler-1AmEImwtnFk-unsplash.jpg.webp");
}

.hero-notdienst-mannheim {
  background-image:
    linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)),
    url("https://www.schlosshelden247.de/wp-content/uploads/2026/05/Bildschirmfoto-2026-05-10-um-20.26.52.jpg.webp");
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #2ecc71;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}

.availability-dot {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.availability-dot::before,
.availability-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2ecc71;
}

.availability-dot::after {
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

#sh-custom-wrapper .hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  max-width: 1000px;
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

#sh-custom-wrapper .hero p {
  font-size: 1.2rem;
  max-width: 800px;
  opacity: 0.95;
  font-weight: 300;
  margin-bottom: 30px;
}

#sh-custom-wrapper .hero .cta-group {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
         TRUST BAR
         ============================================================ */
#sh-custom-wrapper .trust-bar {
  background: white;
  padding: 30px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: -40px auto 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
  border: 1px solid #f1f5f9;
}

#sh-custom-wrapper .trust-item {
  padding: 15px;
  border-right: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sh-custom-wrapper .trust-item:last-child {
  border-right: none;
}

#sh-custom-wrapper .trust-item h4 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 900;
  display: block;
}

#sh-custom-wrapper .trust-item p {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
         VISUAL SPLIT
         ============================================================ */
#sh-custom-wrapper .visual-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: white;
  padding-top: 80px;
  width: 100%;
}

#sh-custom-wrapper .visual-split .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#sh-custom-wrapper .visual-split .content-side {
  padding: 80px 10%;
}

#sh-custom-wrapper .visual-split h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 800;
}

/* ============================================================
         PREISTABELLE
         ============================================================ */
#sh-custom-wrapper .price-section {
  padding: 100px 5%;
  background: var(--gray-light);
  width: 100%;
}

#sh-custom-wrapper .price-container {
  max-width: 900px;
  margin: auto;
}

#sh-custom-wrapper .price-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: table;
}

#sh-custom-wrapper .price-table th,
#sh-custom-wrapper .price-table td {
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

#sh-custom-wrapper .price-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

#sh-custom-wrapper .price-table tr:last-child td {
  border-bottom: none;
}
#sh-custom-wrapper .price-table td:first-child {
  font-weight: 500;
  color: #555;
}
#sh-custom-wrapper .price-table strong {
  color: #333;
  font-size: 1rem;
}
#sh-custom-wrapper .price-table small {
  color: #666;
  font-size: 0.85rem;
}

#sh-custom-wrapper .mobile-price-cards {
  display: none;
  width: 100%;
}

#sh-custom-wrapper .price-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-left: 4px solid var(--secondary);
}

#sh-custom-wrapper .price-card:last-child {
  margin-bottom: 0;
}

#sh-custom-wrapper .price-card-item {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

#sh-custom-wrapper .price-card-item:last-child {
  margin-bottom: 0;
}

#sh-custom-wrapper .price-card-label {
  font-weight: 600;
  color: #333;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

#sh-custom-wrapper .price-card-value {
  color: #555;
  font-size: 1rem;
}
#sh-custom-wrapper .price-card-value strong {
  color: #333;
}
#sh-custom-wrapper .price-card-value small {
  display: block;
  color: #666;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ============================================================
         SERVICES
         ============================================================ */
#sh-custom-wrapper .services {
  padding: 100px 5%;
  max-width: 1300px;
  margin: auto;
  width: 100%;
}

#sh-custom-wrapper .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#sh-custom-wrapper .service-card {
  background: white;
  border-radius: 24px;
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
}

#sh-custom-wrapper .service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

#sh-custom-wrapper .service-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#sh-custom-wrapper .service-card h3 {
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 1.4rem;
}

#sh-custom-wrapper .service-card p {
  flex-grow: 1;
  margin-bottom: 30px;
  color: #555;
  font-size: 0.95rem;
}

#sh-custom-wrapper .service-cta {
  background: var(--primary);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: auto;
  border: none;
  cursor: pointer;
  display: block;
}

#sh-custom-wrapper .service-cta:hover {
  background: var(--accent);
  color: var(--text-dark);
  transform: scale(1.02);
}

#sh-custom-wrapper .services-hub-link-main {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: var(--secondary);
  font-weight: 800;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  transition: var(--transition);
}

/* ============================================================
     PORTIONS LAYOUT (City/Service Landing Pages)
     ============================================================ */
#sh-custom-wrapper .portions-container {
  max-width: 1300px;
  margin: 0 auto 100px;
  padding: 0 5%;
}

#sh-custom-wrapper .portion-block {
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  transition: var(--transition);
}

#sh-custom-wrapper .portion-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

#sh-custom-wrapper .portion-content {
  flex: 1.4;
  padding: 60px;
  text-align: center;
}

#sh-custom-wrapper .portion-content .icon-span {
  font-size: 2.2rem !important;
  display: inline-flex !important;
  margin-bottom: 15px !important;
  margin-right: 0 !important;
  color: var(--secondary);
}

#sh-custom-wrapper .portion-block h3 {
  color: var(--primary);
  font-size: 1.8rem !important;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: center;
  display: block !important;
}

#sh-custom-wrapper .portion-block p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.7;
  text-align: center;
}

#sh-custom-wrapper .portion-sidebar {
  flex: 1;
  padding: 60px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #f1f5f9;
  text-align: center;
}

#sh-custom-wrapper .trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sh-custom-wrapper .trust-list li {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: center;
}

#sh-custom-wrapper .trust-list li:last-child {
  margin-bottom: 0;
}

/* ============================================================
         TESTIMONIALS
         ============================================================ */
#sh-custom-wrapper .testimonials {
  background: var(--primary);
  color: white;
  padding: 100px 5%;
  width: 100%;
}

#sh-custom-wrapper .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

#sh-custom-wrapper .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
}

/* ============================================================
         FAQ
         ============================================================ */
#sh-custom-wrapper .faq-section {
  padding: 100px 5%;
  background: #fff;
  max-width: 1000px;
  margin: auto;
  width: 100%;
}

#sh-custom-wrapper .faq-container {
  display: grid;
  gap: 15px;
  margin-top: 40px;
}

#sh-custom-wrapper .faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

#sh-custom-wrapper .faq-item summary {
  padding: 20px 25px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}

#sh-custom-wrapper .faq-item summary::-webkit-details-marker {
  display: none;
}

#sh-custom-wrapper .faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

#sh-custom-wrapper .faq-item details[open] summary::after {
  content: "−";
}

#sh-custom-wrapper .faq-content {
  padding: 20px 25px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid #e2e8f0;
  background: white;
}

/* ============================================================
         EXPERIENCE / TRUST BLOCK
         ============================================================ */
#sh-custom-wrapper .experience-trust-block {
  padding: 80px 5%;
  background: white;
  width: 100%;
}

#sh-custom-wrapper .experience-trust-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  background: var(--gray-light);
  border-radius: 24px;
  border-left: 8px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

#sh-custom-wrapper .experience-trust-container h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 900;
  line-height: 1.2;
}

#sh-custom-wrapper .experience-trust-container p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 20px;
}

#sh-custom-wrapper .experience-trust-container strong {
  color: var(--primary);
  font-weight: 800;
}

#sh-custom-wrapper .experience-highlight {
  color: #d32f2f;
  font-weight: 900;
}

/* ============================================================
         STANDORTE
         ============================================================ */
#sh-custom-wrapper .locations-detailed {
  padding: 100px 5%;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  width: 100%;
}

#sh-custom-wrapper .loc-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 50px auto 0;
  max-width: 1400px;
}

#sh-custom-wrapper .loc-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
}

#sh-custom-wrapper .loc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transition: var(--transition);
}

#sh-custom-wrapper .loc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

#sh-custom-wrapper .loc-card:hover::before {
  background: var(--accent);
}

#sh-custom-wrapper .loc-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 800;
}

#sh-custom-wrapper .loc-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

#sh-custom-wrapper .loc-hub-link {
  display: block;
  text-align: center;
  margin-top: 50px;
  font-weight: 800;
  color: var(--secondary);
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  transition: var(--transition);
}

/* ============================================================
         CUSTOM FOOTER
         ============================================================ */
.sh-site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  padding: 80px 5% 40px;
}

.sh-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.sh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.sh-footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sh-footer-logo-box {
  background: white;
  padding: 12px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.sh-footer-logo-box img {
  height: 45px;
  width: auto;
  display: block;
}

.sh-nap-info p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.sh-nap-info a {
  color: var(--accent);
  text-decoration: none;
}

.sh-footer-links {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.sh-footer-links li {
  margin-bottom: 10px;
  list-style: none !important;
}
.sh-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.sh-footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.sh-footer-map-container {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.sh-footer-bottom {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.sh-footer-bottom p {
  margin: 0;
}

/* ============================================================
         EMERGENCY BANNER
         ============================================================ */
.sh-emergency-banner {
  background: var(--accent);
  color: var(--primary);
  padding: 14px 20px;
  font-weight: 900;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  font-family: "Inter", sans-serif;
}

.sh-emergency-banner a {
  color: white;
  background: var(--primary);
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: 0.3s;
}

.sh-emergency-banner a:hover {
  background: var(--secondary);
}

/* ============================================================
         RESPONSIVE
         ============================================================ */
@media (max-width: 1200px) {
  .sh-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .sh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  #sh-custom-wrapper .portion-block {
    flex-direction: column;
  }
  #sh-custom-wrapper .portion-sidebar {
    border-left: none;
    border-top: 1px solid #f1f5f9;
    padding: 40px;
  }
  #sh-custom-wrapper .portion-content {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  #sh-custom-wrapper .visual-split {
    grid-template-columns: 1fr;
  }
  #sh-custom-wrapper .visual-split .image-side {
    order: -1;
  }
  #sh-custom-wrapper .service-grid {
    grid-template-columns: 1fr;
  }
  #sh-custom-wrapper .loc-grid-5 {
    grid-template-columns: 1fr 1fr;
  }
  #sh-custom-wrapper .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
  }
  #sh-custom-wrapper .trust-item {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 10px;
  }
  #sh-custom-wrapper .trust-item:last-child {
    border-bottom: none;
  }

  #sh-custom-wrapper .trust-ribbon {
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 15px 5% !important;
  }
}

@media (max-width: 768px) {
  #sh-custom-wrapper .hero {
    padding: 80px 5%;
  }
  #sh-custom-wrapper .section-header {
    margin-bottom: 40px;
  }

  #sh-custom-wrapper .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    margin: -30px auto 15px;
  }
  #sh-custom-wrapper .trust-item {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
  #sh-custom-wrapper .trust-item:last-child,
  #sh-custom-wrapper .trust-item:nth-last-child(2) {
    border-bottom: none;
  }

  #sh-custom-wrapper .rating-group {
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }

  #sh-custom-wrapper .verification-badge {
    font-size: 0.68rem !important;
  }

  #sh-custom-wrapper .hero .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }
  #sh-custom-wrapper .hero .cta-btn {
    width: 100%;
  }
  #sh-custom-wrapper .loc-grid-5 {
    grid-template-columns: 1fr;
  }

  #sh-custom-wrapper .price-table {
    display: none;
  }
  #sh-custom-wrapper .mobile-price-cards {
    display: block;
  }
  #sh-custom-wrapper .price-card {
    padding: 1.25rem;
  }

  #sh-custom-wrapper .experience-trust-block {
    padding: 50px 5%;
  }
  #sh-custom-wrapper .experience-trust-container {
    padding: 30px 20px;
  }

  .sh-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sh-footer-logo-box {
    margin: 0 auto 20px;
  }
  .sh-emergency-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  #sh-custom-wrapper .hero {
    padding: 60px 5%;
  }
  #sh-custom-wrapper .trust-bar {
    grid-template-columns: 1fr;
    margin: -20px auto 10px;
  }
  #sh-custom-wrapper .trust-item {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }
  #sh-custom-wrapper .trust-item:last-child {
    border-bottom: none;
  }
  #sh-custom-wrapper .price-card {
    padding: 1rem;
  }
  #sh-custom-wrapper .portion-content,
  #sh-custom-wrapper .portion-sidebar {
    padding: 30px 20px;
  }
}

/* ── Process Steps -─ */
.process-section {
  padding: 70px 20px;
  background: #fff;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 40px auto 0;
}
.process-step {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary, #1a1a2e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 18px;
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary, #1a1a2e);
  justify-content: center;
}
.process-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.process-arrow {
  font-size: 2rem;
  color: var(--accent, #f0a500);
  align-self: center;
  padding: 0 4px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .process-arrow {
    display: none;
  }
  .process-step {
    max-width: 100%;
    border-bottom: 1px solid #eee;
  }
  .process-step:last-child {
    border-bottom: none;
  }
}

/* ── Situation Cards (ohne Bild) ── */
.service-card.no-img .service-card-body {
  padding-top: 28px;
}

/* Header Phone CTA */
.header-phone-cta {
  display: flex;
  align-items: center;
}

.header-phone-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e63946; /* deine Akzentfarbe */
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.2s;
}

.header-phone-cta a:hover {
  background: #c1121f;
}

.phone-icon {
  font-size: 1.2rem;
}

.phone-text {
  font-size: 1.1rem;
}

.phone-label {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Nur auf Desktop anzeigen */
@media (max-width: 768px) {
  .header-phone-cta {
    display: none;
  }
}
