/* ============================================
   freiraumschaffen24 – Custom Stylesheet
   Colors: Forest Green, Warm Brown, Bright Accents
   ============================================ */

:root {
  --gp-green:        #2e7d32;
  --gp-green-mid:    #388e3c;
  --gp-green-light:  #4caf50;
  --gp-green-pale:   #e8f5e9;
  --gp-green-xpale:  #f1f8e9;
  --gp-brown:        #5d4037;
  --gp-brown-mid:    #795548;
  --gp-brown-light:  #a1887f;
  --gp-brown-pale:   #efebe9;
  --gp-accent:       #8bc34a;
  --gp-accent2:      #ffc107;
  --gp-dark:         #1b5e20;
  --gp-text:         #333333;
  --gp-text-muted:   #6c757d;
  --gp-bg:           #fafafa;
  --gp-white:        #ffffff;
  --gp-radius:       12px;
  --gp-shadow:       0 4px 20px rgba(0,0,0,0.08);
  --gp-shadow-hover: 0 8px 30px rgba(46,125,50,0.18);
}

* { box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--gp-text);
  background: var(--gp-bg);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

.text-green  { color: var(--gp-green) !important; }
.text-brown  { color: var(--gp-brown) !important; }
.text-white-75 { color: rgba(255,255,255,0.75) !important; }

/* ============================================
   NAVBAR
   ============================================ */
.gp-navbar {
  background: linear-gradient(135deg, var(--gp-dark) 0%, var(--gp-green) 100%);
  padding: 0.6rem 0;
  transition: all 0.3s ease;
}

.gp-navbar.scrolled {
  padding: 0.4rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2) !important;
}

/* Logo */
.gp-navbar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 3px 7px;
}

.gp-navbar-brand-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.gp-footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 5px 10px;
}

/* Nav links */
.gp-navbar .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}
.gp-navbar .nav-link:hover,
.gp-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.12);
}

/* Dropdown */
.gp-dropdown {
  border: none;
  border-radius: var(--gp-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 280px;
  padding: 0.5rem 0;
  margin-top: 0 !important;  /* no gap so mouse can reach it */
}
.gp-dropdown .dropdown-item {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  color: var(--gp-text);
  transition: all 0.15s ease;
  border-radius: 6px;
  margin: 0 0.25rem;
}
.gp-dropdown .dropdown-item:hover {
  background: var(--gp-green-pale);
  color: var(--gp-green);
}
.gp-dropdown .dropdown-header {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gp-text-muted);
  padding: 0.5rem 1.25rem 0.25rem;
  font-weight: 700;
}
.gp-dropdown .dropdown-divider {
  margin: 0.25rem 0.75rem;
  border-color: var(--gp-green-pale);
}

/* CTA Button */
.gp-btn-cta {
  background: var(--gp-accent2);
  color: var(--gp-dark) !important;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.gp-btn-cta:hover {
  background: #ffca28;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}

/* ============================================
   BUTTONS
   ============================================ */
.gp-btn-primary {
  background: linear-gradient(135deg, var(--gp-green) 0%, var(--gp-green-mid) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.gp-btn-primary:hover {
  background: linear-gradient(135deg, var(--gp-dark) 0%, var(--gp-green) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.35);
}

.gp-btn-outline-light {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  background: transparent;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.gp-btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.gp-btn-white {
  background: #fff;
  color: var(--gp-green);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  transition: all 0.2s ease;
}
.gp-btn-white:hover {
  background: var(--gp-green-pale);
  color: var(--gp-dark);
  transform: translateY(-2px);
}

/* ============================================
   CAROUSEL
   ============================================ */
.gp-carousel-section { position: relative; }

.gp-carousel-bg {
  height: 620px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gp-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.35) 0%,
    rgba(20,20,20,0.55) 55%,
    rgba(20,20,20,0.75) 100%
  );
}

.gp-carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}

.gp-carousel-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.gp-carousel-caption h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.gp-carousel-caption .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
}

/* ============================================
   STATS BAR
   ============================================ */
.gp-stats-bar {
  background: var(--gp-brown);
}

.gp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gp-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gp-accent);
  line-height: 1;
}

.gp-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.gp-section-light { background: var(--gp-bg); }

.gp-section-green {
  background: linear-gradient(135deg, var(--gp-dark) 0%, var(--gp-green) 100%);
}

.gp-section-badge {
  display: inline-block;
  background: var(--gp-green-pale);
  color: var(--gp-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.gp-section-badge-light {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.gp-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gp-text);
  font-weight: 700;
}

.gp-section-title-white {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  font-weight: 700;
}

.gp-section-subtitle {
  color: var(--gp-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SERVICE CARDS (Home)
   ============================================ */
.gp-service-card {
  background: #fff;
  border-radius: var(--gp-radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--gp-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.gp-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gp-green), var(--gp-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.gp-service-card:hover::before {
  transform: scaleX(1);
}

.gp-service-icon {
  width: 56px;
  height: 56px;
  background: var(--gp-green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.25s ease;
}

.gp-service-card:hover .gp-service-icon {
  background: var(--gp-green);
}

.gp-service-icon .bi {
  font-size: 1.5rem;
  color: var(--gp-green);
  transition: color 0.25s ease;
}

.gp-service-card:hover .gp-service-icon .bi {
  color: #fff;
}

.gp-service-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gp-text);
  margin-bottom: 0.6rem;
}

.gp-service-desc {
  color: var(--gp-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

.gp-service-link {
  color: var(--gp-green);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  transition: gap 0.2s ease;
  gap: 2px;
}

.gp-service-link:hover {
  color: var(--gp-dark);
  gap: 6px;
}

/* ============================================
   FEATURE CARDS (Why Us Section)
   ============================================ */
.gp-feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--gp-radius);
  padding: 1.5rem;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.gp-feature-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

.gp-feature-icon {
  font-size: 1.75rem;
  color: var(--gp-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.gp-feature-card h6 { color: #fff; }
.gp-feature-card p { color: rgba(255,255,255,0.75); }

/* ============================================
   CONTACT INFO (Home)
   ============================================ */
.gp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gp-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gp-contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gp-green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gp-green);
  font-size: 1rem;
}

.gp-contact-info a {
  color: var(--gp-green);
  text-decoration: none;
  font-weight: 600;
}
.gp-contact-info a:hover { color: var(--gp-dark); }

/* ============================================
   CARDS
   ============================================ */
.gp-card {
  background: #fff;
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.gp-input {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.gp-input:focus {
  border-color: var(--gp-green-light);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.12);
  outline: none;
}

.gp-alert-success {
  background: var(--gp-green-pale);
  color: var(--gp-dark);
  border: 1px solid rgba(46,125,50,0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.gp-page-header {
  background: linear-gradient(135deg, var(--gp-dark) 0%, var(--gp-green) 100%);
  padding: 3.5rem 0 2.5rem;
}

.gp-breadcrumb {
  --bs-breadcrumb-color: rgba(255,255,255,0.65);
  --bs-breadcrumb-active-color: rgba(255,255,255,0.9);
  --bs-breadcrumb-divider-color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.gp-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.gp-breadcrumb a:hover { color: #fff; }

.gp-page-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.gp-page-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
}

/* ============================================
   SIDEBAR (Dienstleistungen)
   ============================================ */
.gp-sidebar {
  background: #fff;
  border-radius: var(--gp-radius);
  box-shadow: var(--gp-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  top: 90px;
  z-index: 10;  /* stay below navbar (z-index 1030) */
}

.gp-sidebar-header {
  background: linear-gradient(135deg, var(--gp-dark), var(--gp-green));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 1.25rem;
}

.gp-sidebar-nav {
  padding: 0.75rem;
}

.gp-sidebar-group {
  margin-bottom: 0.5rem;
}

.gp-sidebar-group-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gp-text-muted);
  font-weight: 700;
  padding: 0.6rem 0.75rem 0.3rem;
}

.gp-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  color: var(--gp-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 1px;
}

.gp-sidebar-link:hover {
  background: var(--gp-green-pale);
  color: var(--gp-green);
}

.gp-sidebar-link.active {
  background: var(--gp-green-pale);
  color: var(--gp-green);
  font-weight: 700;
  border-left: 3px solid var(--gp-green);
}

.gp-sidebar-link .bi {
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gp-green-mid);
}

.gp-sidebar-cta {
  background: var(--gp-green-xpale);
  border-top: 1px solid var(--gp-green-pale);
  padding: 1rem 1.25rem;
}

/* ============================================
   SERVICE DETAIL (Dienstleistungen Page)
   ============================================ */
.gp-service-detail-icon {
  width: 72px;
  height: 72px;
  background: var(--gp-green-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gp-service-detail-icon .bi {
  font-size: 2rem;
  color: var(--gp-green);
}

.gp-divider {
  border-color: var(--gp-green-pale);
}

.gp-subsection-title {
  color: var(--gp-text);
  font-family: 'Nunito', sans-serif;
}

.gp-feature-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--gp-text);
  padding: 0.5rem 0;
  line-height: 1.5;
}

.gp-cta-box {
  background: linear-gradient(135deg, var(--gp-green-pale), var(--gp-green-xpale));
  border: 1px solid rgba(46,125,50,0.15);
  border-radius: var(--gp-radius);
  padding: 1.5rem 2rem;
}

.gp-mini-service-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  color: var(--gp-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.gp-mini-service-card:hover {
  border-color: var(--gp-green-light);
  color: var(--gp-green);
  background: var(--gp-green-pale);
  transform: translateY(-2px);
  box-shadow: var(--gp-shadow);
}

.gp-mini-icon {
  font-size: 1.1rem;
  color: var(--gp-green);
  flex-shrink: 0;
}

.gp-service-description .lead {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.gp-contact-card {
  background: #fff;
  border-radius: var(--gp-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--gp-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

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

.gp-contact-card-icon {
  width: 64px;
  height: 64px;
  background: var(--gp-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: var(--gp-green);
  transition: all 0.25s ease;
}

.gp-contact-card:hover .gp-contact-card-icon {
  background: var(--gp-green);
  color: #fff;
}

.gp-contact-card-link {
  color: var(--gp-green);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.gp-contact-card-link:hover { color: var(--gp-dark); }

.gp-hours-table td {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

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

/* ============================================
   MODAL
   ============================================ */
.gp-modal {
  border-radius: var(--gp-radius);
  border: none;
  overflow: hidden;
}

.gp-modal-header {
  background: linear-gradient(135deg, var(--gp-dark) 0%, var(--gp-green) 100%);
  padding: 1.5rem 2rem;
  border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */
.gp-footer {
  background: linear-gradient(135deg, #0d2e0e 0%, #1b3d1c 100%);
}

.gp-footer-heading {
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(76,175,80,0.3);
  display: inline-block;
  margin-bottom: 1rem !important;
}

.gp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gp-footer-links li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.gp-footer-links li a:hover {
  color: var(--gp-accent);
}

.gp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gp-footer-contact li {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.gp-footer-contact li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gp-footer-contact li a:hover {
  color: var(--gp-accent);
}

.gp-footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 0;
}

.gp-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.gp-social-btn:hover {
  background: var(--gp-green-light);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   GOOGLE REVIEWS SCROLLING BAR
   ============================================ */
.gp-reviews-bar {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 3px solid #f0f0f0;
  overflow: hidden;
}

.gp-reviews-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

.gp-google-logo { flex-shrink: 0; }

.gp-reviews-header-text {
  font-weight: 700;
  font-size: 0.85rem;
  color: #444;
}

.gp-reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}

.gp-reviews-avg {
  font-size: 1rem;
  font-weight: 700;
  color: #444;
}

.gp-reviews-stars-sm {
  color: #fbbc05;
  font-size: 0.85rem;
  display: flex;
  gap: 1px;
}

.gp-reviews-count {
  font-size: 0.8rem;
  color: #888;
}

/* Scrolling track */
.gp-reviews-track-wrapper {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.gp-reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: gp-scroll 45s linear infinite;
}

.gp-reviews-track:hover {
  animation-play-state: paused;
}

@keyframes gp-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual review card */
.gp-review-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  width: 280px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
  cursor: default;
}

.gp-review-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.gp-review-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.gp-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gp-review-meta { flex: 1; min-width: 0; }

.gp-review-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gp-review-date {
  font-size: 0.72rem;
  color: #aaa;
}

.gp-review-stars {
  color: #fbbc05;
  font-size: 0.75rem;
  display: flex;
  gap: 1px;
  margin-bottom: 0.5rem;
}

.gp-review-text {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   TOP INFO BAR
   ============================================ */
.gp-topbar {
  background: #1a1a1a;
  padding: 0.45rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gp-topbar-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.gp-topbar-link:hover { color: var(--gp-accent); }

.gp-topbar-phone {
  background: var(--gp-green);
  color: #fff !important;
  text-decoration: none;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  transition: background 0.2s ease;
}
.gp-topbar-phone:hover { background: var(--gp-dark); }

/* ============================================
   HERO PHONE CALLOUT
   ============================================ */
.gp-hero-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.2rem;
}

.gp-hero-phone a {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.5rem 1.75rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}
.gp-hero-phone a:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

.gp-hero-phone-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   QUICK CONTACT STRIP
   ============================================ */
.gp-quick-contact-strip {
  background: linear-gradient(135deg, var(--gp-green) 0%, var(--gp-dark) 100%);
  padding: 1.75rem 0;
  border-bottom: 3px solid var(--gp-accent);
}

.gp-strip-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

.gp-btn-white-strip {
  background: #fff;
  color: var(--gp-green);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  border: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.gp-btn-white-strip:hover {
  background: var(--gp-green-pale);
  color: var(--gp-dark);
}

.gp-btn-yellow-strip {
  background: var(--gp-accent2);
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  border: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.gp-btn-yellow-strip:hover {
  background: #ffca28;
}

/* ============================================
   ÜBER UNS SECTION
   ============================================ */
.gp-ueberuns-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.gp-ueberuns-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gp-brown);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

@media (max-width: 575.98px) {
  .gp-ueberuns-badge { right: 8px; bottom: 8px; }
}

.gp-trust-badge {
  display: flex;
  align-items: center;
  background: var(--gp-green-pale);
  border: 1px solid rgba(46,125,50,0.15);
  border-radius: 8px;
  padding: 0.6rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gp-text);
  transition: all 0.2s ease;
}
.gp-trust-badge:hover {
  background: var(--gp-green-xpale);
  border-color: var(--gp-green-light);
}

.gp-btn-outline-green {
  color: var(--gp-green);
  border: 2px solid var(--gp-green);
  border-radius: 50px;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  background: transparent;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.gp-btn-outline-green:hover {
  background: var(--gp-green);
  color: #fff;
}

/* ============================================
   NOTDIENST STRIP
   ============================================ */
.gp-notdienst-strip {
  background: linear-gradient(135deg, #3e2723 0%, var(--gp-brown) 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.gp-notdienst-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 40px
  );
}

.gp-notdienst-icon {
  width: 70px;
  height: 70px;
  background: var(--gp-accent2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0 auto;
  box-shadow: 0 0 0 8px rgba(255,193,7,0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255,193,7,0.2); }
  50%       { box-shadow: 0 0 0 16px rgba(255,193,7,0.08); }
}

.gp-btn-notdienst {
  background: var(--gp-accent2);
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  padding: 0.75rem 2rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.gp-btn-notdienst:hover {
  background: #ffca28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,193,7,0.35);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.gp-testimonial-card {
  background: #fff;
  border-radius: var(--gp-radius);
  padding: 2rem;
  box-shadow: var(--gp-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  position: relative;
}

.gp-testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gp-green-pale);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

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

.gp-testimonial-featured {
  border: 2px solid var(--gp-green-light);
  background: var(--gp-green-xpale);
}

.gp-testimonial-featured::before {
  color: rgba(46,125,50,0.12);
}

.gp-stars {
  color: var(--gp-accent2);
  font-size: 1.1rem;
  display: flex;
  gap: 2px;
}

.gp-testimonial-text {
  color: var(--gp-text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.gp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.gp-testimonial-avatar {
  width: 42px;
  height: 42px;
  background: var(--gp-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================
   TRUST SEALS
   ============================================ */
.gp-trust-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gp-trust-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gp-green-pale);
  border: 1px solid rgba(46,125,50,0.2);
  color: var(--gp-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}

.gp-trust-seal .bi { color: var(--gp-green); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ── Tablet (≤991px) ─────────────────────────── */
@media (max-width: 991.98px) {
  /* Carousel */
  .gp-carousel-bg { height: 480px; }
  .gp-carousel-caption h1 { font-size: 2rem; }
  .gp-hero-phone a { font-size: 1.1rem; }

  /* Navbar mobile menu */
  .gp-btn-cta { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
  .navbar-collapse .nav-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .navbar-collapse .nav-item:last-child { border-bottom: none; padding-top: 0.75rem; }
  .navbar-collapse .nav-link { padding: 0.7rem 0.5rem !important; }
  .navbar-collapse .ms-lg-3 { margin-left: 0 !important; }
  .navbar-collapse .gp-btn-cta { width: 100%; text-align: center; margin-top: 0.5rem; }

  /* Sidebar */
  .gp-sidebar { position: static !important; margin-bottom: 1.5rem; }
}

/* ── Mobile (≤767px) ─────────────────────────── */
@media (max-width: 767.98px) {
  /* Carousel */
  .gp-carousel-bg { height: 360px; }
  .gp-carousel-caption { padding: 1.25rem; }
  .gp-carousel-caption h1 { font-size: 1.75rem; }
  .gp-carousel-badge { font-size: 0.72rem; padding: 0.3rem 0.8rem; margin-bottom: 0.75rem; }
  .gp-hero-phone { margin-top: 1rem; }
  .gp-hero-phone a { font-size: 1.05rem; padding: 0.45rem 1.25rem; }
  .gp-carousel-caption .d-flex.gap-3 { gap: 0.5rem !important; }
  .gp-carousel-caption .d-flex.gap-3 .btn { font-size: 0.8rem; padding: 0.45rem 1rem; }

  /* Stats bar – 3 in one row on mobile */
  .gp-stats-bar .row { justify-content: center; }
  .gp-stats-bar .col-6 { width: 33.333% !important; flex: 0 0 33.333% !important; max-width: 33.333% !important; }
  .gp-stat-number { font-size: 1.4rem; }
  .gp-stat-label { font-size: 0.7rem; }

  /* Section padding */
  .py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .gp-page-header { padding: 2rem 0 1.5rem; }
  .gp-page-title { font-size: 1.75rem; }

  /* Über uns – tighter on mobile */
  .gp-ueberuns-image-wrap { margin-bottom: 1.5rem; }
  .gp-ueberuns-badge { bottom: 8px; right: 8px; font-size: 0.78rem; }

  /* Trust badges – 2 per row always */
  .gp-trust-badge { font-size: 0.8rem; padding: 0.5rem 0.75rem; }

  /* Contact section buttons – full width on mobile */
  .gp-contact-info { gap: 0.75rem; }

  /* Service cards – 2 per row on tablet */
  .gp-service-card { padding: 1.5rem 1.25rem; }

  /* Footer – reduce gap */
  .gp-footer .row.g-5 { --bs-gutter-y: 2rem; }
  .gp-footer .col-lg-4 { text-align: center; }
  .gp-footer .d-flex.gap-2 { justify-content: center; }

  /* Reviews header – wrap on small screens */
  .gp-reviews-header { padding: 0.5rem 1rem; gap: 0.5rem; }
  .gp-reviews-rating-summary { margin-left: 0; width: 100%; justify-content: flex-start; }

  /* CTA box */
  .gp-cta-box { padding: 1.25rem; }

  /* Modal */
  .gp-modal-header { padding: 1.25rem 1.5rem; }
  .modal-body { padding: 1.25rem !important; }
}

/* ── Small mobile (≤575px) ───────────────────── */
@media (max-width: 575.98px) {
  /* Carousel */
  .gp-carousel-bg { height: 280px; }
  .gp-carousel-caption h1 { font-size: 1.35rem; }
  .gp-carousel-badge { display: none; }
  .gp-hero-phone { margin-top: 0.75rem; }
  .gp-hero-phone a { font-size: 0.95rem; padding: 0.4rem 1rem; }
  .gp-hero-phone-label { display: none; }
  .gp-carousel-caption .d-flex.gap-3 { flex-direction: column; align-items: center; }
  .gp-carousel-caption .d-flex.gap-3 .btn { width: 100%; max-width: 260px; font-size: 0.82rem; }

  /* Stats – keep 3 in a row but smaller */
  .gp-stat-number { font-size: 1.2rem; }
  .gp-stat-label { font-size: 0.65rem; }

  /* Sections */
  .gp-section-title { font-size: 1.5rem; }
  .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .gp-page-header { padding: 1.5rem 0 1.25rem; }

  /* Service cards – full width on small mobile */
  .gp-service-card { padding: 1.25rem 1rem; }

  /* Contact page cards */
  .gp-contact-card { padding: 1.5rem 1rem; }

  /* Contact form section */
  .gp-card.p-4 { padding: 1.25rem !important; }
  .gp-card.p-lg-5 { padding: 1.25rem !important; }

  /* Buttons full-width in forms */
  .gp-btn-primary.w-100 { font-size: 0.85rem; }

  /* Footer */
  .gp-footer { padding-top: 2.5rem; }
  .gp-footer .row.g-5 { --bs-gutter-y: 1.5rem; }

  /* Navbar brand text smaller */
  .gp-navbar-brand-text { font-size: 1rem; }
  .gp-navbar-logo { height: 40px; }

  /* Trust seals wrap nicely */
  .gp-trust-seals { gap: 0.4rem; }
  .gp-trust-seal { font-size: 0.72rem; padding: 0.3rem 0.7rem; }

  /* Page header */
  .gp-page-title { font-size: 1.5rem; }
  .gp-breadcrumb { font-size: 0.78rem; }

  /* Dienstleistungen service detail */
  .gp-service-detail-icon { width: 56px; height: 56px; }
  .gp-service-detail-icon .bi { font-size: 1.5rem; }
}
