/* ============================================================
   SERVICE & SUPPORT CSS
   Mit hr-ressourcen.css Styles für ORANGE Hero + CTA!
   ============================================================ */

/* Variables von hr-ressourcen.css */
:root {
  --hrr-orange: #E65100;
  --hrr-orange-dark: #D84315;
  --hrr-blue: #5272C5;
  --hrr-dark: #0B1933;
  --hrr-gray-light: #f8fafc;
  --hrr-gray: #6b7280;
  --hrr-gradient-orange: linear-gradient(135deg, #E65100 0%, #D84315 100%);
  --hrr-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --hrr-radius: 16px;
  --hrr-radius-pill: 50px;
  --hrr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   HERO - ORANGE (von hr-ressourcen.css)
   =========================================== */
.hrr-hero {
  position: relative;
  background: var(--hrr-gradient-orange);
  padding: 120px 20px 80px;
  overflow: hidden;
  min-height: 600px;
}

/* Geschwungene Trennlinie unten */
.hrr-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--hrr-gray-light);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

/* Floating Shapes */
.hrr-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hrr-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: hrr-float 15s ease-in-out infinite;
}

.hrr-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -100px;
  animation-delay: 0s;
}

.hrr-shape:nth-child(2) {
  width: 250px;
  height: 250px;
  bottom: -50px;
  right: -80px;
  animation-delay: 3s;
}

.hrr-shape:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 10%;
  animation-delay: 6s;
}

.hrr-shape:nth-child(4) {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 15%;
  animation-delay: 9s;
}

@keyframes hrr-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-25px) rotate(5deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(25px) rotate(-5deg);
  }
}

/* Hero Content */
.hrr-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Badge WEISS für Orange BG */
.hrform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hrform-badge-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: hrr-pulse 2s infinite;
  box-shadow: 0 0 10px #22c55e;
}

@keyframes hrr-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

/* Badge DARK für helle Sections */
.hrform-badge--dark {
  background: rgba(11, 25, 51, 0.08);
  color: var(--hrr-dark);
  border-color: rgba(11, 25, 51, 0.15);
}

.hrform-badge--dark .hrform-badge-dot {
  background: var(--hrr-orange);
  box-shadow: 0 0 10px var(--hrr-orange);
}

/* Hero H1 */
.hrr-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0 0 30px 0;
}

/* Hero Subtitle */
.hrr-hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

/* Trennlinie WEISS */
.hrr-section-divider {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--hrr-orange), transparent);
  margin: 25px auto;
  border-radius: 2px;
  position: relative;
}

.hrr-section-divider--light {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* Hero Benefits / Pills */
.hrr-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
}

.hrr-benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--hrr-transition);
}

.hrr-benefit-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hrr-benefit-pill i {
  font-size: 1.1rem;
  color: #FF8A50;
}

/* Hero Button */
.hrr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: white;
  color: var(--hrr-orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--hrr-transition);
  border: 2px solid transparent;
}

.hrr-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hrr-cta-btn.hrr-cta-btn-secondary {
  background: transparent;
  color: white !important;
  border-color: white;
}

.hrr-cta-btn.hrr-cta-btn-secondary:hover {
  background: white;
  color: var(--hrr-orange) !important;
}

/* ===========================================
   CTA SECTION - ORANGE (von hr-ressourcen.css)
   =========================================== */
.hrr-cta {
  position: relative;
  background: var(--hrr-gradient-orange);
  padding: 100px 20px;
  overflow: hidden;
}

/* Reuse Shapes - leicht transparent */
.hrr-cta .hrr-hero-shapes {
  opacity: 0.5;
}

/* Radial Overlay */
.hrr-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

/* CTA Content */
.hrr-cta-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hrr-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0 0 25px 0;
}

.hrr-cta .hrr-cta-btn {
  margin: 10px 10px 0 10px;
}

.hrr-cta .hrr-hero-subtitle {
  margin-bottom: 35px;
}

/* ===========================================
   TRUST BAR
   =========================================== */
.hrt-service-trust-bar {
  padding: 60px 20px;
  background: var(--hrr-gray-light);
}

.hrt-service-trust-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ===========================================
   SECTION HEADER (Standard für alle Sections)
   =========================================== */
.hrt-service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.hrt-about-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.hrt-about-section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hrr-dark);
  margin: 0 0 20px 0;
}

.hrt-about-section-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: var(--hrr-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================================
   SUPPORT OPTIONS CARDS
   =========================================== */
.hrt-service-options {
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.hrt-service-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.hrt-service-card {
  background: white;
  padding: 40px;
  border-radius: var(--hrr-radius);
  box-shadow: var(--hrr-shadow-soft);
  transition: var(--hrr-transition);
}

.hrt-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hrt-service-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px 0;
}

.hrt-service-card-blue .hrt-service-card-icon {
  background: rgba(82, 114, 197, 0.1);
  color: var(--hrr-blue);
}

.hrt-service-card-orange .hrt-service-card-icon {
  background: rgba(230, 81, 0, 0.1);
  color: var(--hrr-orange);
}

.hrt-service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--hrr-dark);
  margin: 0 0 15px 0;
}

.hrt-service-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--hrr-gray);
  line-height: 1.7;
  margin: 0 0 25px 0;
}

.hrt-service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hrr-orange);
  text-decoration: none;
  transition: var(--hrr-transition);
}

.hrt-service-card-btn:hover {
  gap: 15px;
}

/* ===========================================
   FEATURES GRID
   =========================================== */
.hrt-service-features {
  background: var(--hrr-gray-light);
}

.hrt-service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.hrt-service-feature-card {
  background: white;
  padding: 35px;
  border-radius: var(--hrr-radius);
  transition: var(--hrr-transition);
}

.hrt-service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hrr-shadow-soft);
}

.hrt-service-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(230, 81, 0, 0.1);
  color: var(--hrr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
}

.hrt-service-feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hrr-dark);
  margin: 0 0 12px 0;
}

.hrt-service-feature-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--hrr-gray);
  line-height: 1.6;
  margin: 0;
}

/* ===========================================
   SLA STATS
   =========================================== */
.hrt-service-sla {
  background: white;
}

.hrt-service-sla-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.hrt-service-sla-stat {
  text-align: center;
}

.hrt-service-sla-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--hrr-orange);
  margin: 0 0 10px 0;
}

.hrt-service-sla-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--hrr-gray);
}

/* ===========================================
   LOCATION
   =========================================== */
.hrt-service-location {
  background: var(--hrr-gray-light);
}

.hrt-service-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 50px;
}

.hrt-service-location-card {
  background: white;
  padding: 40px;
  border-radius: var(--hrr-radius);
  box-shadow: var(--hrr-shadow-soft);
}

.hrt-service-location-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(230, 81, 0, 0.1);
  color: var(--hrr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 0;
}

.hrt-service-location-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--hrr-dark);
  margin: 0 0 15px 0;
}

.hrt-service-location-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--hrr-gray);
  line-height: 1.8;
  margin: 0 0 25px 0;
}

.hrt-service-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hrr-orange);
  text-decoration: none;
  padding: 15px 30px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--hrr-shadow-soft);
  transition: var(--hrr-transition);
}

.hrt-service-location-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hrt-service-map-container {
  border-radius: var(--hrr-radius);
  overflow: hidden;
  box-shadow: var(--hrr-shadow-soft);
  min-height: 400px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {

  .hrr-hero h1,
  .hrr-cta h2 {
    font-size: 2.5rem;
  }

  .hrt-service-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hrr-hero {
    padding: 80px 15px 60px;
  }

  .hrr-hero h1,
  .hrr-cta h2 {
    font-size: 2rem;
  }

  .hrr-hero-subtitle {
    font-size: 1.1rem;
  }

  .hrt-service-options-grid,
  .hrt-service-features-grid {
    grid-template-columns: 1fr;
  }

  .hrr-cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin-bottom: 25px;
  }

  .hrt-service-container {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {

  .hrr-hero h1,
  .hrr-cta h2 {
    font-size: 1.6rem;
  }

  .hrt-about-section-header h2 {
    font-size: 1.8rem;
  }

  .hrr-hero-benefits,
  .hrr-cta .hrr-hero-benefits {
    gap: 10px;
  }

  .hrr-benefit-pill {
    font-size: 0.85rem;
    padding: 12px 20px;
  }
}