@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap);

/* Badsanierung Wien - Unique Color Scheme */
:root {
  /* Primary Colors - Professional Blue/Grey Palette */
  --primary-dark: #2c3e50;
  /* Dark blue-grey for headers */
  --primary-accent: #3498db;
  /* Professional blue for accents */
  --primary-light: #5dade2;
  /* Light blue for highlights */
  --secondary-accent: #1abc9c;
  /* Teal for CTAs */

  /* Neutral Colors */
  --neutral-dark: #34495e;
  /* Dark grey-blue */
  --neutral-medium: #7f8c8d;
  /* Medium grey */
  --neutral-light: #ecf0f1;
  /* Light grey background */
  --neutral-white: #ffffff;
  /* Pure white */

  /* Functional Colors */
  --success-color: #2980b9;
  /* Green for success */
  --warning-color: #f39c12;
  /* Orange for warnings */
  --error-color: #e74c3c;
  /* Red for errors */

  /* Text Colors */
  --text-primary: #2c3e50;
  /* Main text */
  --text-secondary: #7f8c8d;
  /* Secondary text */
  --text-light: #95a5a6;
  /* Light text */
  --text-white: #ffffff;
  /* White text */

  /* Background Colors */
  --bg-primary: #ffffff;
  /* Main background */
  --bg-secondary: #f8f9fa;
  /* Secondary background */
  --bg-accent: #e8f4f8;
  /* Accent background */
  --bg-dark: #2c3e50;
  /* Dark background */

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.20);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   Badsanierung Pro - Custom Styles
   ============================================ */

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

a:hover {
  color: #52a7e0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Учитываем фиксированный хедер */
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: var(--transition-base);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
  transition: var(--transition-base);
}

.logo-icon:hover {
  transform: rotate(5deg) scale(1.05);
}

.logo-icon svg {
  width: 28px;
  height: 28px;
}

.logo-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.logo-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.home-link,
.blog-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-accent);
  color: var(--primary-accent);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: var(--transition-fast);
}

.home-link:hover,
.blog-link:hover {
  background: var(--primary-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* ============================================
   UNIQUE HERO SECTION - Completely Different Design
   ============================================ */

.bath-hero-unique {
  position: relative;
  margin-top: 75px;
  overflow: hidden;
  background: linear-gradient(170deg, #ffffff 0%, #f0f7fb 50%, #e1f0f7 100%);
}

/* Animated Background Elements */
.hero-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
  animation: floatBubble 20s infinite ease-in-out;
}

.bubble-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -10%;
  animation-delay: 7s;
}

.bubble-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 30%;
  animation-delay: 14s;
}

@keyframes floatBubble {

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

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

.water-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23e8f4f8" d="M0,50 C360,100 720,0 1440,50 L1440,100 L0,100 Z"></path></svg>');
  background-size: cover;
  animation: wave 10s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Split Layout Container */
.hero-split-layout {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 75px);
}

/* Left Side - Main Content */
.hero-main-content {
  position: relative;
  animation: slideFromLeft 0.8s ease-out;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Quality Ribbon */
.quality-ribbon {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.3s both;
}

.ribbon-content {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-accent));
  color: white;
  padding: 10px 25px;
  border-radius: 30px 30px 30px 0;
  position: relative;
  box-shadow: 0 5px 20px rgba(44, 62, 80, 0.3);
}

.ribbon-content::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-top: 10px solid var(--primary-dark);
}

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

.ribbon-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.ribbon-year {
  font-size: 0.8rem;
  opacity: 0.9;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 10px;
}

/* Title Block */
.hero-title-block {
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 0.5s both;
}

.main-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.title-word {
  display: inline-block;
  animation: wordPop 0.6s ease-out forwards;
  opacity: 0;
}

.word-1 {
  animation-delay: 0.6s;
}

.word-2 {
  animation-delay: 0.7s;
}

.word-3 {
  animation-delay: 0.8s;
}

.word-4 {
  animation-delay: 0.9s;
}

.word-highlight {
  animation-delay: 0.8s;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.word-3 {
  animation-delay: 0.9s;
}

@keyframes wordPop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

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

.subtitle-line {
  display: flex;
  align-items: center;
  gap: 15px;
}

.subtitle-dash {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-accent), transparent);
}

.subtitle-text {
  font-size: 1.2rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin: 0;
}

/* Features Grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 0.7s both;
}

.feature-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-accent), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1;
  margin-bottom: 5px;
}

.feature-label {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.2;
}

/* Description Section */
.hero-description {
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 0.9s both;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-accent);
  color: var(--primary-accent);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
  cursor: default;
}

.tag:hover {
  background: var(--primary-accent);
  color: white;
  transform: scale(1.05);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeIn 1s ease-out 1.1s both;
}

.primary-action {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  color: white;
  text-decoration: none;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.action-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-text {
  display: flex;
  flex-direction: column;
}

.action-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.action-phone {
  font-size: 1.3rem;
  font-weight: 700;
}

.action-pulse {
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  background: white;
  color: var(--primary-accent);
  text-decoration: none;
  border: 2px solid var(--primary-accent);
  border-radius: 60px;
  font-weight: 600;
  transition: var(--transition-base);
}

.secondary-action:hover {
  background: var(--primary-accent);
  color: white;
  transform: translateX(5px);
}

.secondary-action svg {
  transition: transform 0.3s ease;
}

.secondary-action:hover svg {
  transform: translateX(5px);
}

/* Right Side - Visual Showcase */
.hero-visual-side {
  position: relative;
  animation: slideFromRight 0.8s ease-out;
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.showcase-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Main Showcase Card */
.showcase-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-out 0.8s both;
}

.showcase-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  backdrop-filter: blur(10px);
}

.showcase-info {
  padding: 20px;
  display: flex;
  justify-content: space-around;
  background: linear-gradient(135deg, #f0f7fb, #e8f4f8);
  border-top: 1px solid rgba(52, 152, 219, 0.1);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.info-icon {
  font-size: 1.1rem;
}

/* Price Calculator */
.price-calculator {
  background: linear-gradient(135deg, var(--primary-dark), #1a252f);
  color: white;
  padding: 25px;
  border-radius: 20px;
  animation: fadeIn 1s ease-out 1s both;
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.calc-icon {
  font-size: 1.5rem;
}

.calc-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: white;
}

.calc-display {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calc-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.calc-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.calc-price .currency {
  font-size: 1.5rem;
  opacity: 0.8;
}

.calc-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.calc-button {
  display: block;
  width: 100%;
  padding: 12px;
  background: white;
  color: var(--primary-dark);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.calc-button:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  color: var(--primary-dark);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  animation: fadeIn 1s ease-out 1.2s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 5px;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Floating Contact Bubble */
.floating-contact {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 100;
  animation: slideUp 0.5s ease-out 2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-bubble {
  background: white;
  padding: 15px 20px;
  border-radius: 20px 20px 5px 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

  50% {
    transform: translateY(-5px);
  }
}

.bubble-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.bubble-close {
  background: var(--neutral-light);
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.bubble-close:hover {
  background: var(--primary-accent);
  color: white;
}

/* Original Hero Bath styles (keeping for reference) */
.hero-bath {
  margin-top: 75px;
  background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
  overflow: hidden;
  position: relative;
}

.hero-top-bar {
  background: var(--primary-dark);
  color: white;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.hero-top-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.bar-icon {
  font-size: 1.2rem;
  animation: pulse-icon 2s infinite;
}

.bar-text-mobile {
  display: none;
}

.hero-content {
  position: relative;
  padding: 80px 20px;
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-info {
  position: relative;
  z-index: 2;
}

.hero-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  animation: slideInLeft 0.6s ease;
}

.hero-award svg {
  color: var(--warning-color);
}

.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-dark);
  animation: slideInLeft 0.8s ease;
}

.heading-main {
  display: block;
}

.heading-accent {
  display: block;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading-sub {
  display: block;
  font-size: 1.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
  animation: slideInLeft 1s ease;
}

.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
  animation: slideInLeft 1.2s ease;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.check-item:hover {
  background: var(--bg-accent);
  transform: translateX(5px);
}

.check-mark {
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.hero-pricing {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: slideInLeft 1.4s ease;
}

.price-card {
  background: white;
  padding: 20px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--primary-accent);
}

.price-from {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1;
}

.price-info {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.warranty-card {
  background: linear-gradient(135deg, var(--bg-accent), white);
  padding: 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.warranty-icon {
  font-size: 2rem;
}

.warranty-info {
  display: flex;
  flex-direction: column;
}

.warranty-info strong {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.warranty-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Form Section */
.hero-form-section {
  position: relative;
}

.form-card {
  background: white;
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-header {
  margin-bottom: 25px;
  text-align: center;
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success-color);
  font-size: 0.9rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.phone-section {
  margin-bottom: 20px;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.4);
}

.phone-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon svg {
  width: 24px;
  height: 24px;
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-cta {
  font-size: 0.9rem;
  opacity: 0.9;
}

.phone-display {
  font-size: 1.4rem;
  font-weight: 700;
}

.or-divider {
  text-align: center;
  color: var(--text-light);
  margin: 20px 0;
  position: relative;
}

.or-divider::before,
.or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: var(--neutral-light);
}

.or-divider::before {
  left: 0;
}

.or-divider::after {
  right: 0;
}

/* Hero Section Original */
.hero-modern {
  margin-top: 75px;
  background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
  overflow: hidden;
  position: relative;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
  animation: float 20s infinite ease-in-out;
}

@keyframes float {

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

  50% {
    transform: translate(-50px, -50px) rotate(180deg);
  }
}

.hero-emergency-bar {
  background: var(--primary-dark);
  color: white;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.hero-emergency-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.emergency-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.emergency-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.emergency-icon {
  font-size: 1.2rem;
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {

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

  50% {
    transform: scale(1.1);
  }
}

.emergency-text-short {
  display: none;
}

.hero-main {
  position: relative;
  padding: 80px 20px;
  z-index: 1;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge-top svg {
  color: var(--warning-color);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-dark);
  animation: slideInLeft 0.8s ease;
}

.title-line {
  display: block;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
  animation: slideInLeft 1s ease;
}

.hero-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
  animation: slideInLeft 1.2s ease;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.service-item:hover {
  background: var(--bg-accent);
  transform: translateX(5px);
}

.check-icon {
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* CTA Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideInLeft 1.4s ease;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.cta-secondary {
  background: white;
  color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
  box-shadow: none;
}

.cta-secondary:hover {
  background: var(--bg-accent);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

/* Services Section for Bath Site */
.bath-services {
  padding: 80px 20px;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-accent);
  color: var(--primary-accent);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bath-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.bath-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--neutral-light);
}

.bath-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-accent), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.bath-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.bath-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.bath-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.bath-features {
  list-style: none;
  margin-bottom: 20px;
}

.bath-features li {
  padding: 8px 0;
  color: var(--text-primary);
  position: relative;
  padding-left: 25px;
}

.bath-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.bath-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-light);
}

.bath-price strong {
  font-size: 1.8rem;
  color: var(--primary-accent);
}

.bath-price span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Service Cards Grid Original */
.services-section {
  padding: 80px 20px;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--neutral-light);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-accent), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bg-accent), white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-accent);
  font-size: 1.5rem;
}

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

.service-card p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.service-link:hover {
  gap: 10px;
}

/* Customer Testimonials Modern Section */
.testimonials-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 50%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.testimonials-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.testimonials-modern-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: slideInDown 0.6s ease-out;
}

.testimonials-label img {
  filter: brightness(0) invert(1);
}

.testimonials-modern-title {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #3498db, #1abc9c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.rating-average {
  text-align: center;
}

.rating-number {
  font-size: 56px;
  font-weight: 700;
  color: #2c3e50;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.rating-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.rating-separator {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, transparent, #e0e0e0, transparent);
}

.rating-info {
  display: flex;
  gap: 40px;
}

.rating-stat {
  text-align: center;
}

.rating-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 5px;
}

.rating-stat span {
  font-size: 14px;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonials Carousel */
.testimonials-carousel {
  margin-bottom: 60px;
  position: relative;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.testimonial-modern-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.testimonial-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #1abc9c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(52, 152, 219, 0.2);
}

.testimonial-modern-card:hover::before {
  transform: scaleX(1);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.1;
}

.testimonial-quote img {
  width: 40px;
  height: 40px;
  filter: invert(51%) sepia(85%) saturate(2238%) hue-rotate(179deg);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-rating {
  font-size: 20px;
  color: #FFC107;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #5a5a5a;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: linear-gradient(180deg, #3498db, #1abc9c);
  border-radius: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #1abc9c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 4px 0;
}

.author-service {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

.testimonial-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #95a5a6;
  margin-left: auto;
}

.testimonial-date img {
  opacity: 0.5;
}

.testimonial-badge {
  position: absolute;
  top: 10px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #2980b9, #229954);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.testimonial-badge img {
  filter: brightness(0) invert(1);
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dots .dot.active {
  width: 30px;
  border-radius: 5px;
  background: linear-gradient(90deg, #3498db, #1abc9c);
}

.carousel-dots .dot:hover:not(.active) {
  background: #b0b0b0;
  transform: scale(1.2);
}

/* Testimonials Features */
.testimonials-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.testimonials-features .feature-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonials-features .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(26, 188, 156, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials-features .feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, #3498db, #1abc9c);
  transform: rotate(360deg);
}

.testimonials-features .feature-card:hover .feature-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.testimonials-features h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.testimonials-features p {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials CTA */
.testimonials-cta {
  text-align: center;
  padding: 40px 10px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.testimonials-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.testimonials-cta .cta-text {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonials-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-direction: row;
}

.testimonials-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #3498db, #1abc9c);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.testimonials-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9, #16a085);
}

.testimonials-cta .btn-primary img {
  filter: brightness(0) invert(1);
}

.testimonials-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.testimonials-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.testimonials-cta .btn-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 35px;
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-cta .btn-tertiary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonials-cta .btn-tertiary::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.testimonials-cta .btn-tertiary:hover::after {
  transform: translateX(5px);
}

/* Animations */
@keyframes float {

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

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .carousel-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-modern {
    padding: 60px 0;
  }

  .testimonials-modern-title {
    font-size: 32px;
  }

  .rating-overview {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .rating-separator {
    width: 80px;
    height: 2px;
  }

  .rating-number {
    font-size: 42px;
  }

  .rating-info {
    gap: 30px;
  }

  .carousel-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-cta .cta-buttons {
    flex-direction: column;
    padding: 0 20px;
  }

  .feature-box {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
}

@media (max-width: 480px) {
  .testimonials-modern-title {
    font-size: 28px;
  }

  .testimonial-modern-card {
    padding: 25px;
  }

  .rating-stat strong {
    font-size: 24px;
  }

  .testimonials-cta .cta-text {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .testimonials-label {
    font-size: 12px;
    padding: 6px 15px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Fixed Call Button */
.fixed-call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(52, 152, 219, 0.4);
  z-index: 9999;
  transition: var(--transition-base);
  animation: pulse 2s infinite;
  text-decoration: none;
}

.fixed-call-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(52, 152, 219, 0.5);
}

.fixed-call-button svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 5px 25px rgba(52, 152, 219, 0.4);
  }

  50% {
    box-shadow: 0 5px 35px rgba(52, 152, 219, 0.6);
  }

  100% {
    box-shadow: 0 5px 25px rgba(52, 152, 219, 0.4);
  }
}

/* Services Section (Unsere Leistungen) */
.services-section {
  padding: 80px 20px;
  background: white;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section .section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.services-section .section-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Reviews Section (Was unsere Kunden sagen) */
.reviews-section {
  background: var(--bg-secondary);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, transparent 70%);
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 25px;
  border-radius: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.badge-star {
  font-size: 1.5rem;
}

.badge-text {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-title {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
  line-height: 1.2;
}

.reviews-title .highlight {
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.reviews-stats .stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 5px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  color: var(--primary-accent);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.review-card:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.review-header {
  margin-bottom: 20px;
}

.review-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.review-service {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.review-comment {
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-light);
}

.review-rating {
  color: var(--warning-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-date {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark), #1a252f);
  color: white;
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-accent);
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  padding-left: 20px;
  position: relative;
}

.footer-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-accent);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--primary-light);
  transform: translateX(3px);
  display: inline-block;
}

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

/* Benefits Section */
.benefits-section {
  padding: 80px 20px;
  background: var(--bg-secondary);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-box {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-accent), var(--primary-light));
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-name {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bg-accent), white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-accent);
  font-size: 1.5rem;
}

.benefit-content h4 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background: white;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-accent), var(--primary-light));
}

.process-step {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  background: white;
  border: 3px solid var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-accent);
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-time {
  display: inline-block;
  padding: 5px 15px;
  background: var(--bg-accent);
  color: var(--primary-accent);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Service Item Styles (for grid items) */
.service-item {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-accent), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--bg-accent), white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-item h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.service-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

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

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-control {
  padding: 12px 16px;
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--primary-accent);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Pricing Section (Transparente Preise) */
.pricing-section {
  padding: 80px 20px;
  background: white;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-section .section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.pricing-section .section-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.price-card {
  background: white;
  border: 2px solid var(--neutral-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
}

.price-card:hover {
  border-color: var(--primary-accent);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border-color: var(--primary-accent);
  background: linear-gradient(135deg, var(--bg-accent), white);
}

.price-card.featured::before {
  content: 'BELIEBT';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-accent);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.price-header h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}

.price-tag .currency {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.price-tag .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1;
}

.price-tag .period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-light);
  color: var(--text-primary);
  position: relative;
  padding-left: 30px;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.price-cta {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background: var(--primary-accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-base);
}

.price-cta:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* FAQ Section (Häufige Fragen) */
.faq-section {
  padding: 80px 20px;
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.faq-column {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.column-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-accent);
}

.column-icon {
  font-size: 1.8rem;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item[open] {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-accent);
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  position: relative;
  padding-right: 50px;
  background: var(--bg-accent);
  transition: var(--transition-fast);
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-accent);
  transition: var(--transition-base);
}

details[open] .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-answer {
  padding: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  background: white;
}

/* FAQ CTA Block */
.faq-cta {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.faq-cta .cta-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.faq-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.faq-cta .faq-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  color: var(--primary-accent);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-base);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-cta .faq-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: var(--bg-primary);
}

.faq-cta .faq-phone svg {
  fill: var(--primary-accent);
}

.faq-cta .faq-form {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-base);
}

.faq-cta .faq-form:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* Responsive FAQ CTA */
@media (max-width: 768px) {
  .faq-cta {
    padding: 30px 20px;
  }

  .faq-cta .cta-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .faq-cta .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .faq-cta .faq-phone,
  .faq-cta .faq-form {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Section (Kostenloses Angebot anfordern) */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-dark), #1a252f);
  color: white;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: float 20s infinite ease-in-out;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.contact-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 16px;
  border: 1px solid var(--neutral-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: white;
  color: var(--text-primary);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 4px;
}

.checkbox-wrapper label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.submit-button {
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 40px;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: white;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(52 152 219);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 3px;
}

.info-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.info-value a {
  color: white;
  text-decoration: none;
  transition: var(--transition-fast);
}

.info-value a:hover {
  opacity: 0.8;
}

.direct-contact {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.direct-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: white;
}

.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition-base);
}

.call-now-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Guarantee Section */
.guarantee-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-dark), #1a252f);
  color: white;
  text-align: center;
}

.guarantee-container {
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}

.guarantee-badge svg {
  width: 40px;
  height: 40px;
  color: var(--warning-color);
}

.guarantee-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.guarantee-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {

  /* New Hero Section Mobile */
  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .feature-number {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual-side {
    display: none;
  }

  .floating-contact {
    bottom: 80px;
    right: 20px;
  }

  .contact-bubble {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  /* Old Hero Section Mobile (keeping for reference) */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .heading-sub {
    font-size: 1.3rem;
  }

  .hero-checklist {
    grid-template-columns: 1fr;
  }

  .hero-pricing {
    flex-direction: column;
    align-items: stretch;
  }

  .bar-text {
    display: none;
  }

  .bar-text-mobile {
    display: inline;
  }

  /* Services Mobile */
  .bath-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits Mobile */
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Process Mobile */
  .process-timeline::before {
    left: 30px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }

  .step-number {
    position: absolute;
    left: 0;
  }

  /* Form Mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Pricing Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ Mobile */
  .faq-columns {
    grid-template-columns: 1fr;
  }

  /* Contact Mobile */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding-top: 0;
  }

  /* Reviews Mobile */
  .reviews-stats {
    flex-direction: column;
    gap: 20px;
  }

  .reviews-title {
    font-size: 2rem;
  }

  /* Original mobile styles */
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-services-list {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section li {
    padding-left: 0;
  }

  .footer-section li::before {
    display: none;
  }

  .emergency-text {
    display: none;
  }

  .emergency-text-short {
    display: inline;
  }

  .fixed-call-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .fixed-call-button svg {
    width: 24px;
    height: 24px;
  }

  .blog-link span,
  .home-link span {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .blog-link,
  .home-link {
    padding: 10px;
  }
}

@media (max-width: 480px) {

  /* Very small devices - New Hero */
  .main-title {
    font-size: 2rem;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
  }

  .quality-ribbon {
    margin-bottom: 20px;
  }

  .ribbon-content {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .primary-action {
    padding: 15px 20px;
  }

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

  .service-tags {
    justify-content: center;
  }

  .floating-contact {
    display: none;
  }

  /* Very small devices - Old Hero (keeping for reference) */
  .hero-heading {
    font-size: 1.6rem;
  }

  .heading-sub {
    font-size: 1.1rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .benefits-stats {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 2rem;
  }

  .form-card {
    padding: 25px;
  }

  /* FAQ very small */
  .faq-columns {
    grid-template-columns: 1fr;
  }

  .column-title {
    font-size: 1.2rem;
  }

  .faq-question {
    padding: 15px;
    padding-right: 40px;
    font-size: 0.95rem;
  }

  /* Contact very small */
  .contact-form {
    padding: 25px;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }

  /* Pricing very small */
  .price-tag .amount {
    font-size: 2.5rem;
  }

  /* Original 480px styles */
  h1,
  .hero-title {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .header-container {
    padding: 10px 15px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon svg {
    width: 24px;
    height: 24px;
  }

  .logo-text h2 {
    font-size: 1.2rem;
  }

  .logo-text p {
    font-size: 0.75rem;
  }

  .hero-main {
    padding: 40px 15px;
  }

  .service-card {
    padding: 20px;
  }

  .review-card {
    padding: 20px;
  }

  .emergency-item {
    font-size: 0.85rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

/* Legal Pages */
.legal-main {
  margin-top: 75px;
  min-height: calc(100vh - 75px);
  padding: 60px 20px;
  background: var(--bg-secondary);
}

.privacy-section,
.mentions-section {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content,
.mentions-content {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.privacy-title,
.mentions-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.privacy-info h2,
.mentions-info h2 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--bg-accent);
  padding-bottom: 10px;
}

.privacy-info h3,
.mentions-info h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.info-block {
  background: var(--bg-accent);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-accent);
}

.info-block.highlight {
  background: linear-gradient(135deg, var(--bg-accent), white);
  border-left-color: var(--secondary-accent);
}

/* Blog Styles */
.blog-main {
  margin-top: 75px;
  min-height: calc(100vh - 75px);
  background: var(--bg-secondary);
}

.blog-header,
.bath-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-accent));
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bath-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: float 20s infinite ease-in-out;
}

.bath-header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bath-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.bath-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Error 404 Page */
.error-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
  padding: 20px;
}

.error-content {
  text-align: center;
  max-width: 600px;
  animation: slideUp 0.6s ease;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
  animation: pulse 2s infinite;
}

.error-title {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.error-message {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.error-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
}

.error-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary-accent);
  opacity: 0.3;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.back-home:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  color: white;
}

/* Print Styles */
@media print {

  .site-header,
  .fixed-call-button,
  .hero-emergency-bar,
  footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero-main,
  .services-section,
  .reviews-section {
    page-break-inside: avoid;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0
}

a {
  text-decoration: none;
  display: inline-block
}

a:hover {
  color: #fff
}

.security__txt>a:hover {
  color: green;
}

.container {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding: 0 15px
}

.containerP0 {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding: 0
}

body {
  margin: auto;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 1920px;
  min-width: 320px;
  color: #222;
  -webkit-font-feature-settings: "liga" 1, "kern" 1;
  font-feature-settings: "liga" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.025em
}

:root {
  --maxWidth: 1200px;
  --btnColorFixed: #000;
  --mainColor: #399d34;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
}

.text-gradient {
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.smooth-scroll {
  scroll-behavior: smooth
}

.advantages {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0, #f8fffe 50%, #f1f8f1 100%);
  position: relative;
  overflow: hidden
}

.advantages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(57, 157, 52, .02) 0, transparent 50%), radial-gradient(circle at 75% 75%, rgba(45, 125, 42, .015) 0, transparent 40%), radial-gradient(circle at 50% 50%, rgba(57, 157, 52, .01) 0, transparent 30%);
  pointer-events: none
}

.advantages::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, rgba(57, 157, 52, .05), rgba(45, 125, 42, .03));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: .6
}

.advantages__box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2
}

.advantages__wrp {
  position: relative;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, .06), 0 4px 15px rgba(0, 0, 0, .04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06), 0 4px 15px rgba(0, 0, 0, .04);
  border: 1px solid rgba(255, 255, 255, .3);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.advantages__wrp::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .1), rgba(45, 125, 42, .05), rgba(57, 157, 52, .1));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.advantages__wrp:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#3b82f6), to(#1e40af));
  background: linear-gradient(90deg, #3b82f6, #1e40af);
  border-radius: 20px 20px 0 0
}

.advantages__wrp:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#f59e0b), to(#d97706));
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 20px 20px 0 0
}

.advantages__wrp:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 20px 20px 0 0
}

.advantages__wrp:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#8b5cf6), to(#7c3aed));
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
  border-radius: 20px 20px 0 0
}

.advantages__wrp:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .1), 0 8px 25px rgba(0, 0, 0, .06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1), 0 8px 25px rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .95)
}

.advantages__wrp:hover::before {
  opacity: 1
}

.advantages__svgWrp {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.advantages__svgWrp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(57, 157, 52, .1), rgba(45, 125, 42, .05));
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.advantages__svgWrp svg {
  width: 45px;
  height: 45px;
  position: relative;
  z-index: 2;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.advantages__wrp:hover .advantages__svgWrp::before {
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1)
}

.advantages__wrp:hover .advantages__svgWrp svg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1)
}

.advantages__wrp:hover .advantages__svgWrp svg path {
  fill: #fff
}

.advantages__name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  font-family: var(--font-heading);
  letter-spacing: -.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.advantages__txt {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@media (max-width:992px) {
  .advantages {
    padding: 60px 0
  }

  .advantages__box {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px
  }

  .advantages__wrp {
    padding: 30px 20px
  }

  .advantages__svgWrp {
    width: 70px;
    height: 70px;
    margin-bottom: 20px
  }

  .advantages__svgWrp svg {
    width: 40px;
    height: 40px
  }

  .advantages__name {
    font-size: 18px
  }

  .advantages__txt {
    font-size: 14px
  }
}

@media (max-width:768px) {
  .advantages {
    padding: 50px 0
  }

  .advantages::after {
    display: none
  }

  .advantages__box {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
  }

  .advantages__wrp {
    padding: 25px 18px;
    border-radius: 16px
  }

  .advantages__svgWrp {
    width: 65px;
    height: 65px;
    margin-bottom: 18px
  }

  .advantages__svgWrp svg {
    width: 35px;
    height: 35px
  }

  .advantages__name {
    font-size: 17px;
    margin-bottom: 10px
  }

  .advantages__txt {
    font-size: 13px;
    line-height: 1.5
  }
}

@media (max-width:480px) {
  .advantages {
    padding: 40px 0
  }

  .advantages__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 18px
  }

  .advantages__wrp {
    padding: 20px 15px;
    border-radius: 14px
  }

  .advantages__svgWrp {
    width: 60px;
    height: 60px;
    margin-bottom: 15px
  }

  .advantages__svgWrp svg {
    width: 32px;
    height: 32px
  }

  .advantages__name {
    font-size: 16px
  }

  .advantages__txt {
    font-size: 12px
  }
}

.company {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f8f1 0, #fff 50%, #f8fffe 100%);
  position: relative;
  overflow: hidden
}

.company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/Stef_icons_alle_Elektroinstallationen.svg) 8% 20%/100px 100px no-repeat, url(../img/Stef_icons_alle_Netzwerktechnik.svg) 92% 80%/120px 120px no-repeat, radial-gradient(circle at 15% 30%, rgba(57, 157, 52, .02) 0, transparent 40%), radial-gradient(circle at 85% 70%, rgba(45, 125, 42, .015) 0, transparent 35%);
  opacity: .4;
  pointer-events: none
}

.company::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: conic-gradient(from 45deg, rgba(57, 157, 52, .05) 0deg, rgba(45, 125, 42, .03) 90deg, rgba(57, 157, 52, .02) 180deg, rgba(45, 125, 42, .01) 270deg);
  border-radius: 50%;
  opacity: .6
}

.company__box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 60px 50px;
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, .08), 0 12px 24px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .08), 0 12px 24px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .4)
}

.company__box::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .15) 0, rgba(45, 125, 42, .05) 25%, rgba(57, 157, 52, .02) 50%, rgba(45, 125, 42, .05) 75%, rgba(57, 157, 52, .15) 100%);
  border-radius: 27px;
  z-index: -1
}

.company__box::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, transparent 30%, var(--mainColor) 30%, var(--mainColor) 70%, transparent 70%);
  opacity: .1
}

.company__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  color: #1a1a1a;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .05);
  letter-spacing: -.03em
}

.company__title::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, var(--mainColor)), color-stop(50%, #2d7d2a), color-stop(80%, var(--mainColor)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--mainColor) 20%, #2d7d2a 50%, var(--mainColor) 80%, transparent);
  border-radius: 2px
}

.company__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 8px rgba(57, 157, 52, .3);
  box-shadow: 0 2px 8px rgba(57, 157, 52, .3)
}

.company__txt {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 25px 0;
  position: relative;
  text-align: justify;
  padding: 0 20px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto
}

.company__txt:nth-of-type(2) {
  background: linear-gradient(135deg, rgba(57, 157, 52, .03), rgba(45, 125, 42, .02));
  padding: 20px 30px;
  border-radius: 12px;
  border-left: 4px solid rgba(57, 157, 52, .3);
  margin: 30px 0;
  position: relative
}

.company__txt:nth-of-type(2)::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: 10px;
  font-size: 36px;
  color: rgba(57, 157, 52, .3);
  font-family: Georgia, serif;
  line-height: 1
}

.company__txt:nth-of-type(4) {
  background: linear-gradient(135deg, rgba(57, 157, 52, .02), rgba(45, 125, 42, .015));
  padding: 20px 30px;
  border-radius: 12px;
  border-left: 4px solid rgba(45, 125, 42, .4);
  margin: 30px 0;
  font-weight: 500
}

.company__txt:nth-of-type(4)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 30px;
  width: 60px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(transparent));
  background: linear-gradient(90deg, var(--mainColor), transparent)
}

.company__txt:last-of-type {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  background: rgba(57, 157, 52, .04);
  padding: 25px 35px;
  border-radius: 15px;
  border: 2px solid rgba(57, 157, 52, .2);
  margin: 35px 0 0 0;
  position: relative
}

.company__txt:last-of-type::before {
  content: "⚡";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .9);
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 16px;
  -webkit-box-shadow: 0 4px 12px rgba(57, 157, 52, .2);
  box-shadow: 0 4px 12px rgba(57, 157, 52, .2)
}

.company::before {
  background-image: url(../img/Stef_icons_alle_Elektroinstallationen.svg), url(../img/Stef_icons_alle_Netzwerktechnik.svg), repeating-linear-gradient(45deg, rgba(57, 157, 52, .01) 0, rgba(57, 157, 52, .01) 2px, transparent 2px, transparent 20px), radial-gradient(circle at 15% 30%, rgba(57, 157, 52, .02), transparent 40%), radial-gradient(circle at 85% 70%, rgba(45, 125, 42, .015), transparent 35%);
  background-position: 8% 20%, 92% 80%, 0 0, 0 0, 0 0;
  background-size: 100px 100px, 120px 120px, 40px 40px, 100% 100%, 100% 100%
}

@media (max-width:992px) {
  .company {
    padding: 80px 0
  }

  .company__box {
    padding: 50px 40px;
    margin: 0 20px
  }

  .company__title {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 35px
  }

  .company__title::before {
    width: 100px;
    top: -18px
  }

  .company__txt {
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 20px
  }

  .company__txt:nth-of-type(2),
  .company__txt:nth-of-type(4) {
    padding: 18px 25px;
    margin: 25px 0
  }

  .company__txt:last-of-type {
    font-size: 17px;
    padding: 20px 30px;
    margin: 30px 0 0 0
  }
}

@media (max-width:768px) {
  .company {
    padding: 60px 0
  }

  .company::after {
    display: none
  }

  .company__box {
    padding: 40px 30px;
    margin: 0 15px;
    border-radius: 20px
  }

  .company__box::after {
    display: none
  }

  .company__title {
    margin-bottom: 30px;
    text-align: center
  }

  .company__title::before {
    width: 80px;
    top: -15px
  }

  .company__txt {
    text-align: left;
    font-size: 15px;
    padding: 0 10px
  }

  .company__txt:nth-of-type(2)::before {
    font-size: 28px;
    top: -2px;
    left: 8px
  }

  .company__txt:nth-of-type(2),
  .company__txt:nth-of-type(4) {
    padding: 15px 20px;
    margin: 20px 0
  }

  .company__txt:last-of-type {
    font-size: 16px;
    padding: 18px 25px
  }

  .company__txt:last-of-type::before {
    top: -10px;
    padding: 6px 10px;
    font-size: 14px
  }
}

@media (max-width:480px) {
  .company {
    padding: 50px 0
  }

  .company__box {
    padding: 30px 20px;
    margin: 0 10px;
    border-radius: 16px
  }

  .company__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 25px
  }

  .company__title::before {
    width: 60px;
    height: 2px;
    top: -12px
  }

  .company__title::after {
    width: 60px;
    height: 3px
  }

  .company__txt {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 5px;
    margin-bottom: 18px
  }

  .company__txt:nth-of-type(2),
  .company__txt:nth-of-type(4) {
    padding: 12px 18px;
    margin: 18px 0
  }

  .company__txt:last-of-type {
    font-size: 15px;
    padding: 15px 20px;
    margin: 25px 0 0 0
  }

  .company__txt:last-of-type::before {
    top: -20px;
    padding: 5px 8px;
    font-size: 12px
  }
}

.weAreHereForYou {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0, #f8fffe 50%, #f1f8f1 100%);
  position: relative;
  overflow: hidden
}

.weAreHereForYou::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/Stef_icons_alle_Geraetepruefung-Kopie.svg) 10% 15%/90px 90px no-repeat, url(../img/Stef_icons_alle_Elektroinstallationen.svg) 90% 85%/80px 80px no-repeat, radial-gradient(circle at 20% 40%, rgba(57, 157, 52, .02) 0, transparent 40%), radial-gradient(circle at 80% 60%, rgba(45, 125, 42, .015) 0, transparent 35%);
  opacity: .5;
  pointer-events: none
}

.weAreHereForYou::after {
  content: "🚨";
  position: absolute;
  top: 12%;
  right: 8%;
  font-size: 32px;
  opacity: .3;
  -webkit-animation: pulse 3s ease-in-out infinite;
  animation: pulse 3s ease-in-out infinite
}

@-webkit-keyframes pulse {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .3
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .5
  }
}

@keyframes pulse {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .3
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .5
  }
}

.weAreHereForYou__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 2
}

.weAreHereForYou__imgWrp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 450px
}

.weAreHereForYou__imgWrp::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: conic-gradient(from 0deg, rgba(57, 157, 52, .1) 0deg, rgba(45, 125, 42, .05) 90deg, rgba(57, 157, 52, .08) 180deg, rgba(45, 125, 42, .03) 270deg);
  border-radius: 50%;
  z-index: -1
}

.weAreHereForYou__imgWrp::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(57, 157, 52, .05), rgba(45, 125, 42, .02), rgba(57, 157, 52, .05));
  border-radius: 20px;
  z-index: -1
}

.weAreHereForYou__img {
  width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .06);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.weAreHereForYou__img:hover {
  -webkit-transform: translateY(-8px) scale(1.02);
  -ms-transform: translateY(-8px) scale(1.02);
  transform: translateY(-8px) scale(1.02);
  -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, .15), 0 12px 24px rgba(0, 0, 0, .08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .15), 0 12px 24px rgba(0, 0, 0, .08)
}

.weAreHereForYou__content {
  -webkit-box-flex: 1.2;
  -ms-flex: 1.2;
  flex: 1.2;
  max-width: 600px
}

.weAreHereForYou__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  color: #1a1a1a;
  margin-bottom: 40px;
  position: relative
}

.weAreHereForYou__title::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: repeating-linear-gradient(90deg, #dc2626 0, #dc2626 10px, #fff 10px, #fff 15px, var(--mainColor) 15px, var(--mainColor) 25px, #fff 25px, #fff 30px);
  border-radius: 2px
}

.weAreHereForYou__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 8px rgba(57, 157, 52, .3);
  box-shadow: 0 2px 8px rgba(57, 157, 52, .3)
}

.weAreHereForYou__ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 15px
}

.weAreHereForYou__ul:first-of-type li {
  position: relative;
  padding: 15px 20px 15px 50px;
  background: linear-gradient(135deg, rgba(220, 38, 38, .04), rgba(239, 68, 68, .02));
  border-left: 4px solid #dc2626;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(220, 38, 38, .08);
  box-shadow: 0 4px 12px rgba(220, 38, 38, .08);
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.weAreHereForYou__ul:first-of-type li::before {
  content: "⚠️";
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px
}

.weAreHereForYou__ul:first-of-type li:hover {
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
  background: linear-gradient(135deg, rgba(220, 38, 38, .06), rgba(239, 68, 68, .03));
  -webkit-box-shadow: 0 8px 20px rgba(220, 38, 38, .12);
  box-shadow: 0 8px 20px rgba(220, 38, 38, .12);
  border-left-color: #b91c1c
}

.weAreHereForYou__ul:last-of-type li {
  position: relative;
  padding: 15px 20px 15px 50px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .04), rgba(45, 125, 42, .02));
  border-left: 4px solid var(--mainColor);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(57, 157, 52, .08);
  box-shadow: 0 4px 12px rgba(57, 157, 52, .08);
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.weAreHereForYou__ul:last-of-type li::before {
  content: "🔧";
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px
}

.weAreHereForYou__ul:last-of-type li:hover {
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
  background: linear-gradient(135deg, rgba(57, 157, 52, .06), rgba(45, 125, 42, .03));
  -webkit-box-shadow: 0 8px 20px rgba(57, 157, 52, .12);
  box-shadow: 0 8px 20px rgba(57, 157, 52, .12);
  border-left-color: #2d7d2a
}

.weAreHereForYou__ul li {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.weAreHereForYou__ul li::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  opacity: .3;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.weAreHereForYou__ul li:hover::after {
  opacity: .6;
  -webkit-transform: translateY(-50%) scale(1.2);
  -ms-transform: translateY(-50%) scale(1.2);
  transform: translateY(-50%) scale(1.2)
}

.weAreHereForYou::before {
  background-image: url(../img/Stef_icons_alle_Geraetepruefung-Kopie.svg), url(../img/Stef_icons_alle_Elektroinstallationen.svg), repeating-linear-gradient(135deg, rgba(57, 157, 52, .005) 0, rgba(57, 157, 52, .005) 1px, transparent 1px, transparent 25px), radial-gradient(circle at 20% 40%, rgba(57, 157, 52, .02), transparent 40%), radial-gradient(circle at 80% 60%, rgba(45, 125, 42, .015), transparent 35%);
  background-position: 10% 15%, 90% 85%, 0 0, 0 0, 0 0;
  background-size: 90px 90px, 80px 80px, 50px 50px, 100% 100%, 100% 100%
}

@media (max-width:992px) {
  .weAreHereForYou {
    padding: 80px 0
  }

  .weAreHereForYou__box {
    gap: 40px
  }

  .weAreHereForYou__title {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 35px
  }

  .weAreHereForYou__ul {
    gap: 12px;
    margin-bottom: 25px
  }

  .weAreHereForYou__ul li {
    padding: 12px 18px 12px 45px;
    font-size: 15px
  }

  .weAreHereForYou__ul li::before {
    left: 15px;
    font-size: 16px
  }
}

@media (max-width:768px) {
  .weAreHereForYou {
    padding: 60px 0
  }

  .weAreHereForYou::after {
    display: none
  }

  .weAreHereForYou__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px
  }

  .weAreHereForYou__imgWrp {
    max-width: 350px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .weAreHereForYou__imgWrp::after,
  .weAreHereForYou__imgWrp::before {
    display: none
  }

  .weAreHereForYou__content {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .weAreHereForYou__title {
    text-align: center;
    margin-bottom: 30px
  }

  .weAreHereForYou__title::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50px
  }

  .weAreHereForYou__title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80px
  }

  .weAreHereForYou__ul li {
    padding: 10px 15px 10px 40px;
    font-size: 14px
  }

  .weAreHereForYou__ul li::before {
    left: 12px;
    font-size: 14px
  }

  .weAreHereForYou__ul li:hover {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px)
  }

  .weAreHereForYou__img {
    max-height: 300px
  }
}

@media (max-width:480px) {
  .weAreHereForYou {
    padding: 50px 0
  }

  .weAreHereForYou__box {
    gap: 30px
  }

  .weAreHereForYou__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 25px
  }

  .weAreHereForYou__title::before {
    width: 40px;
    height: 3px
  }

  .weAreHereForYou__title::after {
    width: 60px;
    height: 2px
  }

  .weAreHereForYou__ul {
    gap: 10px;
    margin-bottom: 20px
  }

  .weAreHereForYou__ul li {
    padding: 8px 12px 8px 35px;
    font-size: 13px;
    line-height: 1.4
  }

  .weAreHereForYou__ul li::before {
    left: 10px;
    font-size: 12px
  }

  .weAreHereForYou__ul li::after {
    width: 6px;
    height: 6px;
    right: 10px
  }

  .weAreHereForYou__imgWrp {
    max-width: 280px
  }

  .weAreHereForYou__img {
    max-height: 250px
  }
}

.prices {
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f8f1 0, #fff 50%, #f8fffe 100%);
  position: relative;
  overflow: hidden
}

.prices::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 20%, rgba(57, 157, 52, .02) 0, transparent 40%), radial-gradient(circle at 85% 80%, rgba(45, 125, 42, .015) 0, transparent 35%), radial-gradient(circle at 50% 50%, rgba(57, 157, 52, .01) 0, transparent 30%);
  pointer-events: none
}

.prices::after {
  content: "💰";
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 48px;
  opacity: .1;
  -webkit-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg)
}

.prices__box {
  position: relative;
  z-index: 2
}

.prices__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 60px;
  position: relative
}

.prices__title::before {
  content: "€";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 32px;
  color: var(--mainColor);
  opacity: .3;
  font-weight: 700
}

.prices__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, var(--mainColor)), color-stop(50%, #2d7d2a), color-stop(80%, var(--mainColor)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--mainColor) 20%, #2d7d2a 50%, var(--mainColor) 80%, transparent);
  border-radius: 2px
}

.prices__box {
  display: block
}

.prices__wrp {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, .08), 0 6px 15px rgba(0, 0, 0, .05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08), 0 6px 15px rgba(0, 0, 0, .05);
  border: 1px solid rgba(255, 255, 255, .3);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden
}

.prices__wrp::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .1), rgba(45, 125, 42, .05), rgba(57, 157, 52, .08));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.prices__wrp:nth-child(2) {
  border-top: 4px solid var(--mainColor)
}

.prices__wrp:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(57, 157, 52, .02), transparent 60%);
  pointer-events: none
}

.prices__wrp:nth-child(3) {
  border-top: 4px solid #f97316
}

.prices__wrp:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, .02), transparent 60%);
  pointer-events: none
}

.prices__wrp:nth-child(4) {
  border-top: 4px solid #3b82f6
}

.prices__wrp:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, .02), transparent 60%);
  pointer-events: none
}

.prices__wrp:nth-child(5) {
  border-top: 4px solid #8b5cf6
}

.prices__wrp:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, .02), transparent 60%);
  pointer-events: none
}

.prices__wrp:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .12), 0 10px 25px rgba(0, 0, 0, .08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12), 0 10px 25px rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .95)
}

.prices__wrp:hover::before {
  opacity: 1
}

.prices__days {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #555
}

.prices__days span {
  display: block;
  line-height: 1.3
}

.prices__days span:first-child {
  font-size: 18px;
  color: #333;
  font-weight: 700
}

.prices__days span:last-child {
  font-size: 14px;
  color: #666;
  margin-top: 4px
}

.prices__price {
  font-size: 48px;
  font-weight: 700;
  color: var(--mainColor);
  margin: 0 0 25px 0;
  position: relative;
  font-family: var(--font-heading);
  line-height: 1
}

.prices__price::after {
  content: "€";
  position: absolute;
  top: 0;
  right: -15px;
  font-size: 28px;
  color: #666;
  font-weight: 500;
  opacity: .8
}

.prices__price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(57, 157, 52, .05), transparent 70%);
  border-radius: 50%;
  z-index: -1
}

.prices__ul {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0
}

.prices__ul li {
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  position: relative;
  text-align: left;
  padding-left: 25px;
  line-height: 1.4
}

.prices__ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--mainColor);
  font-weight: 700;
  font-size: 12px
}

.prices__ul li:last-child {
  font-weight: 600;
  color: #555;
  border-top: 1px solid rgba(57, 157, 52, .1);
  padding-top: 12px;
  margin-top: 8px
}

.prices__btnWrp {
  margin-bottom: 20px
}

.prices__btn {
  background-color: var(--mainColor);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 18px;
  padding: 12px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  -webkit-box-shadow: var(--shadow-md);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  position: relative;
  overflow: hidden
}

.prices__btn span {
  position: relative;
  z-index: 2
}

.prices__btn span::before {
  content: "";
  position: absolute;
  background-image: url(../icons/telephone-fill.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 22px;
  aspect-ratio: 1;
  left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
}

.prices__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  -webkit-transition: left .5s;
  transition: left .5s;
  z-index: 1
}

.prices__btn:hover {
  background-color: #2d7d2a;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg)
}

.prices__btn:hover::before {
  left: 100%
}

.prices__btn:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: var(--shadow-md);
  box-shadow: var(--shadow-md)
}

.prices__btn::before {
  content: "📞";
  margin-right: 8px;
  font-size: 14px
}

.prices__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  -webkit-transition: left .5s;
  transition: left .5s
}

.prices__btn:hover {
  background: linear-gradient(135deg, #2d7d2a, var(--mainColor));
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(57, 157, 52, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
  box-shadow: 0 8px 25px rgba(57, 157, 52, .3), inset 0 1px 0 rgba(255, 255, 255, .2)
}

.prices__btn:hover::after {
  left: 100%
}

.prices__txt {
  font-size: 12px;
  color: #888;
  margin: 0;
  font-style: italic;
  line-height: 1.3
}

.prices__box {
  display: block
}

.prices__wrp {
  margin-bottom: 30px
}

@media (min-width:992px) {
  .prices__box {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
  }

  .prices__title {
    grid-column: 1/-1;
    margin-bottom: 40px
  }

  .prices__wrp {
    margin-bottom: 0
  }
}

@media (max-width:992px) {
  .prices {
    padding: 80px 0
  }

  .prices__title {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 50px
  }

  .prices__wrp {
    margin-bottom: 25px;
    padding: 30px 25px
  }

  .prices__price {
    font-size: 42px
  }

  .prices__price::after {
    font-size: 24px;
    right: -12px
  }
}

@media (max-width:768px) {
  .prices {
    padding: 60px 0
  }

  .prices::after {
    display: none
  }

  .prices__title {
    margin-bottom: 40px
  }

  .prices__title::before {
    font-size: 28px;
    top: -30px
  }

  .prices__wrp {
    padding: 25px 20px;
    border-radius: 16px
  }

  .prices__price {
    font-size: 38px
  }

  .prices__price::after {
    font-size: 22px;
    right: -10px
  }

  .prices__price::before {
    width: 100px;
    height: 100px
  }

  .prices__btn {
    font-size: 15px;
    padding: 10px 18px
  }
}

@media (max-width:480px) {
  .prices {
    padding: 50px 0
  }

  .prices__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 35px
  }

  .prices__wrp {
    padding: 20px 15px;
    margin-bottom: 20px
  }

  .prices__price {
    font-size: 34px
  }

  .prices__price::after {
    font-size: 20px;
    right: -8px
  }

  .prices__price::before {
    width: 80px;
    height: 80px
  }

  .prices__ul li {
    font-size: 13px;
    padding: 6px 0 6px 20px
  }

  .prices__ul li::before {
    font-size: 11px
  }

  .prices__btn {
    font-size: 14px;
    padding: 10px 15px
  }

  .prices__btn::before {
    font-size: 12px
  }

  .prices__txt {
    font-size: 11px
  }
}

.sheep {
  padding: 120px 0;
  background: linear-gradient(135deg, #fefbf0 0, #fff 50%, #fef9e7 100%);
  position: relative;
  overflow: hidden
}

.sheep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(245, 158, 11, .02) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(251, 191, 36, .015) 0, transparent 35%), radial-gradient(circle at 50% 50%, rgba(245, 158, 11, .01) 0, transparent 30%);
  pointer-events: none
}

.sheep::after {
  content: "⚠️";
  position: absolute;
  top: 15%;
  left: 8%;
  font-size: 36px;
  opacity: .2;
  -webkit-animation: warning-pulse 2s ease-in-out infinite;
  animation: warning-pulse 2s ease-in-out infinite
}

@-webkit-keyframes warning-pulse {

  0%,
  100% {
    -webkit-transform: scale(1) rotate(-5deg);
    transform: scale(1) rotate(-5deg);
    opacity: .2
  }

  50% {
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
    opacity: .4
  }
}

@keyframes warning-pulse {

  0%,
  100% {
    -webkit-transform: scale(1) rotate(-5deg);
    transform: scale(1) rotate(-5deg);
    opacity: .2
  }

  50% {
    -webkit-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
    opacity: .4
  }
}

@-webkit-keyframes black-sheep-head {

  0%,
  100% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg)
  }

  50% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg)
  }
}

@keyframes black-sheep-head {

  0%,
  100% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg)
  }

  50% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg)
  }
}

@-webkit-keyframes sheep-gentle-sway {

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

  50% {
    -webkit-transform: translateY(-2px) rotate(1deg);
    transform: translateY(-2px) rotate(1deg)
  }
}

@keyframes sheep-gentle-sway {

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

  50% {
    -webkit-transform: translateY(-2px) rotate(1deg);
    transform: translateY(-2px) rotate(1deg)
  }
}

.sheep__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 50px;
  -webkit-box-shadow: 0 15px 35px rgba(245, 158, 11, .08), 0 6px 15px rgba(245, 158, 11, .05), inset 0 1px 0 rgba(255, 255, 255, .8);
  box-shadow: 0 15px 35px rgba(245, 158, 11, .08), 0 6px 15px rgba(245, 158, 11, .05), inset 0 1px 0 rgba(255, 255, 255, .8);
  border: 2px solid rgba(245, 158, 11, .1)
}

.sheep__box::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: repeating-linear-gradient(45deg, rgba(245, 158, 11, .08) 0, rgba(245, 158, 11, .08) 10px, rgba(251, 191, 36, .06) 10px, rgba(251, 191, 36, .06) 20px);
  border-radius: 23px;
  z-index: -1
}

.sheep__content {
  -webkit-box-flex: 1.2;
  -ms-flex: 1.2;
  flex: 1.2;
  max-width: 500px
}

.sheep__title {
  font-size: 26px;
  font-weight: 600;
  color: #d97706;
  margin: 0 0 25px 0;
  line-height: 1.4;
  position: relative;
  font-family: var(--font-heading);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.sheep__title::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #d97706 0, #d97706 8px, #f59e0b 8px, #f59e0b 16px);
  border-radius: 2px
}

.sheep__title strong {
  color: #b45309;
  font-weight: 700;
  position: relative
}

.sheep__title strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#d97706), to(#f59e0b));
  background: linear-gradient(90deg, #d97706, #f59e0b);
  opacity: .3
}

.sheep__txt {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, .05), rgba(239, 68, 68, .03));
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.sheep__imgWrp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 420px
}

.sheep__imgWrp::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: conic-gradient(from 45deg, rgba(245, 158, 11, .04) 0deg, rgba(251, 191, 36, .02) 90deg, rgba(245, 158, 11, .03) 180deg, rgba(251, 191, 36, .01) 270deg);
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: rotate-warning 20s linear infinite;
  animation: rotate-warning 20s linear infinite
}

@-webkit-keyframes rotate-warning {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes rotate-warning {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

.sheep__img {
  width: 100%;
  height: auto;
  max-height: 380px;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .1));
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .1));
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.sheep__img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .15))
}

.sheep__imgWrp svg {
  max-width: 100%;
  height: auto;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.sheep__imgWrp svg g:nth-child(4) g#head {
  -webkit-animation: black-sheep-head 4s ease-in-out infinite;
  animation: black-sheep-head 4s ease-in-out infinite;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom
}

.sheep__imgWrp svg g#head {
  -webkit-animation: black-sheep-head 4s ease-in-out infinite;
  animation: black-sheep-head 4s ease-in-out infinite;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom
}

.sheep::before {
  background-image: repeating-linear-gradient(135deg, rgba(245, 158, 11, .005) 0, rgba(245, 158, 11, .005) 1px, transparent 1px, transparent 30px), radial-gradient(circle at 20% 30%, rgba(245, 158, 11, .02), transparent 40%), radial-gradient(circle at 80% 70%, rgba(251, 191, 36, .015), transparent 35%);
  background-size: 60px 60px, 100% 100%, 100% 100%
}

@media (max-width:992px) {
  .sheep {
    padding: 80px 0
  }

  .sheep__box {
    gap: 50px;
    padding: 45px 35px
  }

  .sheep__title {
    font-size: 24px;
    margin-bottom: 22px
  }

  .sheep__txt {
    font-size: 17px;
    padding: 18px
  }

  .sheep__img {
    max-height: 320px
  }
}

@media (max-width:768px) {
  .sheep {
    padding: 70px 0;
    overflow-x: hidden
  }

  .sheep::after {
    display: none
  }

  .sheep__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
    text-align: center
  }

  .sheep__box::before {
    display: none
  }

  .sheep__content {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .sheep__imgWrp {
    max-width: 300px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .sheep__imgWrp::before {
    display: none
  }

  .sheep__title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px
  }

  .sheep__title::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px
  }

  .sheep__txt {
    text-align: left;
    font-size: 16px;
    padding: 16px
  }

  .sheep__img {
    max-height: 260px
  }
}

@media (max-width:480px) {
  .sheep {
    padding: 50px 0;
    margin: 0 10px
  }

  .sheep__box {
    gap: 30px;
    padding: 30px 20px;
    border-radius: 12px;
    margin: 0 5px;
    overflow: hidden
  }

  .sheep__title {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.3
  }

  .sheep__title::before {
    width: 40px;
    height: 2px;
    top: -8px
  }

  .sheep__txt {
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 14px
  }

  .sheep__imgWrp {
    max-width: 220px;
    width: 100%
  }

  .sheep__imgWrp::before {
    display: none
  }

  .sheep__imgWrp svg {
    max-width: 100%;
    height: auto;
    width: auto !important;
  }

  .sheep__img {
    max-height: 170px;
    width: 100%;
    max-width: 100%
  }
}

@media (max-width:375px) {
  .sheep {
    padding: 25px 0;
    margin: 0 5px
  }

  .sheep__box {
    gap: 15px;
    padding: 15px 10px;
    border-radius: 10px;
    margin: 0
  }

  .sheep__title {
    font-size: 14px;
    margin-bottom: 10px
  }

  .sheep__title::before {
    width: 35px;
    height: 1px;
    top: -6px
  }

  .sheep__txt {
    font-size: 11px;
    line-height: 1.3;
    padding: 5px 6px
  }

  .sheep__imgWrp {
    max-width: 150px
  }

  .sheep__img {
    max-height: 110px
  }
}

@media (max-width:320px) {
  .sheep {
    padding: 20px 0;
    margin: 0
  }

  .sheep__box {
    gap: 12px;
    padding: 12px 8px;
    border-radius: 8px
  }

  .sheep__title {
    font-size: 13px;
    margin-bottom: 8px
  }

  .sheep__txt {
    font-size: 10px;
    padding: 4px
  }

  .sheep__imgWrp {
    max-width: 130px
  }

  .sheep__img {
    max-height: 100px
  }
}

.guarantee {
  padding: 100px 0;
  background: linear-gradient(120deg, #f8fafc 0, #fff 50%, #f0f7f0 100%);
  position: relative;
  overflow: hidden
}

.guarantee::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 25%, rgba(245, 158, 11, .03) 0, transparent 45%), radial-gradient(circle at 85% 75%, rgba(34, 197, 94, .02) 0, transparent 40%), radial-gradient(circle at 45% 60%, rgba(245, 158, 11, .015) 0, transparent 35%);
  pointer-events: none
}

.guarantee::after {
  content: "✓";
  position: absolute;
  top: 20%;
  right: 10%;
  font-size: 48px;
  color: rgba(34, 197, 94, .15);
  -webkit-animation: guarantee-float 4s ease-in-out infinite;
  animation: guarantee-float 4s ease-in-out infinite;
  font-weight: 700
}

@-webkit-keyframes guarantee-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(-5deg);
    transform: translateY(0) rotate(-5deg);
    opacity: .15
  }

  50% {
    -webkit-transform: translateY(-15px) rotate(5deg);
    transform: translateY(-15px) rotate(5deg);
    opacity: .25
  }
}

@keyframes guarantee-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(-5deg);
    transform: translateY(0) rotate(-5deg);
    opacity: .15
  }

  50% {
    -webkit-transform: translateY(-15px) rotate(5deg);
    transform: translateY(-15px) rotate(5deg);
    opacity: .25
  }
}

.guarantee__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9) 0, rgba(240, 247, 240, .8) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 50px;
  -webkit-box-shadow: 0 20px 40px rgba(245, 158, 11, .1), 0 8px 20px rgba(245, 158, 11, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  box-shadow: 0 20px 40px rgba(245, 158, 11, .1), 0 8px 20px rgba(245, 158, 11, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  border: 2px solid rgba(34, 197, 94, .1)
}

.guarantee__box::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, rgba(34, 197, 94, .1) 0, rgba(245, 158, 11, .08) 25%, rgba(34, 197, 94, .1) 50%, rgba(245, 158, 11, .08) 75%, rgba(34, 197, 94, .1) 100%);
  border-radius: 28px;
  z-index: -1;
  -webkit-animation: guarantee-border 6s linear infinite;
  animation: guarantee-border 6s linear infinite
}

@-webkit-keyframes guarantee-border {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 200% 200%
  }
}

@keyframes guarantee-border {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 200% 200%
  }
}

.guarantee__content {
  -webkit-box-flex: 1.3;
  -ms-flex: 1.3;
  flex: 1.3;
  max-width: 580px
}

.guarantee__title {
  font-size: 28px;
  font-weight: 700;
  color: #22c55e;
  margin: 0 0 30px 0;
  line-height: 1.3;
  position: relative;
  font-family: var(--font-heading);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.guarantee__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 120px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#22c55e), color-stop(50%, #f59e0b), to(#22c55e));
  background: linear-gradient(90deg, #22c55e 0, #f59e0b 50%, #22c55e 100%);
  border-radius: 2px
}

.guarantee__txt {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 20px 0;
  position: relative;
  padding: 0 0 0 25px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.guarantee__txt::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #22c55e;
  font-weight: 700;
  font-size: 14px
}

.guarantee__txt:last-of-type {
  margin-bottom: 0;
  padding-left: 0
}

.guarantee__txt:last-of-type::before {
  display: none
}

.guarantee__btnWrp {
  margin-top: 35px;
  position: relative
}

.guarantee__btnRequest {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #22c55e 0, #16a34a 100%);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-shadow: 0 8px 20px rgba(34, 197, 94, .3), 0 4px 10px rgba(34, 197, 94, .2);
  box-shadow: 0 8px 20px rgba(34, 197, 94, .3), 0 4px 10px rgba(34, 197, 94, .2);
  position: relative;
  overflow: hidden
}

.guarantee__btnRequest::before {
  content: "🤝";
  font-size: 18px
}

.guarantee__btnRequest::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  -webkit-transition: left .5s ease;
  transition: left .5s ease
}

.guarantee__btnRequest:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 30px rgba(34, 197, 94, .4), 0 6px 15px rgba(34, 197, 94, .3);
  box-shadow: 0 12px 30px rgba(34, 197, 94, .4), 0 6px 15px rgba(34, 197, 94, .3);
  color: #fff
}

.guarantee__btnRequest:hover::after {
  left: 100%
}

.guarantee__btnRequest:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0)
}

.guarantee__imgWrp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 400px
}

.guarantee__imgWrp::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: conic-gradient(from 0deg, rgba(34, 197, 94, .08) 0deg, rgba(245, 158, 11, .05) 90deg, rgba(34, 197, 94, .06) 180deg, rgba(245, 158, 11, .03) 270deg);
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: guarantee-rotate 15s linear infinite;
  animation: guarantee-rotate 15s linear infinite
}

.guarantee__imgWrp::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(34, 197, 94, .1);
  border-radius: 20px;
  z-index: -1
}

@-webkit-keyframes guarantee-rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes guarantee-rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

.guarantee__img {
  width: 100%;
  height: auto;
  max-height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  -webkit-filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .15));
  -webkit-transition: all .4s ease;
  transition: all .4s ease
}

.guarantee__img:hover {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-filter: drop-shadow(0 15px 35px rgba(0, 0, 0, .2));
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, .2))
}

@media (max-width:992px) {
  .guarantee {
    padding: 80px 0
  }

  .guarantee__box {
    gap: 50px;
    padding: 40px 35px
  }

  .guarantee__title {
    font-size: 26px;
    margin-bottom: 25px
  }

  .guarantee__txt {
    font-size: 15px;
    margin-bottom: 18px
  }

  .guarantee__img {
    max-height: 300px
  }
}

@media (max-width:768px) {
  .guarantee {
    padding: 70px 0;
    overflow-x: hidden
  }

  .guarantee::after {
    display: none
  }

  .guarantee__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding: 35px 25px;
    text-align: center
  }

  .guarantee__box::before {
    display: none
  }

  .guarantee__content {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .guarantee__imgWrp {
    max-width: 320px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .guarantee__imgWrp::after,
  .guarantee__imgWrp::before {
    display: none
  }

  .guarantee__title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px
  }

  .guarantee__title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100px
  }

  .guarantee__txt {
    text-align: left;
    font-size: 14px;
    margin-bottom: 16px;
    padding-left: 20px
  }

  .guarantee__btnWrp {
    text-align: center;
    margin-top: 30px
  }

  .guarantee__img {
    max-height: 250px
  }
}

@media (max-width:480px) {
  .guarantee {
    padding: 50px 0;
    margin: 0 10px
  }

  .guarantee__box {
    gap: 30px;
    padding: 25px 20px;
    border-radius: 18px;
    margin: 0 5px
  }

  .guarantee__title {
    font-size: 20px;
    margin-bottom: 18px
  }

  .guarantee__title::after {
    width: 80px;
    height: 2px;
    bottom: -6px
  }

  .guarantee__txt {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
    padding-left: 18px
  }

  .guarantee__btnRequest {
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 10px
  }

  .guarantee__btnRequest::before {
    font-size: 16px
  }

  .guarantee__imgWrp {
    max-width: 280px
  }

  .guarantee__img {
    max-height: 200px;
    border-radius: 12px
  }
}

@media (max-width:375px) {
  .guarantee {
    padding: 40px 0;
    margin: 0 5px
  }

  .guarantee__box {
    gap: 25px;
    padding: 20px 15px;
    border-radius: 15px
  }

  .guarantee__title {
    font-size: 18px;
    margin-bottom: 15px
  }

  .guarantee__txt {
    font-size: 12px;
    margin-bottom: 12px;
    padding-left: 16px
  }

  .guarantee__btnRequest {
    padding: 12px 20px;
    font-size: 13px
  }

  .guarantee__imgWrp {
    max-width: 240px
  }

  .guarantee__img {
    max-height: 180px
  }
}

.review {
  padding: 100px 0;
  background: linear-gradient(135deg, #fafafa 0, #fff 40%, #f0f7f0 100%);
  position: relative;
  overflow: hidden
}

.review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(57, 157, 52, .025) 0, transparent 40%), radial-gradient(circle at 80% 20%, rgba(57, 157, 52, .02) 0, transparent 35%), radial-gradient(circle at 40% 80%, rgba(57, 157, 52, .015) 0, transparent 30%);
  pointer-events: none
}

.review::after {
  content: "⭐";
  position: absolute;
  top: 15%;
  left: 8%;
  font-size: 32px;
  opacity: .15;
  -webkit-animation: star-twinkle 3s ease-in-out infinite;
  animation: star-twinkle 3s ease-in-out infinite
}

@-webkit-keyframes star-twinkle {

  0%,
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
    opacity: .15
  }

  50% {
    -webkit-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
    opacity: .3
  }
}

@keyframes star-twinkle {

  0%,
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
    opacity: .15
  }

  50% {
    -webkit-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
    opacity: .3
  }
}

.rewiews__box {
  position: relative;
  z-index: 2
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.reviews__title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 60px 0;
  line-height: 1.2;
  text-align: center;
  position: relative;
  font-family: var(--font-heading);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.reviews__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#399d34), color-stop(50%, #2d7a2d), to(#399d34));
  background: linear-gradient(90deg, #399d34 0, #2d7a2d 50%, #399d34 100%);
  border-radius: 2px
}

.reviews__wrp {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px
}

.review-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(240, 247, 240, .9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(57, 157, 52, .08), 0 4px 15px rgba(57, 157, 52, .05), inset 0 1px 0 rgba(255, 255, 255, .8);
  box-shadow: 0 10px 30px rgba(57, 157, 52, .08), 0 4px 15px rgba(57, 157, 52, .05), inset 0 1px 0 rgba(255, 255, 255, .8);
  border: 1px solid rgba(57, 157, 52, .1);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#399d34), color-stop(50%, #2d7a2d), to(#399d34));
  background: linear-gradient(90deg, #399d34 0, #2d7a2d 50%, #399d34 100%)
}

.review-card:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 40px rgba(57, 157, 52, .12), 0 8px 25px rgba(57, 157, 52, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
  box-shadow: 0 20px 40px rgba(57, 157, 52, .12), 0 8px 25px rgba(57, 157, 52, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
  border-color: rgba(57, 157, 52, .2)
}

.review-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.review__wrp {
  margin-bottom: 15px
}

.review__wrp h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
  font-family: var(--font-heading);
  position: relative
}

.review__wrp h3::before {
  content: "👤";
  font-size: 16px;
  margin-right: 8px;
  opacity: .7
}

.review-service {
  font-size: 14px;
  font-weight: 500;
  color: #399d34;
  background: rgba(57, 157, 52, .1);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  border: 1px solid rgba(57, 157, 52, .2)
}

.review-service::before {
  content: "🔧";
  font-size: 12px;
  margin-right: 6px
}

.review-comment {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 20px 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding-left: 20px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.review-comment::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 32px;
  color: rgba(57, 157, 52, .3);
  font-family: Georgia, serif;
  line-height: 1
}

.review-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(57, 157, 52, .1)
}

.review-rating {
  font-size: 16px;
  color: #fbbf24;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(251, 191, 36, .3);
  -webkit-filter: drop-shadow(0 0 2px rgba(251, 191, 36, .4));
  filter: drop-shadow(0 0 2px rgba(251, 191, 36, .4))
}

.date {
  font-size: 12px;
  color: #9ca3af;
  font-style: italic
}

.date:empty::after {
  content: "Kürzlich"
}

.review-card:has(.review-rating:contains("★★★★★")) .review-service {
  background: rgba(34, 197, 94, .1);
  color: #22c55e;
  border-color: rgba(34, 197, 94, .2)
}

.review-card:has(.review-rating:contains("★★★★★"))::before {
  background: -webkit-gradient(linear, left top, right top, from(#22c55e), to(#16a34a));
  background: linear-gradient(90deg, #22c55e 0, #16a34a 100%)
}

.write-review-button-wrp {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.write-review-button {
  display: inline-block;
  background: linear-gradient(135deg,
      #399d34 0%,
      #2d7a2d 50%,
      #1f5e21 100%);
  color: white !important;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 20px rgba(57, 157, 52, 0.25),
    0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  &::before {
    content: '👁️';
    margin-right: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
    transition: left 0.6s ease;
  }

  &:hover {
    transform: translateY(-3px);
    box-shadow:
      0 12px 30px rgba(57, 157, 52, 0.35),
      0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg,
        #4ade80 0%,
        #399d34 50%,
        #2d7a2d 100%);
    text-decoration: none;
    color: white !important;

    &::before {
      transform: scale(1.1);
    }

    &::after {
      left: 100%;
    }
  }

  &:active {
    transform: translateY(-1px);
    box-shadow:
      0 6px 15px rgba(57, 157, 52, 0.25),
      0 2px 5px rgba(0, 0, 0, 0.1);
  }

  &:focus {
    outline: none;
    box-shadow:
      0 8px 20px rgba(57, 157, 52, 0.25),
      0 0 0 3px rgba(57, 157, 52, 0.2);
  }
}

@media (max-width:992px) {
  .write-review-button-wrp {
    margin-top: 30px;
  }

  .write-review-button {
    padding: 16px 30px;
    font-size: 15px;
    border-radius: 18px;

    &::before {
      font-size: 15px;
      margin-right: 6px;
    }
  }

  .review {
    padding: 80px 0
  }

  .reviews__title {
    font-size: 28px;
    margin-bottom: 50px
  }

  .reviews__wrp {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px
  }

  .review-card {
    padding: 25px
  }
}

@media (max-width:768px) {
  .write-review-button-wrp {
    margin-top: 25px;
  }

  .write-review-button {
    padding: 14px 25px;
    font-size: 14px;
    border-radius: 16px;

    &::before {
      font-size: 14px;
      margin-right: 5px;
    }
  }

  .review {
    padding: 70px 0;
    overflow-x: hidden
  }

  .review::after {
    display: none
  }

  .reviews__title {
    font-size: 26px;
    margin-bottom: 40px;
    padding: 0 20px
  }

  .reviews__title::after {
    width: 80px
  }

  .reviews__wrp {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px
  }

  .review-card {
    padding: 20px;
    border-radius: 16px
  }

  .review-card:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px)
  }

  .review__wrp h3 {
    font-size: 18px
  }

  .review-comment {
    font-size: 14px;
    padding-left: 15px
  }

  .review-comment::before {
    font-size: 24px
  }
}

@media (max-width:480px) {
  .write-review-button-wrp {
    margin-top: 20px;
  }

  .write-review-button {
    padding: 12px 20px;
    font-size: 13px;
    border-radius: 14px;
    letter-spacing: 0.3px;

    &::before {
      font-size: 13px;
      margin-right: 4px;
    }
  }

  .review {
    padding: 50px 0;
    margin: 0 10px
  }

  .reviews__title {
    font-size: 22px;
    margin-bottom: 30px;
    padding: 0 10px
  }

  .reviews__title::after {
    width: 60px;
    height: 3px;
    bottom: -12px
  }

  .reviews__wrp {
    gap: 15px;
    padding: 0 5px
  }

  .review-card {
    padding: 18px;
    border-radius: 14px;
    margin: 0 5px
  }

  .review__wrp {
    margin-bottom: 12px
  }

  .review__wrp h3 {
    font-size: 16px
  }

  .review__wrp h3::before {
    font-size: 14px;
    margin-right: 6px
  }

  .review-service {
    font-size: 12px;
    padding: 3px 10px;
    margin-bottom: 12px
  }

  .review-service::before {
    font-size: 10px;
    margin-right: 4px
  }

  .review-comment {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding-left: 12px
  }

  .review-comment::before {
    font-size: 20px;
    top: -3px
  }

  .review-meta {
    padding-top: 12px
  }

  .review-rating {
    font-size: 14px;
    letter-spacing: 1px
  }

  .date {
    font-size: 11px
  }
}

@media (max-width:375px) {
  .write-review-button-wrp {
    margin-top: 18px;
  }

  .write-review-button {
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 12px;
    letter-spacing: 0.2px;

    &::before {
      font-size: 12px;
    }
  }

  .review {
    padding: 40px 0;
    margin: 0 5px
  }

  .reviews__title {
    font-size: 20px;
    margin-bottom: 25px;
    padding: 0 5px
  }

  .review-card {
    padding: 15px;
    border-radius: 12px;
    margin: 0
  }

  .review__wrp h3 {
    font-size: 15px
  }

  .review-service {
    font-size: 11px;
    padding: 2px 8px
  }

  .review-comment {
    font-size: 12px;
    padding-left: 10px
  }

  .review-comment::before {
    font-size: 18px
  }

  .review-rating {
    font-size: 13px
  }
}

.aboutUs {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0, #fff 35%, #f0f7f0 100%);
  position: relative;
  overflow: hidden
}

.aboutUs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(57, 157, 52, .04) 0, transparent 50%), radial-gradient(circle at 75% 75%, rgba(57, 157, 52, .03) 0, transparent 45%), radial-gradient(circle at 50% 50%, rgba(57, 157, 52, .02) 0, transparent 40%);
  pointer-events: none
}

.aboutUs::after {
  content: "🏢";
  position: absolute;
  top: 20%;
  right: 8%;
  font-size: 40px;
  opacity: .1;
  -webkit-animation: company-float 5s ease-in-out infinite;
  animation: company-float 5s ease-in-out infinite
}

@-webkit-keyframes company-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(-3deg);
    transform: translateY(0) rotate(-3deg);
    opacity: .1
  }

  50% {
    -webkit-transform: translateY(-20px) rotate(3deg);
    transform: translateY(-20px) rotate(3deg);
    opacity: .2
  }
}

@keyframes company-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(-3deg);
    transform: translateY(0) rotate(-3deg);
    opacity: .1
  }

  50% {
    -webkit-transform: translateY(-20px) rotate(3deg);
    transform: translateY(-20px) rotate(3deg);
    opacity: .2
  }
}

.aboutUs__box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(254, 247, 237, .9) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 60px 50px;
  -webkit-box-shadow: 0 25px 50px rgba(57, 157, 52, .08), 0 10px 25px rgba(57, 157, 52, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
  box-shadow: 0 25px 50px rgba(57, 157, 52, .08), 0 10px 25px rgba(57, 157, 52, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
  border: 2px solid rgba(57, 157, 52, .08);
  text-align: center
}

.aboutUs__box::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, rgba(57, 157, 52, .1) 0, rgba(45, 122, 45, .08) 25%, rgba(57, 157, 52, .1) 50%, rgba(45, 122, 45, .08) 75%, rgba(57, 157, 52, .1) 100%);
  background-size: 400% 400%;
  border-radius: 32px;
  z-index: -1;
  -webkit-animation: aboutUs-border 8s ease-in-out infinite;
  animation: aboutUs-border 8s ease-in-out infinite
}

.aboutUs__box::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 1px solid rgba(57, 157, 52, .06);
  border-radius: 20px;
  pointer-events: none
}

@-webkit-keyframes aboutUs-border {

  0%,
  100% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }
}

@keyframes aboutUs-border {

  0%,
  100% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.aboutUs__title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 40px 0;
  line-height: 1.2;
  position: relative;
  font-family: var(--font-heading);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.aboutUs__title::before {
  content: "⚡";
  display: block;
  font-size: 32px;
  margin-bottom: 15px;
  opacity: .8;
  -webkit-animation: electric-pulse 2s ease-in-out infinite;
  animation: electric-pulse 2s ease-in-out infinite
}

.aboutUs__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 140px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, #399d34), color-stop(50%, #2d7a2d), color-stop(80%, #399d34), to(transparent));
  background: linear-gradient(90deg, transparent 0, #399d34 20%, #2d7a2d 50%, #399d34 80%, transparent 100%);
  border-radius: 2px
}

@-webkit-keyframes electric-pulse {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .8
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1
  }
}

@keyframes electric-pulse {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .8
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1
  }
}

.aboutUs__txt {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0 0 30px 0;
  text-align: left;
  position: relative;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .03) 0, rgba(255, 255, 255, .8) 50%, rgba(57, 157, 52, .02) 100%);
  border-radius: 16px;
  border-left: 4px solid rgba(57, 157, 52, .3);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.aboutUs__txt:nth-child(2)::before {
  content: "01";
  position: absolute;
  top: -8px;
  left: 20px;
  background: #399d34;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  line-height: 1
}

.aboutUs__txt:nth-child(3)::before {
  content: "02";
  position: absolute;
  top: -8px;
  left: 20px;
  background: #2d7a2d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  line-height: 1
}

.aboutUs__txt:nth-child(4) {
  margin-bottom: 0
}

.aboutUs__txt:nth-child(4)::before {
  content: "03";
  position: absolute;
  top: -8px;
  left: 20px;
  background: #1f5e21;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  line-height: 1
}

.aboutUs__txt::first-letter {
  font-size: 1.4em;
  font-weight: 600;
  color: #2d7a2d
}

@media (max-width:992px) {
  .aboutUs {
    padding: 100px 0
  }

  .aboutUs__box {
    max-width: 800px;
    padding: 50px 40px;
    border-radius: 24px
  }

  .aboutUs__title {
    font-size: 32px;
    margin-bottom: 35px
  }

  .aboutUs__title::before {
    font-size: 28px;
    margin-bottom: 12px
  }

  .aboutUs__title::after {
    width: 120px
  }

  .aboutUs__txt {
    font-size: 17px;
    margin-bottom: 25px;
    padding: 22px 25px
  }
}

@media (max-width:768px) {
  .aboutUs {
    padding: 80px 0;
    overflow-x: hidden
  }

  .aboutUs::after {
    display: none
  }

  .aboutUs__box {
    max-width: 100%;
    margin: 0 20px;
    padding: 40px 30px;
    border-radius: 20px
  }

  .aboutUs__box::after,
  .aboutUs__box::before {
    display: none
  }

  .aboutUs__title {
    font-size: 28px;
    margin-bottom: 30px
  }

  .aboutUs__title::before {
    font-size: 24px;
    margin-bottom: 10px
  }

  .aboutUs__title::after {
    width: 100px;
    bottom: -10px
  }

  .aboutUs__txt {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 20px 22px;
    border-radius: 12px
  }

  .aboutUs__txt::first-letter {
    font-size: 1.3em
  }
}

@media (max-width:480px) {
  .aboutUs {
    padding: 60px 0;
    margin: 0 10px
  }

  .aboutUs__box {
    margin: 0 10px;
    padding: 30px 20px;
    border-radius: 16px
  }

  .aboutUs__title {
    font-size: 24px;
    margin-bottom: 25px
  }

  .aboutUs__title::before {
    font-size: 20px;
    margin-bottom: 8px
  }

  .aboutUs__title::after {
    width: 80px;
    height: 3px;
    bottom: -8px
  }

  .aboutUs__txt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    padding: 18px 16px;
    border-radius: 10px
  }

  .aboutUs__txt::before {
    font-size: 10px;
    padding: 3px 6px;
    top: -6px;
    left: 15px
  }

  .aboutUs__txt::first-letter {
    font-size: 1.2em
  }
}

@media (max-width:375px) {
  .aboutUs {
    padding: 50px 0;
    margin: 0 5px
  }

  .aboutUs__box {
    margin: 0 5px;
    padding: 25px 15px;
    border-radius: 14px
  }

  .aboutUs__title {
    font-size: 22px;
    margin-bottom: 20px
  }

  .aboutUs__title::before {
    font-size: 18px
  }

  .aboutUs__title::after {
    width: 70px
  }

  .aboutUs__txt {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 15px 12px
  }

  .aboutUs__txt::first-letter {
    font-size: 1.1em
  }
}

@media (max-width:320px) {
  .aboutUs {
    padding: 40px 0
  }

  .aboutUs__box {
    padding: 20px 12px;
    border-radius: 12px
  }

  .aboutUs__title {
    font-size: 20px;
    margin-bottom: 18px
  }

  .aboutUs__txt {
    font-size: 12px;
    padding: 12px 10px
  }
}

.ourPrinciples {
  padding: 100px 0;
  background: linear-gradient(120deg, #f9fafb 0, #fff 40%, #f0f7f0 100%);
  position: relative;
  overflow: hidden
}

.ourPrinciples::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 15% 20%, rgba(57, 157, 52, .025) 0, transparent 45%), radial-gradient(circle at 85% 30%, rgba(57, 157, 52, .02) 0, transparent 40%), radial-gradient(circle at 50% 80%, rgba(57, 157, 52, .015) 0, transparent 35%);
  pointer-events: none
}

.ourPrinciples::after {
  content: "⚖️";
  position: absolute;
  top: 15%;
  left: 5%;
  font-size: 36px;
  opacity: .12;
  -webkit-animation: principles-sway 4s ease-in-out infinite;
  animation: principles-sway 4s ease-in-out infinite
}

@-webkit-keyframes principles-sway {

  0%,
  100% {
    -webkit-transform: rotate(-2deg) translateY(0);
    transform: rotate(-2deg) translateY(0);
    opacity: .12
  }

  50% {
    -webkit-transform: rotate(2deg) translateY(-10px);
    transform: rotate(2deg) translateY(-10px);
    opacity: .2
  }
}

@keyframes principles-sway {

  0%,
  100% {
    -webkit-transform: rotate(-2deg) translateY(0);
    transform: rotate(-2deg) translateY(0);
    opacity: .12
  }

  50% {
    -webkit-transform: rotate(2deg) translateY(-10px);
    transform: rotate(2deg) translateY(-10px);
    opacity: .2
  }
}

.ourPrinciples__box {
  position: relative;
  z-index: 2
}

.ourPrinciples__title {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 60px 0;
  line-height: 1.2;
  text-align: center;
  position: relative;
  font-family: var(--font-heading);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.ourPrinciples__title::before {
  content: "🎯";
  display: block;
  font-size: 28px;
  margin-bottom: 12px;
  opacity: .8
}

.ourPrinciples__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, #399d34), color-stop(50%, #2d7a2d), color-stop(75%, #399d34), to(transparent));
  background: linear-gradient(90deg, transparent 0, #399d34 25%, #2d7a2d 50%, #399d34 75%, transparent 100%);
  border-radius: 2px
}

.ourPrinciples__wrp {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px
}

.ourPrinciples__inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(240, 247, 240, .9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 35px 25px;
  -webkit-box-shadow: 0 8px 25px rgba(57, 157, 52, .06), 0 3px 12px rgba(57, 157, 52, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
  box-shadow: 0 8px 25px rgba(57, 157, 52, .06), 0 3px 12px rgba(57, 157, 52, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
  border: 1px solid rgba(57, 157, 52, .08);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.ourPrinciples__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#399d34), color-stop(50%, #2d7a2d), to(#1f5e21));
  background: linear-gradient(180deg, #399d34 0, #2d7a2d 50%, #1f5e21 100%)
}

.ourPrinciples__inner:nth-child(1)::after {
  content: "01";
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(57, 157, 52, .1);
  color: #2d7a2d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(57, 157, 52, .2)
}

.ourPrinciples__inner:nth-child(2)::after {
  content: "02";
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(57, 157, 52, .1);
  color: #2d7a2d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(57, 157, 52, .2)
}

.ourPrinciples__inner:nth-child(3)::after {
  content: "03";
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(57, 157, 52, .1);
  color: #2d7a2d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(57, 157, 52, .2)
}

.ourPrinciples__inner:nth-child(4)::after {
  content: "04";
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(57, 157, 52, .1);
  color: #2d7a2d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(57, 157, 52, .2)
}

.ourPrinciples__inner:nth-child(5)::after {
  content: "05";
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(57, 157, 52, .1);
  color: #2d7a2d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(57, 157, 52, .2)
}

.ourPrinciples__inner:nth-child(6)::after {
  content: "06";
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(57, 157, 52, .1);
  color: #2d7a2d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(57, 157, 52, .2)
}

.ourPrinciples__inner:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(57, 157, 52, .1), 0 6px 20px rgba(57, 157, 52, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  box-shadow: 0 15px 35px rgba(57, 157, 52, .1), 0 6px 20px rgba(57, 157, 52, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  border-color: rgba(57, 157, 52, .15)
}

.ourPrinciples__inner:hover::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#4ade80), color-stop(50%, #399d34), to(#2d7a2d));
  background: linear-gradient(180deg, #4ade80 0, #399d34 50%, #2d7a2d 100%)
}

.ourPrinciples__subTitle {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 15px 0;
  line-height: 1.3;
  position: relative;
  padding-left: 30px;
  font-family: var(--font-heading)
}

.ourPrinciples__subTitle::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  opacity: .8
}

.ourPrinciples__inner:nth-child(1) .ourPrinciples__subTitle::before {
  content: "📋"
}

.ourPrinciples__inner:nth-child(2) .ourPrinciples__subTitle::before {
  content: "🌍"
}

.ourPrinciples__inner:nth-child(3) .ourPrinciples__subTitle::before {
  content: "🌱"
}

.ourPrinciples__inner:nth-child(4) .ourPrinciples__subTitle::before {
  content: "🤝"
}

.ourPrinciples__inner:nth-child(5) .ourPrinciples__subTitle::before {
  content: "🔒"
}

.ourPrinciples__inner:nth-child(6) .ourPrinciples__subTitle::before {
  content: "⚖️"
}

.ourPrinciples__txt {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  padding-left: 30px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@media (max-width:992px) {
  .ourPrinciples {
    padding: 80px 0
  }

  .ourPrinciples__title {
    font-size: 30px;
    margin-bottom: 50px
  }

  .ourPrinciples__title::before {
    font-size: 24px;
    margin-bottom: 10px
  }

  .ourPrinciples__title::after {
    width: 100px
  }

  .ourPrinciples__wrp {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
  }

  .ourPrinciples__inner {
    padding: 30px 20px
  }

  .ourPrinciples__subTitle {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px
  }

  .ourPrinciples__subTitle::before {
    font-size: 16px
  }

  .ourPrinciples__txt {
    font-size: 14px;
    padding-left: 25px
  }
}

@media (max-width:768px) {
  .ourPrinciples {
    padding: 70px 0;
    overflow-x: hidden
  }

  .ourPrinciples::after {
    display: none
  }

  .ourPrinciples__title {
    font-size: 28px;
    margin-bottom: 40px;
    padding: 0 20px
  }

  .ourPrinciples__title::before {
    font-size: 22px
  }

  .ourPrinciples__title::after {
    width: 80px;
    bottom: -12px
  }

  .ourPrinciples__wrp {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    padding: 0 10px
  }

  .ourPrinciples__inner {
    padding: 25px 18px;
    border-radius: 14px
  }

  .ourPrinciples__inner:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px)
  }

  .ourPrinciples__inner::after {
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 4px 8px
  }

  .ourPrinciples__subTitle {
    font-size: 17px;
    margin-bottom: 10px;
    padding-left: 22px
  }

  .ourPrinciples__subTitle::before {
    font-size: 15px
  }

  .ourPrinciples__txt {
    font-size: 13px;
    line-height: 1.5;
    padding-left: 22px
  }
}

@media (max-width:480px) {
  .ourPrinciples {
    padding: 50px 0;
    margin: 0 10px
  }

  .ourPrinciples__title {
    font-size: 24px;
    margin-bottom: 30px;
    padding: 0 10px
  }

  .ourPrinciples__title::before {
    font-size: 20px;
    margin-bottom: 8px
  }

  .ourPrinciples__title::after {
    width: 60px;
    height: 3px;
    bottom: -10px
  }

  .ourPrinciples__wrp {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 5px
  }

  .ourPrinciples__inner {
    padding: 20px 15px;
    border-radius: 12px;
    margin: 0 5px
  }

  .ourPrinciples__inner::after {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 3px 6px
  }

  .ourPrinciples__subTitle {
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 20px
  }

  .ourPrinciples__subTitle::before {
    font-size: 14px;
    top: 1px
  }

  .ourPrinciples__txt {
    font-size: 12px;
    line-height: 1.4;
    padding-left: 20px
  }
}

@media (max-width:375px) {
  .ourPrinciples {
    padding: 40px 0;
    margin: 0 5px
  }

  .ourPrinciples__title {
    font-size: 22px;
    margin-bottom: 25px;
    padding: 0 5px
  }

  .ourPrinciples__title::before {
    font-size: 18px
  }

  .ourPrinciples__inner {
    padding: 18px 12px;
    border-radius: 10px;
    margin: 0
  }

  .ourPrinciples__subTitle {
    font-size: 15px;
    padding-left: 18px
  }

  .ourPrinciples__subTitle::before {
    font-size: 13px
  }

  .ourPrinciples__txt {
    font-size: 11px;
    padding-left: 18px
  }
}

@media (max-width:320px) {
  .ourPrinciples {
    padding: 35px 0
  }

  .ourPrinciples__title {
    font-size: 20px;
    margin-bottom: 20px
  }

  .ourPrinciples__inner {
    padding: 15px 10px
  }

  .ourPrinciples__subTitle {
    font-size: 14px;
    padding-left: 16px
  }

  .ourPrinciples__txt {
    font-size: 10px;
    padding-left: 16px
  }
}

.faq {
  padding: 120px 0;
  background: radial-gradient(circle at 20% 80%, rgba(57, 157, 52, .1) 0, transparent 50%), radial-gradient(circle at 80% 20%, rgba(57, 157, 52, .08) 0, transparent 50%), linear-gradient(135deg, #f0f7f0 0, #fff 50%, #f0f7f0 100%);
  position: relative;
  overflow: hidden
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(57, 157, 52, .05) 0, transparent 70%), radial-gradient(circle at 30% 70%, rgba(45, 122, 45, .03) 0, transparent 70%);
  z-index: 1
}

.faq::after {
  content: "❓";
  position: absolute;
  top: 15%;
  right: 10%;
  font-size: 80px;
  opacity: .05;
  -webkit-animation: faq-float 6s ease-in-out infinite;
  animation: faq-float 6s ease-in-out infinite;
  z-index: 2
}

.faq__box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(240, 247, 240, .9) 100%);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 60px 50px;
  -webkit-box-shadow: 0 20px 40px rgba(57, 157, 52, .1), 0 8px 16px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .6);
  box-shadow: 0 20px 40px rgba(57, 157, 52, .1), 0 8px 16px rgba(0, 0, 0, .05), inset 0 1px 0 rgba(255, 255, 255, .6);
  border: 1px solid rgba(57, 157, 52, .1);
  position: relative;
  z-index: 10
}

.faq__box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1) 0, transparent 50%);
  border-radius: 25px;
  pointer-events: none
}

.faq__title {
  font-size: 48px;
  font-weight: 700;
  color: #399d34;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased
}

.faq__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, rgba(57, 157, 52, .8)), color-stop(50%, #399d34), color-stop(80%, rgba(57, 157, 52, .8)), to(transparent));
  background: linear-gradient(90deg, transparent 0, rgba(57, 157, 52, .8) 20%, #399d34 50%, rgba(57, 157, 52, .8) 80%, transparent 100%);
  border-radius: 2px
}

.faq__inner {
  margin-bottom: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9) 0, rgba(240, 247, 240, .7) 100%);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(57, 157, 52, .15);
  -webkit-box-shadow: 0 8px 20px rgba(57, 157, 52, .08), 0 2px 8px rgba(0, 0, 0, .03);
  box-shadow: 0 8px 20px rgba(57, 157, 52, .08), 0 2px 8px rgba(0, 0, 0, .03);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden
}

.faq__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#399d34), color-stop(50%, #2d7a2d), to(#1f5e21));
  background: linear-gradient(180deg, #399d34 0, #2d7a2d 50%, #1f5e21 100%);
  border-radius: 0 3px 3px 0
}

.faq__inner::after {
  content: counter(faq-counter, decimal-leading-zero);
  counter-increment: faq-counter;
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(57, 157, 52, .1);
  color: #399d34;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(57, 157, 52, .2)
}

.faq__inner:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 15px 35px rgba(57, 157, 52, .15), 0 5px 15px rgba(0, 0, 0, .08);
  box-shadow: 0 15px 35px rgba(57, 157, 52, .15), 0 5px 15px rgba(0, 0, 0, .08);
  border-color: rgba(57, 157, 52, .25)
}

.faq__inner:hover .faq__subTitle {
  color: #2d7a2d
}

.faq__inner:last-child {
  margin-bottom: 0
}

.faq__box {
  counter-reset: faq-counter
}

.faq__subTitle {
  font-size: 22px;
  font-weight: 600;
  color: #1f5e21;
  margin-bottom: 15px;
  line-height: 1.4;
  padding-left: 45px;
  position: relative;
  -webkit-transition: color .3s ease;
  transition: color .3s ease
}

.faq__subTitle::before {
  content: "❔";
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  color: #399d34;
  -webkit-animation: faq-question 4s ease-in-out infinite;
  animation: faq-question 4s ease-in-out infinite
}

.faq__txt {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative
}

.faq__txt::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 2px;
  color: #399d34;
  font-size: 14px;
  font-weight: 600
}

.faq__txt:last-child {
  margin-bottom: 0
}

.faq__ul {
  padding-left: 20px;
  margin: 15px 0 0 20px
}

.faq__ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative
}

.faq__ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #399d34;
  font-weight: 600;
  font-size: 14px;
  background: rgba(57, 157, 52, .1);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2px
}

.faq__ul li:last-child {
  margin-bottom: 0
}

@-webkit-keyframes faq-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    opacity: .05
  }

  50% {
    -webkit-transform: translateY(-20px) rotate(10deg);
    transform: translateY(-20px) rotate(10deg);
    opacity: .08
  }
}

@keyframes faq-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    opacity: .05
  }

  50% {
    -webkit-transform: translateY(-20px) rotate(10deg);
    transform: translateY(-20px) rotate(10deg);
    opacity: .08
  }
}

@-webkit-keyframes faq-question {

  0%,
  100% {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1)
  }

  25% {
    -webkit-transform: translateY(-50%) scale(1.1) rotate(-5deg);
    transform: translateY(-50%) scale(1.1) rotate(-5deg)
  }

  75% {
    -webkit-transform: translateY(-50%) scale(1.1) rotate(5deg);
    transform: translateY(-50%) scale(1.1) rotate(5deg)
  }
}

@keyframes faq-question {

  0%,
  100% {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1)
  }

  25% {
    -webkit-transform: translateY(-50%) scale(1.1) rotate(-5deg);
    transform: translateY(-50%) scale(1.1) rotate(-5deg)
  }

  75% {
    -webkit-transform: translateY(-50%) scale(1.1) rotate(5deg);
    transform: translateY(-50%) scale(1.1) rotate(5deg)
  }
}

@media (max-width:992px) {
  .faq {
    padding: 80px 0
  }

  .faq::after {
    font-size: 60px
  }

  .faq__box {
    padding: 40px 30px;
    border-radius: 20px
  }

  .faq__title {
    font-size: 38px;
    margin-bottom: 40px
  }

  .faq__inner {
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px
  }

  .faq__subTitle {
    font-size: 20px;
    padding-left: 40px
  }

  .faq__subTitle::before {
    font-size: 22px
  }
}

@media (max-width:768px) {
  .faq {
    padding: 60px 0
  }

  .faq::after {
    display: none
  }

  .faq__box {
    padding: 30px 20px;
    border-radius: 18px;
    margin: 0 15px
  }

  .faq__box::before {
    display: none
  }

  .faq__title {
    font-size: 32px;
    margin-bottom: 30px
  }

  .faq__inner {
    padding: 20px;
    border-radius: 12px
  }

  .faq__inner::after {
    top: 15px;
    right: 20px;
    font-size: 12px;
    padding: 6px 10px
  }

  .faq__subTitle {
    font-size: 18px;
    padding-left: 35px
  }

  .faq__subTitle::before {
    font-size: 20px;
    left: 10px
  }

  .faq__txt {
    font-size: 15px;
    padding-left: 25px
  }

  .faq__txt::before {
    left: 5px
  }

  .faq__ul {
    margin-left: 15px
  }

  .faq__ul li {
    font-size: 15px;
    padding-left: 20px
  }
}

@media (max-width:480px) {
  .faq {
    padding: 40px 0
  }

  .faq__box {
    padding: 25px 15px;
    margin: 0 10px
  }

  .faq__title {
    font-size: 28px;
    margin-bottom: 25px
  }

  .faq__title::after {
    width: 80px
  }

  .faq__inner {
    padding: 18px;
    margin-bottom: 15px
  }

  .faq__subTitle {
    font-size: 16px;
    padding-left: 30px;
    margin-bottom: 12px
  }

  .faq__subTitle::before {
    font-size: 18px;
    left: 8px
  }

  .faq__txt {
    font-size: 14px;
    padding-left: 22px
  }

  .faq__txt::before {
    left: 5px
  }

  .faq__ul {
    margin-left: 12px
  }

  .faq__ul li {
    font-size: 14px;
    padding-left: 18px
  }

  .faq__ul li::before {
    width: 16px;
    height: 16px;
    font-size: 12px
  }
}

@media (max-width:375px) {
  .faq__box {
    padding: 20px 12px;
    margin: 0 8px
  }

  .faq__title {
    font-size: 24px
  }

  .faq__title::after {
    width: 60px;
    height: 3px
  }

  .faq__inner {
    padding: 15px
  }

  .faq__inner::after {
    display: none
  }

  .faq__subTitle {
    font-size: 15px;
    padding-left: 25px
  }

  .faq__subTitle::before {
    font-size: 16px;
    left: 5px
  }
}

@media (max-width:320px) {
  .faq__box {
    padding: 18px 10px;
    margin: 0 5px
  }

  .faq__title {
    font-size: 22px
  }

  .faq__inner {
    padding: 12px
  }

  .faq__subTitle {
    font-size: 14px;
    padding-left: 22px
  }

  .faq__txt {
    font-size: 13px;
    padding-left: 20px
  }

  .faq__txt::before {
    left: 5px
  }

  .faq__ul {
    margin-left: 10px
  }

  .faq__ul li {
    font-size: 13px;
    padding-left: 16px
  }
}

.header {
  background-color: #fff;
  padding: 3px 0;
  z-index: 100;
  top: 0;
  position: fixed;
  width: 100%;
  border-top: 10px solid var(--mainColor);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px)
}

.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
  height: 60px
}

.header__log img {
  height: 45px;
  width: auto;
  max-width: 200px;
  -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .15));
  -webkit-transition: -webkit-transform .3s ease, -webkit-filter .3s ease;
  transition: -webkit-transform .3s ease, -webkit-filter .3s ease;
  transition: transform .3s ease, filter .3s ease;
  transition: transform .3s ease, filter .3s ease, -webkit-transform .3s ease, -webkit-filter .3s ease
}

.header__log img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .2));
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .2))
}

.header__menuWrp ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.header__menuWrp li {
  background-color: var(--mainColor);
  padding: 8px 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden
}

.header__menuWrp li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  -webkit-transition: left .5s;
  transition: left .5s
}

.header__menuWrp li a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 1;
  -webkit-transition: color .3s ease;
  transition: color .3s ease
}

.header__menuWrp li:hover {
  background-color: transparent;
  border: 2px solid var(--mainColor);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.header__menuWrp li:hover::before {
  left: 100%
}

.header__menuWrp li:hover a {
  color: var(--mainColor)
}

.header__menuWrp li:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.yourElectrician {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
  position: relative;
  overflow: hidden
}

.yourElectrician::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(57, 157, 52, .03) 0, transparent 50%), radial-gradient(circle at 80% 20%, rgba(45, 125, 42, .02) 0, transparent 50%);
  pointer-events: none
}

.yourElectrician__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  min-height: 500px;
  position: relative;
  z-index: 2
}

.yourElectrician__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 580px
}

.yourElectrician__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0;
  color: #1a1a1a;
  margin-bottom: 24px;
  position: relative
}

.yourElectrician__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px
}

.yourElectrician__desc {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 500px
}

.yourElectrician__btnWrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.yourElectrician__btnService {
  background-color: var(--mainColor);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 18px;
  padding: 12px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  -webkit-box-shadow: var(--shadow-md);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  position: relative
}

.yourElectrician__btnService span {
  position: relative;
  z-index: 2
}

.yourElectrician__btnService span::before {
  content: "";
  position: absolute;
  background-image: url(../icons/telephone-fill.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 22px;
  aspect-ratio: 1;
  left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
}

.yourElectrician__btnService::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  -webkit-transition: left .5s;
  transition: left .5s;
  z-index: 1
}

.yourElectrician__btnService:hover {
  background-color: #2d7d2a;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg)
}

.yourElectrician__btnService:hover::before {
  left: 100%
}

.yourElectrician__btnService:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: var(--shadow-md);
  box-shadow: var(--shadow-md)
}

.yourElectrician__btnService span::before {
  background-image: url(../icons/tools.svg)
}

.yourElectrician__btnRequest {
  background-color: transparent;
  color: var(--mainColor);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  padding: 12px 32px;
  border: 2px solid var(--mainColor);
  border-radius: 12px;
  text-decoration: none;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden
}

.yourElectrician__btnRequest::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--mainColor);
  -webkit-transition: left .3s ease;
  transition: left .3s ease;
  z-index: -1
}

.yourElectrician__btnRequest:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(57, 157, 52, .3);
  box-shadow: 0 8px 25px rgba(57, 157, 52, .3)
}

.yourElectrician__btnRequest:hover::before {
  left: 0
}

.yourElectrician__btnRequest:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 4px 12px rgba(57, 157, 52, .2);
  box-shadow: 0 4px 12px rgba(57, 157, 52, .2)
}

.yourElectrician__imgWrp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative
}

.yourElectrician__imgWrp::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  border-radius: 20px;
  z-index: -1;
  opacity: .1
}

.yourElectrician__img {
  width: 100%;
  height: auto;
  max-height: 480px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .08);
  -webkit-transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: transform .3s ease, box-shadow .3s ease;
  transition: transform .3s ease, box-shadow .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease
}

.yourElectrician__img:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 32px 60px rgba(0, 0, 0, .15), 0 12px 24px rgba(0, 0, 0, .1);
  box-shadow: 0 32px 60px rgba(0, 0, 0, .15), 0 12px 24px rgba(0, 0, 0, .1)
}

@media (max-width:768px) {
  .yourElectrician {
    padding: 100px 0 60px
  }

  .yourElectrician__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    text-align: center
  }

  .yourElectrician__title {
    font-size: clamp(28px, 8vw, 36px)
  }

  .yourElectrician__desc {
    font-size: 16px;
    margin-bottom: 30px
  }

  .yourElectrician__btnWrp {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px
  }

  .yourElectrician__btnRequest,
  .yourElectrician__btnService {
    font-size: 16px;
    padding: 10px 24px
  }

  .yourElectrician__imgWrp {
    max-width: 400px;
    margin: 0 auto
  }
}

.service {
  padding: 80px 0;
  background: url(../img/service-bg.svg) center center/cover no-repeat, linear-gradient(135deg, #fff 0, #f8f9fa 100%);
  position: relative
}

.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .1);
  pointer-events: none;
  z-index: 1
}

.service__box {
  position: relative;
  z-index: 10
}

.service__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 60px;
  position: relative
}

.service__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px
}

.service__wrp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto
}

.service__inner {
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden
}

.service__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  z-index: 1
}

.service__inner::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(57, 157, 52, .05) 0, transparent 70%);
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  z-index: 2
}

.service__inner:hover {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .08);
  border-color: var(--mainColor)
}

.service__inner:hover::before {
  opacity: .03
}

.service__inner:hover::after {
  opacity: 1
}

.service__inner:hover .service__img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: drop-shadow(0 8px 16px rgba(57, 157, 52, .2));
  filter: drop-shadow(0 8px 16px rgba(57, 157, 52, .2))
}

.service__inner:hover .service__subTitle {
  color: var(--mainColor)
}

.service__imgWrp {
  margin-bottom: 24px;
  position: relative;
  z-index: 3
}

.service__img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .1));
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .1))
}

.service__subTitle {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #333;
  margin: 0;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.4;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  position: relative;
  z-index: 3
}

.service__btnWrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px
}

.service__btnRequest {
  background-color: transparent;
  color: var(--mainColor);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 40px;
  border: 2px solid var(--mainColor);
  border-radius: 12px;
  text-decoration: none;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden
}

.service__btnRequest::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--mainColor);
  -webkit-transition: left .3s ease;
  transition: left .3s ease;
  z-index: -1
}

.service__btnRequest::after {
  content: "→";
  margin-left: 8px;
  font-size: 16px;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease
}

.service__btnRequest:hover {
  color: #fff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(57, 157, 52, .3);
  box-shadow: 0 8px 25px rgba(57, 157, 52, .3)
}

.service__btnRequest:hover::before {
  left: 0
}

.service__btnRequest:hover::after {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px)
}

.service__btnRequest:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 4px 12px rgba(57, 157, 52, .2);
  box-shadow: 0 4px 12px rgba(57, 157, 52, .2)
}

@media (max-width:1200px) {
  .service__wrp {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
  }
}

@media (max-width:768px) {
  .service {
    padding: 60px 0
  }

  .service__title {
    margin-bottom: 40px
  }

  .service__wrp {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px
  }

  .service__inner {
    padding: 30px 20px
  }

  .service__img {
    width: 60px;
    height: 60px
  }

  .service__subTitle {
    font-size: 16px
  }

  .service__btnRequest {
    font-size: 16px;
    padding: 12px 32px
  }
}

@media (max-width:480px) {
  .service__wrp {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 15px
  }

  .service__inner {
    padding: 24px 16px
  }

  .service__img {
    width: 50px;
    height: 50px
  }

  .service__subTitle {
    font-size: 14px;
    line-height: 1.3
  }
}

.electricalInstallationWorks {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0, #f8f9fa 100%);
  position: relative;
  overflow: hidden
}

.electricalInstallationWorks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(57, 157, 52, .02) 0, transparent 50%), radial-gradient(circle at 20% 80%, rgba(45, 125, 42, .015) 0, transparent 50%);
  pointer-events: none
}

.electricalInstallationWorks__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  min-height: 480px;
  position: relative;
  z-index: 2
}

.electricalInstallationWorks__left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 580px
}

.electricalInstallationWorks__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  color: #1a1a1a;
  margin-bottom: 24px;
  position: relative
}

.electricalInstallationWorks__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px
}

.electricalInstallationWorks__txt {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  font-weight: 400;
  max-width: 520px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.electricalInstallationWorks__imgWrp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative
}

.electricalInstallationWorks__imgWrp::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .08), rgba(45, 125, 42, .06));
  border-radius: 20px;
  z-index: -1
}

.electricalInstallationWorks__imgWrp::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 30px;
  bottom: 30px;
  background: linear-gradient(225deg, rgba(57, 157, 52, .03), transparent 60%);
  border-radius: 24px;
  z-index: -2
}

.electricalInstallationWorks__img {
  width: 100%;
  height: auto;
  max-height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, .08), 0 6px 12px rgba(0, 0, 0, .06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08), 0 6px 12px rgba(0, 0, 0, .06);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.electricalInstallationWorks__img:hover {
  -webkit-transform: translateY(-6px) scale(1.02);
  -ms-transform: translateY(-6px) scale(1.02);
  transform: translateY(-6px) scale(1.02);
  -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, .12), 0 8px 16px rgba(0, 0, 0, .08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .12), 0 8px 16px rgba(0, 0, 0, .08)
}

@media (max-width:992px) {
  .electricalInstallationWorks__box {
    gap: 40px
  }

  .electricalInstallationWorks__title {
    font-size: clamp(22px, 4vw, 32px)
  }

  .electricalInstallationWorks__txt {
    font-size: 16px
  }
}

@media (max-width:768px) {
  .electricalInstallationWorks {
    padding: 60px 0
  }

  .electricalInstallationWorks__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    min-height: auto
  }

  .electricalInstallationWorks__left {
    max-width: 100%
  }

  .electricalInstallationWorks__title {
    text-align: center;
    margin-bottom: 20px
  }

  .electricalInstallationWorks__title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  .electricalInstallationWorks__txt {
    text-align: left;
    max-width: 100%;
    font-size: 15px
  }

  .electricalInstallationWorks__imgWrp {
    max-width: 400px;
    margin: 0 auto
  }

  .electricalInstallationWorks__imgWrp::after,
  .electricalInstallationWorks__imgWrp::before {
    display: none
  }

  .electricalInstallationWorks__img {
    max-height: 300px
  }
}

@media (max-width:480px) {
  .electricalInstallationWorks {
    padding: 50px 0
  }

  .electricalInstallationWorks__box {
    gap: 30px
  }

  .electricalInstallationWorks__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 16px
  }

  .electricalInstallationWorks__txt {
    font-size: 14px;
    line-height: 1.6
  }

  .electricalInstallationWorks__imgWrp {
    max-width: 100%
  }
}

.trustOurExperience {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0, #fff 100%);
  position: relative;
  overflow: hidden
}

.trustOurExperience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(57, 157, 52, .025) 0, transparent 50%), radial-gradient(circle at 80% 70%, rgba(45, 125, 42, .02) 0, transparent 50%);
  pointer-events: none
}

.trustOurExperience__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  min-height: 480px;
  position: relative;
  z-index: 2
}

.trustOurExperience__imgWrp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 480px
}

.trustOurExperience__imgWrp::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(45deg, rgba(57, 157, 52, .06), rgba(45, 125, 42, .04));
  border-radius: 20px;
  z-index: -1
}

.trustOurExperience__imgWrp::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: -30px;
  bottom: -30px;
  background: linear-gradient(315deg, rgba(57, 157, 52, .02), transparent 60%);
  border-radius: 24px;
  z-index: -2
}

.trustOurExperience__img {
  width: 100%;
  height: auto;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, .08), 0 6px 12px rgba(0, 0, 0, .06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08), 0 6px 12px rgba(0, 0, 0, .06);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  aspect-ratio: 4/3
}

.trustOurExperience__img:hover {
  -webkit-transform: translateY(-6px) scale(1.02);
  -ms-transform: translateY(-6px) scale(1.02);
  transform: translateY(-6px) scale(1.02);
  -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, .12), 0 8px 16px rgba(0, 0, 0, .08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .12), 0 8px 16px rgba(0, 0, 0, .08)
}

.trustOurExperience__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 580px
}

.trustOurExperience__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  color: #1a1a1a;
  margin-bottom: 24px;
  position: relative
}

.trustOurExperience__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px
}

.trustOurExperience__txt {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 20px 0;
  font-weight: 400;
  max-width: 520px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.trustOurExperience__txtBold {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-weight: 600;
  max-width: 520px;
  position: relative;
  padding-left: 20px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.trustOurExperience__txtBold::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(180deg, var(--mainColor), #2d7d2a);
  border-radius: 2px
}

@media (max-width:992px) {
  .trustOurExperience__box {
    gap: 40px
  }

  .trustOurExperience__title {
    font-size: clamp(22px, 4vw, 32px)
  }

  .trustOurExperience__txt {
    font-size: 16px
  }

  .trustOurExperience__txtBold {
    font-size: 17px
  }
}

@media (max-width:768px) {
  .trustOurExperience {
    padding: 60px 0
  }

  .trustOurExperience__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    min-height: auto
  }

  .trustOurExperience__imgWrp {
    max-width: 400px;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .trustOurExperience__imgWrp::after,
  .trustOurExperience__imgWrp::before {
    display: none
  }

  .trustOurExperience__right {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .trustOurExperience__title {
    text-align: center;
    margin-bottom: 20px
  }

  .trustOurExperience__title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  .trustOurExperience__txt,
  .trustOurExperience__txtBold {
    text-align: left;
    max-width: 100%;
    font-size: 15px
  }

  .trustOurExperience__txtBold {
    font-size: 16px
  }

  .trustOurExperience__img {
    max-height: 400px
  }
}

@media (max-width:480px) {
  .trustOurExperience {
    padding: 50px 0
  }

  .trustOurExperience__box {
    gap: 30px
  }

  .trustOurExperience__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 16px
  }

  .trustOurExperience__txt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px
  }

  .trustOurExperience__txtBold {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 16px
  }

  .trustOurExperience__txtBold::before {
    width: 3px;
    height: 20px
  }

  .trustOurExperience__imgWrp {
    max-width: 100%
  }
}

.security {
  padding: 100px 0;
  background: url(../img/service-bg.svg) center center/cover no-repeat, linear-gradient(135deg, #f1f8f1 0, #e8f5e8 50%, #f8fffe 100%);
  position: relative;
  overflow: hidden
}

.security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(57, 157, 52, .08) 0, transparent 40%), radial-gradient(circle at 70% 80%, rgba(45, 125, 42, .06) 0, transparent 40%), radial-gradient(circle at 20% 70%, rgba(57, 157, 52, .04) 0, transparent 30%);
  pointer-events: none;
  z-index: 1
}

.security::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  width: 120px;
  height: 120px;
  background: url(../img/Stef_icons_alle_Alarmanlagen.svg) center center/contain no-repeat;
  opacity: .05;
  -webkit-transform: translateY(-50%) rotate(-15deg);
  -ms-transform: translateY(-50%) rotate(-15deg);
  transform: translateY(-50%) rotate(-15deg);
  z-index: 1
}

.security__box {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, .08), 0 12px 24px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .8);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .08), 0 12px 24px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .3)
}

.security__box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .1), rgba(45, 125, 42, .05), rgba(57, 157, 52, .08));
  border-radius: 26px;
  z-index: -1
}

.security__box::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: url(../img/Stef_icons_alle_Videoueberwachtung.svg) center center/contain no-repeat;
  opacity: .08;
  -webkit-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg)
}

.security__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  color: #1a1a1a;
  margin-bottom: 32px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .05)
}

.security__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 8px rgba(57, 157, 52, .3);
  box-shadow: 0 2px 8px rgba(57, 157, 52, .3)
}

.security__title::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: url(../img/Stef_icons_alle_Zutrittssysteme.svg) center center/contain no-repeat;
  opacity: .1
}

.security__txt {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin: 0;
  font-weight: 400;
  text-align: justify;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.security__txt::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 48px;
  color: var(--mainColor);
  opacity: .3;
  font-family: Georgia, serif;
  line-height: 1
}

.security__txt::after {
  content: '"';
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-size: 48px;
  color: var(--mainColor);
  opacity: .3;
  font-family: Georgia, serif;
  line-height: 1
}

.security::before {
  background-image: url(../img/Stef_icons_alle_Blitzschutz.svg), url(../img/Stef_icons_alle_Elektrobefund.svg);
  background-position: 85% 25%, 10% 85%;
  background-size: 80px 80px, 100px 100px;
  background-repeat: no-repeat;
  opacity: .03
}

@media (max-width:992px) {
  .security {
    padding: 80px 0
  }

  .security__box {
    padding: 50px 30px;
    margin: 0 20px
  }

  .security__title {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 28px
  }

  .security__txt {
    font-size: 17px
  }
}

@media (max-width:768px) {
  .security {
    padding: 60px 0
  }

  .security::after {
    display: none
  }

  .security__box {
    padding: 40px 25px;
    margin: 0 15px;
    border-radius: 20px
  }

  .security__box::after {
    display: none
  }

  .security__title {
    margin-bottom: 24px
  }

  .security__title::before {
    display: none
  }

  .security__txt {
    font-size: 16px;
    line-height: 1.7;
    text-align: left
  }

  .security__txt::after,
  .security__txt::before {
    display: none
  }
}

@media (max-width:480px) {
  .security {
    padding: 50px 0
  }

  .security__box {
    padding: 30px 20px;
    margin: 0 10px;
    border-radius: 16px
  }

  .security__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 20px
  }

  .security__txt {
    font-size: 15px;
    line-height: 1.6
  }
}

.howOurElectricalServiceWorks {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0, #f8fffe 50%, #f1f8f1 100%);
  position: relative;
  overflow: hidden
}

.howOurElectricalServiceWorks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/Stef_icons_alle_Elektroinstallationen.svg) 15% 20%/80px 80px no-repeat, url(../img/Stef_icons_alle_Geraetepruefung-Kopie.svg) 85% 75%/100px 100px no-repeat, radial-gradient(circle at 25% 40%, rgba(57, 157, 52, .03) 0, transparent 30%), radial-gradient(circle at 75% 60%, rgba(45, 125, 42, .02) 0, transparent 25%);
  opacity: .6;
  pointer-events: none
}

.howOurElectricalServiceWorks__box {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto
}

.howOurElectricalServiceWorks__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 60px;
  position: relative
}

.howOurElectricalServiceWorks__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 8px rgba(57, 157, 52, .3);
  box-shadow: 0 2px 8px rgba(57, 157, 52, .3)
}

.howOurElectricalServiceWorks__title::before {
  content: "⚡";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 24px;
  opacity: .7
}

.howOurElectricalServiceWorks__txt {
  position: relative;
  margin: 0 0 30px 0;
  padding: 25px 30px 25px 70px;
  background: rgba(255, 255, 255, .9);
  border-radius: 16px;
  border-left: 5px solid var(--mainColor);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, .06), 0 3px 10px rgba(0, 0, 0, .04);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06), 0 3px 10px rgba(0, 0, 0, .04);
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  counter-increment: step-counter;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.howOurElectricalServiceWorks__txt::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  -webkit-box-shadow: 0 4px 12px rgba(57, 157, 52, .3);
  box-shadow: 0 4px 12px rgba(57, 157, 52, .3)
}

.howOurElectricalServiceWorks__txt:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 37px;
  width: 2px;
  height: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--mainColor)), to(transparent));
  background: linear-gradient(180deg, var(--mainColor), transparent)
}

.howOurElectricalServiceWorks__txt:hover {
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
  background: rgba(255, 255, 255, .95);
  -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, .08), 0 5px 15px rgba(0, 0, 0, .06);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08), 0 5px 15px rgba(0, 0, 0, .06);
  border-left-color: #2d7d2a
}

.howOurElectricalServiceWorks__txt:hover::before {
  -webkit-transform: translateY(-50%) scale(1.1);
  -ms-transform: translateY(-50%) scale(1.1);
  transform: translateY(-50%) scale(1.1)
}

.howOurElectricalServiceWorks__box {
  counter-reset: step-counter
}

.howOurElectricalServiceWorks__btnWrp {
  text-align: center;
  margin-top: 50px;
  position: relative
}

.howOurElectricalServiceWorks__btnWrp::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--mainColor)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--mainColor), transparent)
}

.howOurElectricalServiceWorks__btnRequest {
  background-color: var(--mainColor);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 18px;
  padding: 12px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  -webkit-box-shadow: var(--shadow-md);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  position: relative;
  font-size: 18px;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--mainColor) 0, #2d7d2a 100%);
  -webkit-box-shadow: 0 8px 25px rgba(57, 157, 52, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
  box-shadow: 0 8px 25px rgba(57, 157, 52, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .1)
}

.howOurElectricalServiceWorks__btnRequest span {
  position: relative;
  z-index: 2
}

.howOurElectricalServiceWorks__btnRequest span::before {
  content: "";
  position: absolute;
  background-image: url(../icons/telephone-fill.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 22px;
  aspect-ratio: 1;
  left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
}

.howOurElectricalServiceWorks__btnRequest::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  -webkit-transition: left .5s;
  transition: left .5s;
  z-index: 1
}

.howOurElectricalServiceWorks__btnRequest:hover {
  background-color: #2d7d2a;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg)
}

.howOurElectricalServiceWorks__btnRequest:hover::before {
  left: 100%
}

.howOurElectricalServiceWorks__btnRequest:active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: var(--shadow-md);
  box-shadow: var(--shadow-md)
}

.howOurElectricalServiceWorks__btnRequest::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, .1) 50%, transparent 70%);
  border-radius: 50px;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.howOurElectricalServiceWorks__btnRequest:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #2d7d2a 0, var(--mainColor) 100%);
  -webkit-box-shadow: 0 12px 35px rgba(57, 157, 52, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
  box-shadow: 0 12px 35px rgba(57, 157, 52, .4), inset 0 1px 0 rgba(255, 255, 255, .3)
}

.howOurElectricalServiceWorks__btnRequest:hover::after {
  opacity: 1
}

.howOurElectricalServiceWorks__btnRequest:active {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 20px rgba(57, 157, 52, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
  box-shadow: 0 6px 20px rgba(57, 157, 52, .3), inset 0 1px 0 rgba(255, 255, 255, .2)
}

.howOurElectricalServiceWorks::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: conic-gradient(from 0deg, rgba(57, 157, 52, .1), rgba(45, 125, 42, .05), rgba(57, 157, 52, .1));
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: rotate 30s linear infinite;
  animation: rotate 30s linear infinite;
  z-index: 1
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0)
  }

  to {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg)
  }
}

@keyframes rotate {
  from {
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0)
  }

  to {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg)
  }
}

@media (max-width:992px) {
  .howOurElectricalServiceWorks {
    padding: 80px 0
  }

  .howOurElectricalServiceWorks::after {
    width: 120px;
    height: 120px
  }

  .howOurElectricalServiceWorks__title {
    margin-bottom: 50px;
    font-size: clamp(22px, 4vw, 32px)
  }

  .howOurElectricalServiceWorks__txt {
    padding: 20px 25px 20px 60px;
    font-size: 15px
  }

  .howOurElectricalServiceWorks__txt::before {
    width: 30px;
    height: 30px;
    left: 15px;
    font-size: 12px
  }

  .howOurElectricalServiceWorks__txt:not(:last-of-type)::after {
    left: 29px
  }

  .howOurElectricalServiceWorks__btnRequest {
    font-size: 16px;
    padding: 12px 32px
  }
}

@media (max-width:768px) {
  .howOurElectricalServiceWorks {
    padding: 60px 0
  }

  .howOurElectricalServiceWorks::after {
    display: none
  }

  .howOurElectricalServiceWorks__box {
    padding: 0 15px
  }

  .howOurElectricalServiceWorks__title {
    margin-bottom: 40px
  }

  .howOurElectricalServiceWorks__txt {
    margin-bottom: 25px;
    padding: 18px 20px 18px 55px;
    border-radius: 12px
  }

  .howOurElectricalServiceWorks__txt::before {
    width: 28px;
    height: 28px;
    left: 12px;
    font-size: 11px
  }

  .howOurElectricalServiceWorks__txt:not(:last-of-type)::after {
    left: 25px;
    height: 12px;
    bottom: -12px
  }

  .howOurElectricalServiceWorks__txt:hover {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px)
  }

  .howOurElectricalServiceWorks__btnWrp {
    margin-top: 40px
  }
}

@media (max-width:480px) {
  .howOurElectricalServiceWorks {
    padding: 50px 0
  }

  .howOurElectricalServiceWorks__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 35px
  }

  .howOurElectricalServiceWorks__txt {
    padding: 15px 18px 15px 50px;
    font-size: 14px;
    line-height: 1.6
  }

  .howOurElectricalServiceWorks__txt::before {
    width: 25px;
    height: 25px;
    left: 10px;
    font-size: 10px
  }

  .howOurElectricalServiceWorks__txt:not(:last-of-type)::after {
    left: 22px
  }

  .howOurElectricalServiceWorks__btnRequest {
    font-size: 15px;
    padding: 10px 28px
  }
}

.cheapAndFast {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0, #fff 50%, #f1f8f1 100%);
  position: relative;
  overflow: hidden
}

.cheapAndFast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(57, 157, 52, .02) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(45, 125, 42, .025) 0, transparent 35%), radial-gradient(circle at 50% 20%, rgba(57, 157, 52, .015) 0, transparent 30%);
  pointer-events: none
}

.cheapAndFast::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, rgba(57, 157, 52, .1), rgba(45, 125, 42, .05));
  clip-path: polygon(50% 0, 0 100%, 100% 100%)
}

.cheapAndFast__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2
}

.cheapAndFast__box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, rgba(57, 157, 52, .3)), color-stop(50%, rgba(45, 125, 42, .2)), color-stop(80%, rgba(57, 157, 52, .3)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(57, 157, 52, .3) 20%, rgba(45, 125, 42, .2) 50%, rgba(57, 157, 52, .3) 80%, transparent);
  z-index: -1
}

.cheapAndFast__wrp {
  position: relative;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 200px
}

.cheapAndFast__wrp::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(57, 157, 52, .08) 0, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.cheapAndFast__wrp:hover::before {
  -webkit-transform: translateX(-50%) scale(1.2);
  -ms-transform: translateX(-50%) scale(1.2);
  transform: translateX(-50%) scale(1.2);
  background: radial-gradient(circle, rgba(57, 157, 52, .12) 0, transparent 70%)
}

.cheapAndFast__imgWrp {
  position: relative;
  display: inline-block;
  margin-bottom: 20px
}

.cheapAndFast__imgWrp::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .1), rgba(45, 125, 42, .05));
  clip-path: polygon(20% 0, 80% 0, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0 80%, 0 20%);
  z-index: -1;
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.cheapAndFast__imgWrp::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, .3) 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  z-index: 1
}

.cheapAndFast__imgWrp:hover::before {
  -webkit-transform: rotate(45deg) scale(1.1);
  -ms-transform: rotate(45deg) scale(1.1);
  transform: rotate(45deg) scale(1.1);
  background: linear-gradient(135deg, rgba(57, 157, 52, .15), rgba(45, 125, 42, .08))
}

.cheapAndFast__imgWrp:hover::after {
  opacity: 1
}

.cheapAndFast__img {
  width: 75px;
  height: 75px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a5568, #718096);
  padding: 15px;
  border: 2px solid rgba(57, 157, 52, .4);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .2);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.cheapAndFast__img:hover {
  -webkit-transform: translateY(-5px) scale(1.05);
  -ms-transform: translateY(-5px) scale(1.05);
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  -webkit-box-shadow: 0 15px 40px rgba(57, 157, 52, .3), 0 8px 20px rgba(57, 157, 52, .2), inset 0 2px 0 rgba(255, 255, 255, .2);
  box-shadow: 0 15px 40px rgba(57, 157, 52, .3), 0 8px 20px rgba(57, 157, 52, .2), inset 0 2px 0 rgba(255, 255, 255, .2)
}

.cheapAndFast__txt {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.cheapAndFast__txt::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  -webkit-transition: width .3s ease;
  transition: width .3s ease
}

.cheapAndFast__wrp:hover .cheapAndFast__txt::before {
  width: 100%
}

.cheapAndFast::before {
  background-image: linear-gradient(45deg, rgba(57, 157, 52, .02) 25%, transparent 25%), linear-gradient(-45deg, rgba(45, 125, 42, .015) 25%, transparent 25%);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px
}

@media (max-width:992px) {
  .cheapAndFast {
    padding: 60px 0
  }

  .cheapAndFast__box {
    gap: 40px
  }

  .cheapAndFast__wrp {
    max-width: 180px
  }

  .cheapAndFast__img {
    width: 65px;
    height: 65px;
    padding: 12px
  }

  .cheapAndFast__txt {
    font-size: 15px
  }
}

@media (max-width:768px) {
  .cheapAndFast {
    padding: 50px 0
  }

  .cheapAndFast::after {
    display: none
  }

  .cheapAndFast__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px
  }

  .cheapAndFast__box::before {
    display: none
  }

  .cheapAndFast__wrp {
    max-width: 250px
  }

  .cheapAndFast__imgWrp {
    margin-bottom: 15px
  }

  .cheapAndFast__img {
    width: 60px;
    height: 60px;
    padding: 10px
  }

  .cheapAndFast__txt {
    font-size: 14px
  }
}

@media (max-width:480px) {
  .cheapAndFast {
    padding: 40px 0
  }

  .cheapAndFast__box {
    gap: 30px
  }

  .cheapAndFast__wrp {
    max-width: 200px
  }

  .cheapAndFast__img {
    width: 55px;
    height: 55px;
    padding: 8px
  }

  .cheapAndFast__txt {
    font-size: 13px;
    letter-spacing: .3px
  }
}

.eCheck {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0, #f1f8f1 50%, #fff 100%);
  position: relative;
  overflow: hidden
}

.eCheck::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/Stef_icons_alle_Elektrobefund.svg) 5% 15%/120px 120px no-repeat, url(../img/Stef_icons_alle_Geraetepruefung-Kopie.svg) 95% 85%/100px 100px no-repeat, radial-gradient(circle at 20% 30%, rgba(57, 157, 52, .02) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(45, 125, 42, .015) 0, transparent 35%);
  opacity: .3;
  pointer-events: none
}

.eCheck::after {
  content: "✓";
  position: absolute;
  top: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(57, 157, 52, .1), transparent 70%);
  border: 3px solid rgba(57, 157, 52, .2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  color: var(--mainColor);
  font-weight: 700;
  -webkit-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
  opacity: .6
}

.eCheck__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .7);
  border-radius: 20px;
  padding: 50px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, .06), 0 8px 16px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .06), 0 8px 16px rgba(0, 0, 0, .04), inset 0 1px 0 rgba(255, 255, 255, .8);
  border: 1px solid rgba(57, 157, 52, .1)
}

.eCheck__box::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(57, 157, 52, .2) 0, rgba(57, 157, 52, .2) 8px, transparent 8px, transparent 16px)
}

.eCheck__left {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  max-width: 700px;
  padding-left: 30px
}

.eCheck__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  color: #1a1a1a;
  margin-bottom: 30px;
  position: relative;
  padding-left: 25px
}

.eCheck__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(180deg, var(--mainColor), #2d7d2a);
  border-radius: 3px
}

.eCheck__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 25px;
  width: 80px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(var(--mainColor)), to(#2d7d2a));
  background: linear-gradient(90deg, var(--mainColor), #2d7d2a);
  border-radius: 2px
}

.eCheck__subTitle {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #2d7d2a;
  margin: 40px 0 20px 0;
  position: relative;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(57, 157, 52, .05), rgba(45, 125, 42, .03));
  border-radius: 8px;
  border-left: 4px solid var(--mainColor)
}

.eCheck__txt {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 20px 0;
  position: relative;
  padding-left: 20px;
  counter-increment: paragraph-counter;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: justify
}

.eCheck__txt::before {
  content: counter(paragraph-counter, decimal) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: var(--mainColor);
  font-size: 14px
}

.eCheck__txt:nth-of-type(2),
.eCheck__txt:nth-of-type(5) {
  background: rgba(57, 157, 52, .03);
  padding: 15px 20px 15px 40px;
  border-radius: 8px;
  border-left: 3px solid rgba(57, 157, 52, .3)
}

.eCheck__txt:nth-of-type(2)::before,
.eCheck__txt:nth-of-type(5)::before {
  left: 20px
}

.eCheck__left {
  counter-reset: paragraph-counter
}

.eCheck__imgWrp {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  max-width: 350px
}

.eCheck__imgWrp::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(45deg, transparent 10px, rgba(57, 157, 52, .1) 10px, rgba(57, 157, 52, .1) calc(100% - 10px), transparent calc(100% - 10px)), linear-gradient(-45deg, transparent 10px, rgba(45, 125, 42, .05) 10px, rgba(45, 125, 42, .05) calc(100% - 10px), transparent calc(100% - 10px));
  z-index: -1
}

.eCheck__imgWrp::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid rgba(57, 157, 52, .2);
  border-radius: 12px;
  z-index: -1
}

.eCheck__img {
  width: 100%;
  height: auto;
  max-height: 350px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  padding: 20px;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, .08), 0 6px 15px rgba(0, 0, 0, .06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08), 0 6px 15px rgba(0, 0, 0, .06);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.eCheck__img:hover {
  -webkit-transform: translateY(-5px) scale(1.02);
  -ms-transform: translateY(-5px) scale(1.02);
  transform: translateY(-5px) scale(1.02);
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .12), 0 10px 25px rgba(0, 0, 0, .08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12), 0 10px 25px rgba(0, 0, 0, .08)
}

.eCheck::before {
  background-image: url(../img/Stef_icons_alle_Elektrobefund.svg), url(../img/Stef_icons_alle_Geraetepruefung-Kopie.svg), radial-gradient(circle at 15% 80%, rgba(57, 157, 52, .02), transparent 30%), radial-gradient(circle at 85% 20%, rgba(45, 125, 42, .015), transparent 25%);
  background-position: 5% 15%, 95% 85%, 0 0, 0 0;
  background-size: 120px 120px, 100px 100px, 100% 100%, 100% 100%
}

@media (max-width:992px) {
  .eCheck {
    padding: 80px 0
  }

  .eCheck__box {
    gap: 40px;
    padding: 40px 30px
  }

  .eCheck__title {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 25px
  }

  .eCheck__subTitle {
    font-size: clamp(18px, 3vw, 24px);
    margin: 30px 0 15px 0;
    padding: 12px 15px
  }

  .eCheck__txt {
    font-size: 15px;
    padding-left: 18px
  }

  .eCheck__txt:nth-of-type(2),
  .eCheck__txt:nth-of-type(5) {
    padding: 12px 15px 12px 35px
  }

  .eCheck__txt:nth-of-type(2)::before,
  .eCheck__txt:nth-of-type(5)::before {
    left: 15px
  }
}

@media (max-width:768px) {
  .eCheck {
    padding: 60px 0
  }

  .eCheck::after {
    display: none
  }

  .eCheck__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding: 30px 20px
  }

  .eCheck__box::before {
    display: none
  }

  .eCheck__left {
    max-width: 100%;
    padding-left: 0
  }

  .eCheck__title {
    text-align: center;
    padding-left: 0
  }

  .eCheck__title::before {
    display: none
  }

  .eCheck__title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  .eCheck__subTitle {
    text-align: center
  }

  .eCheck__txt {
    text-align: left;
    padding-left: 20px;
    font-size: 14px
  }

  .eCheck__txt:nth-of-type(2),
  .eCheck__txt:nth-of-type(5) {
    padding: 10px 15px 10px 35px
  }

  .eCheck__imgWrp {
    max-width: 280px;
    margin: 0 auto
  }

  .eCheck__imgWrp::after,
  .eCheck__imgWrp::before {
    display: none
  }

  .eCheck__img {
    max-height: 280px;
    padding: 15px
  }
}

@media (max-width:480px) {
  .eCheck {
    padding: 50px 0
  }

  .eCheck__box {
    padding: 25px 15px;
    border-radius: 15px
  }

  .eCheck__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 20px
  }

  .eCheck__subTitle {
    font-size: clamp(16px, 4vw, 20px);
    margin: 25px 0 12px 0;
    padding: 10px 12px
  }

  .eCheck__txt {
    font-size: 13px;
    line-height: 1.6;
    padding-left: 18px;
    margin-bottom: 15px
  }

  .eCheck__txt:nth-of-type(2),
  .eCheck__txt:nth-of-type(5) {
    padding: 8px 12px 8px 30px
  }

  .eCheck__txt:nth-of-type(2)::before,
  .eCheck__txt:nth-of-type(5)::before {
    left: 12px
  }

  .eCheck__imgWrp {
    max-width: 250px
  }

  .eCheck__img {
    max-height: 250px;
    padding: 12px
  }
}

.forms {
  padding: 120px 0;
  background: radial-gradient(circle at 30% 40%, rgba(57, 157, 52, .08) 0, transparent 50%), radial-gradient(circle at 70% 60%, rgba(45, 122, 45, .06) 0, transparent 50%), linear-gradient(135deg, #f0f7f0 0, #fff 40%, #f0f7f0 100%);
  position: relative;
  overflow: hidden
}

.forms::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(57, 157, 52, .04) 0, transparent 60%), radial-gradient(circle at 20% 80%, rgba(31, 94, 33, .03) 0, transparent 60%);
  z-index: 1
}

.forms::after {
  content: "📧";
  position: absolute;
  top: 20%;
  right: 8%;
  font-size: 70px;
  opacity: .06;
  -webkit-animation: forms-float 8s ease-in-out infinite;
  animation: forms-float 8s ease-in-out infinite;
  z-index: 2
}

.forms__wrapper {
  position: relative;
  z-index: 10
}

.forms__box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(240, 247, 240, .9) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 60px 50px;
  -webkit-box-shadow: 0 25px 50px rgba(57, 157, 52, .12), 0 10px 20px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .7);
  box-shadow: 0 25px 50px rgba(57, 157, 52, .12), 0 10px 20px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .7);
  border: 1px solid rgba(57, 157, 52, .15);
  position: relative
}

.forms__box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2) 0, transparent 60%);
  border-radius: 30px;
  pointer-events: none
}

.forms__title {
  font-size: 46px;
  font-weight: 700;
  color: #399d34;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased
}

.forms__title::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 140px;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, rgba(57, 157, 52, .6)), color-stop(50%, #399d34), color-stop(85%, rgba(57, 157, 52, .6)), to(transparent));
  background: linear-gradient(90deg, transparent 0, rgba(57, 157, 52, .6) 15%, #399d34 50%, rgba(57, 157, 52, .6) 85%, transparent 100%);
  border-radius: 3px;
  -webkit-animation: forms-title-line 3s ease-in-out infinite;
  animation: forms-title-line 3s ease-in-out infinite
}

form {
  position: relative
}

.form-control {
  background: linear-gradient(135deg, rgba(255, 255, 255, .9) 0, rgba(240, 247, 240, .7) 100%);
  border: 2px solid rgba(57, 157, 52, .2);
  border-radius: 16px;
  padding: 18px 25px;
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
  -webkit-box-shadow: 0 4px 12px rgba(57, 157, 52, .08), inset 0 1px 0 rgba(255, 255, 255, .5);
  box-shadow: 0 4px 12px rgba(57, 157, 52, .08), inset 0 1px 0 rgba(255, 255, 255, .5);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative
}

.form-control::-webkit-input-placeholder {
  color: #9ca3af;
  font-weight: 500
}

.form-control::-moz-placeholder {
  color: #9ca3af;
  font-weight: 500
}

.form-control:-ms-input-placeholder {
  color: #9ca3af;
  font-weight: 500
}

.form-control::-ms-input-placeholder {
  color: #9ca3af;
  font-weight: 500
}

.form-control::placeholder {
  color: #9ca3af;
  font-weight: 500
}

.form-control:focus {
  outline: 0;
  border-color: rgba(57, 157, 52, .5);
  -webkit-box-shadow: 0 8px 25px rgba(57, 157, 52, .15), 0 0 0 4px rgba(57, 157, 52, .1), inset 0 1px 0 rgba(255, 255, 255, .7);
  box-shadow: 0 8px 25px rgba(57, 157, 52, .15), 0 0 0 4px rgba(57, 157, 52, .1), inset 0 1px 0 rgba(255, 255, 255, .7);
  background: linear-gradient(135deg, rgba(255, 255, 255, .95) 0, rgba(240, 247, 240, .8) 100%);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px)
}

.form-control:hover:not(:focus) {
  border-color: rgba(57, 157, 52, .3);
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 18px rgba(57, 157, 52, .1), inset 0 1px 0 rgba(255, 255, 255, .6);
  box-shadow: 0 6px 18px rgba(57, 157, 52, .1), inset 0 1px 0 rgba(255, 255, 255, .6)
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit
}

.my-0,
.my-4 {
  position: relative
}

.my-0::before,
.my-4::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #399d34;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.my-0:focus-within::before,
.my-4:focus-within::before {
  opacity: 1;
  -webkit-transform: translateY(-50%) translateX(5px);
  -ms-transform: translateY(-50%) translateX(5px);
  transform: translateY(-50%) translateX(5px)
}

.forms__button {
  background: linear-gradient(135deg, #399d34 0, #2d7a2d 50%, #1f5e21 100%);
  color: #fff !important;
  border: none;
  border-radius: 18px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 12px 24px rgba(57, 157, 52, .3), 0 4px 8px rgba(0, 0, 0, .1);
  box-shadow: 0 12px 24px rgba(57, 157, 52, .3), 0 4px 8px rgba(0, 0, 0, .1);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  display: block;
  margin: 30px auto 0;
  min-width: 200px
}

.forms__button::before {
  content: "✉️";
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease
}

.forms__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(255, 255, 255, .3)), to(transparent));
  background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .3) 50%, transparent 100%);
  -webkit-transition: left .6s ease;
  transition: left .6s ease
}

.forms__button:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 18px 35px rgba(57, 157, 52, .4), 0 8px 15px rgba(0, 0, 0, .15);
  box-shadow: 0 18px 35px rgba(57, 157, 52, .4), 0 8px 15px rgba(0, 0, 0, .15);
  background: linear-gradient(135deg, #4ade80 0, #399d34 50%, #2d7a2d 100%)
}

.forms__button:hover::before {
  -webkit-transform: translateY(-50%) scale(1.1);
  -ms-transform: translateY(-50%) scale(1.1);
  transform: translateY(-50%) scale(1.1)
}

.forms__button:hover::after {
  left: 100%
}

.forms__button:active {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 20px rgba(57, 157, 52, .3), 0 3px 6px rgba(0, 0, 0, .1);
  box-shadow: 0 8px 20px rgba(57, 157, 52, .3), 0 3px 6px rgba(0, 0, 0, .1)
}

div[id^=jq_] {
  background: rgba(239, 68, 68, .1);
  color: #dc2626 !important;
  border: 1px solid rgba(239, 68, 68, .2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 8px;
  font-size: 14px !important;
  font-weight: 600 !important;
  position: relative
}

div[id^=jq_]::before {
  content: "⚠️";
  margin-right: 8px
}

#jq_success {
  background: linear-gradient(135deg, rgba(57, 157, 52, .1) 0, rgba(240, 247, 240, .9) 100%);
  color: #1f5e21;
  border: 2px solid rgba(57, 157, 52, .3);
  border-radius: 16px;
  padding: 20px 25px;
  margin-top: 25px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0 8px 20px rgba(57, 157, 52, .15), inset 0 1px 0 rgba(255, 255, 255, .6);
  box-shadow: 0 8px 20px rgba(57, 157, 52, .15), inset 0 1px 0 rgba(255, 255, 255, .6)
}

#jq_success::before {
  content: "✅";
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
  -webkit-animation: success-bounce 1s ease-out;
  animation: success-bounce 1s ease-out
}

@-webkit-keyframes forms-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    opacity: .06
  }

  33% {
    -webkit-transform: translateY(-15px) rotate(5deg);
    transform: translateY(-15px) rotate(5deg);
    opacity: .09
  }

  66% {
    -webkit-transform: translateY(-8px) rotate(-3deg);
    transform: translateY(-8px) rotate(-3deg);
    opacity: .07
  }
}

@keyframes forms-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    opacity: .06
  }

  33% {
    -webkit-transform: translateY(-15px) rotate(5deg);
    transform: translateY(-15px) rotate(5deg);
    opacity: .09
  }

  66% {
    -webkit-transform: translateY(-8px) rotate(-3deg);
    transform: translateY(-8px) rotate(-3deg);
    opacity: .07
  }
}

@-webkit-keyframes forms-title-line {

  0%,
  100% {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
    opacity: 1
  }

  50% {
    -webkit-transform: translateX(-50%) scaleX(1.1);
    transform: translateX(-50%) scaleX(1.1);
    opacity: .8
  }
}

@keyframes forms-title-line {

  0%,
  100% {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
    opacity: 1
  }

  50% {
    -webkit-transform: translateX(-50%) scaleX(1.1);
    transform: translateX(-50%) scaleX(1.1);
    opacity: .8
  }
}

@-webkit-keyframes success-bounce {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes success-bounce {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@media (max-width:992px) {
  .forms {
    padding: 80px 0
  }

  .forms::after {
    font-size: 55px
  }

  .forms__box {
    padding: 45px 35px;
    border-radius: 25px
  }

  .forms__title {
    font-size: 38px;
    margin-bottom: 40px
  }

  .forms__title::after {
    width: 120px;
    height: 4px
  }

  .form-control {
    padding: 16px 20px;
    font-size: 15px
  }

  .forms__button {
    padding: 18px 35px;
    font-size: 16px;
    min-width: 180px
  }
}

@media (max-width:768px) {
  .forms {
    padding: 60px 0
  }

  .forms::after {
    display: none
  }

  .forms__box {
    padding: 35px 25px;
    border-radius: 20px;
    margin: 0 15px
  }

  .forms__title {
    font-size: 32px;
    margin-bottom: 35px
  }

  .forms__title::after {
    width: 100px;
    height: 3px
  }

  .form-control {
    padding: 15px 18px;
    font-size: 14px;
    border-radius: 12px
  }

  .forms__button {
    padding: 16px 30px;
    font-size: 15px;
    border-radius: 14px;
    min-width: 160px
  }

  .forms__button::before {
    font-size: 16px;
    left: 12px
  }

  .my-0::before,
  .my-4::before {
    display: none
  }
}

@media (max-width:480px) {
  .forms {
    padding: 40px 0
  }

  .forms__box {
    padding: 28px 18px;
    margin: 0 10px
  }

  .forms__title {
    font-size: 26px;
    margin-bottom: 30px
  }

  .forms__title::after {
    width: 80px;
    height: 3px
  }

  .form-control {
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 10px
  }

  .forms__button {
    padding: 15px 25px;
    font-size: 14px;
    border-radius: 12px;
    min-width: 140px
  }

  .forms__button::before {
    font-size: 14px;
    left: 10px
  }

  #jq_success {
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 12px
  }

  div[id^=jq_] {
    padding: 6px 10px;
    font-size: 13px !important;
    border-radius: 6px
  }
}

@media (max-width:375px) {
  .forms__box {
    padding: 25px 15px;
    margin: 0 8px
  }

  .forms__title {
    font-size: 22px;
    margin-bottom: 25px
  }

  .forms__title::after {
    width: 60px;
    height: 2px
  }

  .form-control {
    padding: 12px 14px;
    font-size: 13px
  }

  .forms__button {
    padding: 14px 20px;
    font-size: 13px;
    min-width: 120px;
    letter-spacing: .5px
  }
}

@media (max-width:320px) {
  .forms__box {
    padding: 20px 12px;
    margin: 0 5px
  }

  .forms__title {
    font-size: 20px;
    margin-bottom: 20px
  }

  .forms__title::after {
    width: 50px
  }

  .form-control {
    padding: 11px 12px;
    font-size: 13px
  }

  .forms__button {
    padding: 12px 18px;
    font-size: 12px;
    min-width: 110px
  }

  .forms__button::before {
    font-size: 12px;
    left: 8px
  }

  #jq_success {
    padding: 14px 16px;
    font-size: 14px
  }
}

.btnFixed {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 15px 15px;
  z-index: 1000;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, .95)), to(transparent));
  background: linear-gradient(to top, rgba(255, 255, 255, .95), transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px)
}

.btnFixed__box {
  position: relative
}

.btnFixed__box::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  border-radius: 18px;
  opacity: .1;
  -webkit-animation: glow 3s ease-in-out infinite alternate;
  animation: glow 3s ease-in-out infinite alternate
}

.btnFixed__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  text-align: center;
  padding: 18px 20px;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  -webkit-box-shadow: 0 8px 25px rgba(57, 157, 52, .3), 0 4px 12px rgba(0, 0, 0, .15);
  box-shadow: 0 8px 25px rgba(57, 157, 52, .3), 0 4px 12px rgba(0, 0, 0, .15);
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden
}

.btnFixed__btn span {
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: .5px
}

.btnFixed__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  -webkit-transition: left .6s;
  transition: left .6s;
  z-index: 1
}

.btnFixed__btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url(../icons/telephone-fill.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  z-index: 2;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease
}

.btnFixed__btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 12px 35px rgba(57, 157, 52, .4), 0 6px 18px rgba(0, 0, 0, .2);
  box-shadow: 0 12px 35px rgba(57, 157, 52, .4), 0 6px 18px rgba(0, 0, 0, .2)
}

.btnFixed__btn:hover::before {
  left: 100%
}

.btnFixed__btn:hover::after {
  -webkit-transform: translateY(-50%) scale(1.2);
  -ms-transform: translateY(-50%) scale(1.2);
  transform: translateY(-50%) scale(1.2)
}

.btnFixed__btn:active {
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 20px rgba(57, 157, 52, .3), 0 3px 10px rgba(0, 0, 0, .15);
  box-shadow: 0 6px 20px rgba(57, 157, 52, .3), 0 3px 10px rgba(0, 0, 0, .15)
}

@-webkit-keyframes glow {
  0% {
    opacity: .1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  100% {
    opacity: .2;
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
  }
}

@keyframes glow {
  0% {
    opacity: .1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  100% {
    opacity: .2;
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
  }
}

@media (max-width:768px) {
  .btnFixed {
    display: block
  }

  .btnFixed__btn {
    font-size: 16px;
    padding: 16px 18px
  }

  .btnFixed__btn::after {
    width: 20px;
    height: 20px;
    right: 18px
  }
}

.btnFixedD {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite
}

.btnFixedD__box {
  position: relative
}

.btnFixedD__box::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: var(--mainColor);
  border-radius: 50%;
  opacity: .2;
  -webkit-animation: ripple 2s infinite;
  animation: ripple 2s infinite
}

.btnFixedD__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mainColor), #2d7d2a);
  padding: 0;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  -webkit-box-shadow: 0 8px 25px rgba(57, 157, 52, .3), 0 4px 12px rgba(0, 0, 0, .15);
  box-shadow: 0 8px 25px rgba(57, 157, 52, .3), 0 4px 12px rgba(0, 0, 0, .15);
  -webkit-transition: all .3s cubic-bezier(.4, 0, .2, 1);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid #fff
}

.btnFixedD__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .3)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  -webkit-transition: left .5s;
  transition: left .5s
}

.btnFixedD__btn:hover {
  -webkit-transform: scale(1.1) translateY(-2px);
  -ms-transform: scale(1.1) translateY(-2px);
  transform: scale(1.1) translateY(-2px);
  -webkit-box-shadow: 0 12px 35px rgba(57, 157, 52, .4), 0 6px 18px rgba(0, 0, 0, .2);
  box-shadow: 0 12px 35px rgba(57, 157, 52, .4), 0 6px 18px rgba(0, 0, 0, .2)
}

.btnFixedD__btn:hover::before {
  left: 100%
}

.btnFixedD__btn:active {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 6px 20px rgba(57, 157, 52, .3), 0 3px 10px rgba(0, 0, 0, .15);
  box-shadow: 0 6px 20px rgba(57, 157, 52, .3), 0 3px 10px rgba(0, 0, 0, .15)
}

.btnFixedD__img {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease
}

.btnFixedD__btn:hover .btnFixedD__img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1)
}

@keyframes pulse {

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

  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
  }
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .2
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: .1
  }

  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: .2
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: .1
  }

  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0
  }
}

@media (max-width:768px) {
  .btnFixedD {
    bottom: 20px;
    right: 20px
  }

  .btnFixedD__btn {
    width: 50px;
    height: 50px
  }

  .btnFixedD__img {
    width: 20px;
    height: 20px
  }
}

.footer-standorte {
  padding: 50px 0 40px;
  background: radial-gradient(circle at 40% 20%, rgba(57, 157, 52, .12) 0, transparent 50%), radial-gradient(circle at 80% 80%, rgba(45, 122, 45, .08) 0, transparent 50%), linear-gradient(135deg, #1f5e21 0, #2d7a2d 50%, #399d34 100%);
  position: relative;
  overflow: hidden;
  color: #fff
}

.footer-standorte::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, .05) 0, transparent 60%), radial-gradient(circle at 20% 90%, rgba(255, 255, 255, .03) 0, transparent 50%);
  z-index: 1
}

.footer-standorte::after {
  content: "🏢";
  position: absolute;
  top: 15%;
  right: 5%;
  font-size: 120px;
  opacity: .08;
  -webkit-animation: footer-float 12s ease-in-out infinite;
  animation: footer-float 12s ease-in-out infinite;
  z-index: 2
}

.footer-standorte .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10
}

.footer-standorte h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
  line-height: 1.3;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative
}

.footer-standorte h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 160px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, rgba(255, 255, 255, .6)), color-stop(50%, #fff), color-stop(80%, rgba(255, 255, 255, .6)), to(transparent));
  background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .6) 20%, #fff 50%, rgba(255, 255, 255, .6) 80%, transparent 100%);
  border-radius: 2px;
  -webkit-animation: footer-line 3s ease-in-out infinite;
  animation: footer-line 3s ease-in-out infinite
}

.standorte-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto
}

.standorte-liste li {
  background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0, rgba(255, 255, 255, .08) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15), inset 0 1px 0 rgba(255, 255, 255, .3);
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  margin: 0;
  vertical-align: top
}

.standorte-liste li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .8)), color-stop(50%, rgba(255, 255, 255, .4)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(180deg, rgba(255, 255, 255, .8) 0, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, .8) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.standorte-liste li:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .4);
  background: linear-gradient(135deg, rgba(255, 255, 255, .25) 0, rgba(255, 255, 255, .15) 100%);
  border-color: rgba(255, 255, 255, .3)
}

.standorte-liste li:hover::before {
  opacity: 1
}

.standorte-liste li:hover a {
  color: #f0f7f0;
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px)
}

.standorte-liste li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0
}

.standorte-liste li a:hover {
  text-decoration: none
}

@-webkit-keyframes footer-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    opacity: .08
  }

  25% {
    -webkit-transform: translateY(-10px) rotate(2deg);
    transform: translateY(-10px) rotate(2deg);
    opacity: .12
  }

  50% {
    -webkit-transform: translateY(-5px) rotate(0);
    transform: translateY(-5px) rotate(0);
    opacity: .1
  }

  75% {
    -webkit-transform: translateY(-15px) rotate(-1deg);
    transform: translateY(-15px) rotate(-1deg);
    opacity: .06
  }
}

@keyframes footer-float {

  0%,
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    opacity: .08
  }

  25% {
    -webkit-transform: translateY(-10px) rotate(2deg);
    transform: translateY(-10px) rotate(2deg);
    opacity: .12
  }

  50% {
    -webkit-transform: translateY(-5px) rotate(0);
    transform: translateY(-5px) rotate(0);
    opacity: .1
  }

  75% {
    -webkit-transform: translateY(-15px) rotate(-1deg);
    transform: translateY(-15px) rotate(-1deg);
    opacity: .06
  }
}

@-webkit-keyframes footer-line {

  0%,
  100% {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
    opacity: 1
  }

  50% {
    -webkit-transform: translateX(-50%) scaleX(1.2);
    transform: translateX(-50%) scaleX(1.2);
    opacity: .7
  }
}

@keyframes footer-line {

  0%,
  100% {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
    opacity: 1
  }

  50% {
    -webkit-transform: translateX(-50%) scaleX(1.2);
    transform: translateX(-50%) scaleX(1.2);
    opacity: .7
  }
}

@media (max-width:992px) {
  .footer-standorte {
    padding: 40px 0 35px
  }

  .footer-standorte::after {
    font-size: 90px
  }

  .footer-standorte .container {
    padding: 0 15px
  }

  .footer-standorte h2 {
    font-size: 28px;
    margin-bottom: 30px
  }

  .footer-standorte h2::after {
    width: 140px;
    height: 3px
  }

  .standorte-liste {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
  }

  .standorte-liste li a {
    padding: 14px 18px;
    font-size: 15px
  }
}

@media (max-width:768px) {
  .footer-standorte {
    padding: 35px 0 30px
  }

  .footer-standorte::after {
    display: none
  }

  .footer-standorte .container {
    padding: 0 12px
  }

  .footer-standorte h2 {
    font-size: 22px;
    margin-bottom: 25px
  }

  .footer-standorte h2::after {
    width: 120px;
    height: 3px
  }

  .standorte-liste {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .standorte-liste li {
    border-radius: 12px
  }

  .standorte-liste li a {
    padding: 12px 16px;
    font-size: 14px
  }
}

@media (max-width:480px) {
  .footer-standorte {
    padding: 30px 0 25px
  }

  .footer-standorte .container {
    padding: 0 10px
  }

  .footer-standorte h2 {
    font-size: 18px;
    margin-bottom: 20px
  }

  .footer-standorte h2::after {
    width: 100px;
    height: 2px
  }

  .standorte-liste {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px
  }

  .standorte-liste li {
    border-radius: 10px
  }

  .standorte-liste li a {
    padding: 10px 14px;
    font-size: 14px
  }
}

@media (max-width:375px) {
  .footer-standorte {
    padding: 25px 0 20px
  }

  .footer-standorte .container {
    padding: 0 8px
  }

  .footer-standorte h2 {
    font-size: 18px;
    margin-bottom: 18px
  }

  .footer-standorte h2::after {
    width: 80px
  }

  .standorte-liste {
    gap: 6px
  }

  .standorte-liste li a {
    padding: 8px 12px;
    font-size: 13px
  }
}

@media (max-width:320px) {
  .footer-standorte {
    padding: 20px 0 15px
  }

  .footer-standorte .container {
    padding: 0 5px
  }

  .footer-standorte h2 {
    font-size: 16px;
    margin-bottom: 15px
  }

  .footer-standorte h2::after {
    width: 60px;
    height: 2px
  }

  .standorte-liste {
    gap: 5px
  }

  .standorte-liste li a {
    padding: 6px 10px;
    font-size: 13px
  }
}

@media (max-width:500px) {
  .btnFixedD {
    display: none
  }

  .btnFixed {
    display: block
  }

}

/* Services Modern Section - Clean Minimalist Design */
.services-modern {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.services-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, #f8fafb 0%, transparent 100%);
  z-index: 0;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.services-intro {
  text-align: center;
  margin-bottom: 80px;
}

.services-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8b95a7;
  margin-bottom: 20px;
}

.services-heading {
  font-size: 48px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-description {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Layout */
.services-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Main Services Cards */
.services-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

/* Primary Card */
.card-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  color: white;
  padding: 40px;
}

.card-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.card-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-primary .card-title {
  color: white;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.95;
}


.card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-label {
  font-size: 16px;
  opacity: 0.8;
}

.price-value {
  font-size: 32px;
  font-weight: 700;
}

.price-value-white {
  color: white !important;
}

.cta-title {
  color: var(--text-secondary) !important;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #6366f1;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-action:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  color: #6366f1;
}

/* Secondary Cards */
.card-secondary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
}

.card-secondary:hover {
  border-color: #6366f1;
}

.card-icon-side {
  width: 56px;
  height: 56px;
  background: #f1f5f9;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-secondary .card-content {
  flex: 1;
}

.card-secondary .card-title {
  font-size: 20px;
  color: #1a202c;
  margin-bottom: 8px;
}

.card-secondary .card-description {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.card-info {
  display: flex;
  gap: 20px;
}

.info-price {
  font-size: 16px;
  font-weight: 600;
  color: #6366f1;
}

.info-time {
  font-size: 14px;
  color: #8b95a7;
}

.card-arrow {
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: #64748b;
}

.card-secondary:hover .card-arrow {
  background: #6366f1;
  color: white;
  transform: translateX(4px);
}

/* Extra Services */
.services-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.extra-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.extra-card:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.extra-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.extra-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 4px;
}

.extra-card p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

.extra-price {
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
}

/* Bottom CTA */
.services-bottom {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  border-radius: 24px;
  padding: 48px;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.bottom-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.bottom-text p {
  font-size: 16px;
  color: #64748b;
}

.bottom-actions {
  display: flex;
  gap: 16px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #1a202c;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.btn-call:hover {
  border-color: #6366f1;
  color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.15);
}

.btn-form {
  display: inline-flex;
  align-items: center;
  background: #6366f1;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-form:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.bottom-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  background: rgba(99, 102, 241, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-extra {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-modern {
    padding: 60px 0;
  }

  .services-intro {
    margin-bottom: 50px;
  }

  .services-label {
    font-size: 12px;
  }

  .services-heading {
    font-size: 28px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-main {
    gap: 15px;
  }

  .card-primary {
    padding: 25px 20px;
  }

  .card-primary::before {
    display: none;
  }

  .card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .card-description {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .card-content {
    gap: 15px;
  }

  .card-price {
    margin-bottom: 15px;
  }

  .price-value {
    font-size: 24px;
  }

  .price-label {
    font-size: 12px;
  }

  .card-features {
    gap: 8px;
  }

  .feature-item {
    font-size: 13px;
    padding: 6px 0;
  }

  .card-action {
    padding: 12px 20px;
    font-size: 14px;
  }

  .card-secondary {
    padding: 20px;
  }

  .card-secondary .card-content {
    gap: 10px;
  }

  .card-badge {
    padding: 4px 10px;
    font-size: 10px;
  }

  .services-side {
    gap: 15px;
  }

  .side-card {
    padding: 20px;
  }

  .side-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .side-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .side-description {
    font-size: 13px;
  }

  .services-extra {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .extra-card {
    padding: 15px;
  }

  .extra-header {
    gap: 10px;
    margin-bottom: 10px;
  }

  .extra-icon {
    width: 36px;
    height: 36px;
  }

  .extra-title {
    font-size: 14px;
  }

  .extra-content {
    font-size: 13px;
  }

  .services-bottom {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .bottom-title {
    font-size: 20px;
  }

  .bottom-subtitle {
    font-size: 14px;
  }

  .bottom-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-call,
  .btn-form {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  .bottom-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .services-modern {
    padding: 40px 0;
  }

  .services-intro {
    margin-bottom: 30px;
  }

  .services-heading {
    font-size: 24px;
    line-height: 1.3;
  }

  .card-primary {
    padding: 20px 15px;
  }

  .card-title {
    font-size: 18px;
  }

  .price-value {
    font-size: 22px;
  }

  .card-secondary {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .card-secondary .card-header {
    margin-bottom: 10px;
  }

  .card-arrow {
    display: none;
  }

  .services-bottom {
    padding: 25px 15px;
  }

  .bottom-stats {
    flex-direction: row;
    gap: 15px;
    padding-top: 20px;
  }

  .stat-item {
    flex: 1;
  }

  .bottom-title {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .services-container {
    padding: 0 15px;
  }

  .services-heading {
    font-size: 22px;
  }

  .card-primary {
    padding: 18px 12px;
  }

  .card-features {
    display: none;
  }

  .card-action {
    padding: 10px 15px;
    font-size: 13px;
  }

  .extra-card {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }

  .extra-header {
    justify-content: center;
  }

  .bottom-stats {
    gap: 10px;
    padding-top: 15px;
  }

  .stat-number {
    font-size: 16px;
  }

  .stat-label {
    font-size: 10px;
  }
}

/* Why Choose Section - New Design */
.why-choose-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
}

.why-choose-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.why-choose-section .section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Grid Layout */
.why-choose-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* Experience Card */
.experience-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.years-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.years-number {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: white;
}

.years-number-white {
  color: white !important;
  font-size: 32px;
}

.years-text {
  font-size: 10px;
  margin-top: 3px;
  text-align: center;
  line-height: 1.2;
  color: white;
  opacity: 0.95;
}

.trust-indicators {
  display: flex;
  gap: 10px;
}

.trust-indicators .indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.trust-indicators .indicator img {
  filter: none;
}

.experience-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.experience-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.certifications {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.certifications img {
  opacity: 0.7;
  transition: all 0.3s ease;
}

.certifications img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Benefits Cards Grid */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  padding-bottom: 60px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  min-height: 220px;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(52, 152, 219, 0.15);
}

.benefit-card.primary {
  border: 2px solid #3498db;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 50%;
}

.benefit-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.benefit-card.primary .benefit-icon {
  background: linear-gradient(135deg, #3498db, #2c3e50);
}

.benefit-card.primary .benefit-icon img {
  filter: brightness(0) invert(1);
  width: 40px;
  height: 40px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.benefit-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* CTA Section */
.why-choose-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--primary-dark), #1a252f);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

.why-choose-cta .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.why-choose-cta .cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.why-choose-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why-choose-cta .btn-primary,
.why-choose-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-choose-cta .btn-primary {
  background: white;
  color: var(--primary-dark);
}

.why-choose-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.why-choose-cta .btn-primary img {
  filter: invert(24%) sepia(95%) saturate(1504%) hue-rotate(185deg) brightness(91%) contrast(91%);
}

.why-choose-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.why-choose-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-card {
    position: relative;
    top: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .benefits-cards {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 40px 15px;
  }

  .why-choose-section .section-header {
    margin-bottom: 40px;
  }

  .why-choose-section .section-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .why-choose-section .section-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .experience-card {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .experience-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .experience-years {
    width: 70px;
    height: 70px;
  }

  .years-number {
    font-size: 24px;
  }

  .years-text {
    font-size: 10px;
  }

  .experience-title h3 {
    font-size: 18px;
  }

  .experience-title p {
    font-size: 13px;
  }

  .experience-stats {
    gap: 10px;
    margin-bottom: 20px;
  }

  .stat-box {
    padding: 12px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }

  .experience-points {
    gap: 10px;
    margin-bottom: 20px;
  }

  .point-item {
    font-size: 13px;
    padding: 8px 0;
  }

  .experience-footer {
    padding-top: 20px;
  }

  .trust-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .benefits-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .benefit-card {
    padding: 20px;
    border-radius: 12px;
  }

  .benefit-badge {
    font-size: 10px;
    padding: 4px 10px;
    bottom: 10px;
  }

  .badge-number {
    font-size: 20px;
  }

  .badge-text {
    font-size: 8px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .benefit-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .benefit-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .benefit-features {
    gap: 8px;
  }

  .feature-tag {
    font-size: 11px;
    padding: 4px 8px;
  }

  .why-choose-cta {
    padding: 25px 15px;
    border-radius: 15px;
    margin-top: 30px;
  }

  .why-choose-cta .cta-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .why-choose-cta .cta-header p {
    font-size: 14px;
  }

  .why-choose-cta .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 30px 10px;
  }

  .why-choose-section .section-title {
    font-size: 20px;
  }

  .why-choose-section .section-subtitle {
    font-size: 13px;
  }

  .experience-card {
    padding: 20px 15px;
  }

  .experience-years {
    width: 60px;
    height: 60px;
  }

  .years-number {
    font-size: 20px;
  }

  .experience-title h3 {
    font-size: 16px;
  }

  .stat-box {
    padding: 10px 8px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 10px;
  }

  .benefit-card {
    padding: 15px;
    padding-bottom: 50px;
  }

  .benefit-badge {
    font-size: 9px;
    padding: 3px 8px;
  }

  .badge-number {
    font-size: 18px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
  }

  .benefit-title {
    font-size: 15px;
  }

  .benefit-description {
    font-size: 12px;
  }

  .feature-tag {
    font-size: 10px;
    padding: 3px 6px;
  }
}

@media (max-width: 375px) {
  .why-choose-section {
    padding: 25px 10px;
  }

  .why-choose-grid {
    gap: 25px;
  }

  .experience-stats {
    flex-wrap: wrap;
  }

  .stat-box {
    flex: 1 1 45%;
    min-width: 0;
  }

  .benefit-badge {
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 15px;
  }

  .benefit-features {
    flex-wrap: wrap;
  }

  .why-choose-cta {
    padding: 20px 12px;
  }

  .why-choose-cta .cta-header h3 {
    font-size: 18px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* Old Why Choose Modern Section - Commented Out */
/*.why-choose-modern {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}*/

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Animated Background */
.why-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.1;
}

.circle-decorator {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-accent);
}

.circle-decorator.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  animation: float 20s ease-in-out infinite;
}

.circle-decorator.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -30px;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

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

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hexagon-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 35px, rgba(52, 152, 219, 0.03) 35px, rgba(52, 152, 219, 0.03) 70px);
}

/* Header Block */
.why-header-block {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.badge-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
}

.badge-text {
  color: var(--primary-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.why-main-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.title-line-1,
.title-line-2 {
  color: var(--primary-dark);
  display: inline-block;
  margin: 0 8px;
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
  position: relative;
}

.why-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Split Content Layout */
.why-split-content {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* Experience Showcase */
.experience-showcase {
  position: relative;
}

.showcase-card-main {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.1);
  position: relative;
  overflow: hidden;
  min-height: fit-content;
}

.showcase-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
}

.card-top-section {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 2px solid var(--neutral-light);
}

.experience-years {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 20px;
  position: relative;
}

.years-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1;
}

.years-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-details h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.experience-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.card-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.stat-txt {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certified-badges {
  display: flex;
  gap: 15px;
}

.cert-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg-accent);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.quick-facts-ribbon {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-dark), var(--neutral-dark));
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fact-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

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

/* Benefits Grid Modern */
.benefits-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.benefits-grid-modern .benefit-card-large {
  grid-column: span 1;
}

.benefits-grid-modern .benefit-card-small:nth-child(3),
.benefits-grid-modern .benefit-card-small:nth-child(4) {
  grid-column: span 1;
}

.benefits-grid-modern .benefit-card-small:nth-child(5),
.benefits-grid-modern .benefit-card-small:nth-child(6) {
  grid-column: span 1;
}

.benefit-card-large {
  grid-column: span 1;
  background: white;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
}

.benefit-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.card-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0.05;
}

.speed-card .card-gradient-bg {
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
}

.price-card .card-gradient-bg {
  background: linear-gradient(135deg, #f2994a, #f2c94c);
}

.card-inner {
  position: relative;
  z-index: 1;
}

.benefit-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(52, 152, 219, 0.1);
}

.benefit-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.benefit-icon-box img {
  filter: brightness(0) invert(1);
}

.benefit-card-large h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.benefit-card-large p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.benefit-highlight {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-accent);
}

.benefit-card-small {
  grid-column: span 1;
  background: white;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: var(--transition-base);
  border: 1px solid var(--neutral-light);
}

.benefit-card-small:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-accent);
}

.small-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.small-content h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.small-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Bottom CTA */
.why-bottom-cta {
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, var(--primary-dark), var(--neutral-dark));
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.why-bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-text-block h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 10px;
}

.cta-text-block p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.cta-buttons-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-primary-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--secondary-accent), #16a085);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition-base);
  box-shadow: 0 5px 25px rgba(26, 188, 156, 0.4);
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(26, 188, 156, 0.5);
}

.cta-primary-btn img {
  filter: brightness(0) invert(1);
}

.phone-number {
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-secondary-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition-base);
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateX(5px);
}

.cta-secondary-btn img {
  filter: brightness(0) invert(1);
}

.trust-strip {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  gap: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Responsive Design for Why Choose Modern */
@media (max-width: 1200px) {
  .why-split-content {
    grid-template-columns: 400px 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .why-split-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .experience-showcase {
    max-width: 600px;
    margin: 0 auto;
  }

  .benefits-grid-modern {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .why-choose-modern {
    padding: 60px 15px;
  }

  .why-main-title {
    font-size: 2rem;
  }

  .benefits-grid-modern {
    grid-template-columns: 1fr;
  }

  .benefit-card-large {
    padding: 25px;
  }

  .card-stats-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .certified-badges {
    flex-direction: column;
  }

  .quick-facts-ribbon {
    flex-direction: column;
    gap: 10px;
  }

  .cta-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 20px;
  }

  .why-bottom-cta {
    padding: 30px 20px;
  }

  .experience-years {
    width: 80px;
    height: 80px;
  }

  .years-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .card-top-section {
    flex-direction: column;
    text-align: center;
  }

  .showcase-card-main {
    padding: 25px;
  }

  .benefit-card-small {
    flex-direction: column;
    text-align: center;
  }

  .trust-strip {
    flex-direction: column;
    align-items: center;
  }
}

/* Complete Bath Renovation Modern Section */
.complete-renovation-modern {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.renovation-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Background Decoration */
.renovation-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.wave-pattern {
  position: absolute;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.05), transparent);
  transform: skewY(-3deg);
}

.wave-pattern.wave-1 {
  top: 10%;
  animation: wave 20s linear infinite;
}

.wave-pattern.wave-2 {
  bottom: 10%;
  animation: wave 25s linear infinite reverse;
}

@keyframes wave {
  0% {
    transform: translateX(0) skewY(-3deg);
  }

  100% {
    transform: translateX(-50%) skewY(-3deg);
  }
}

.geometric-shape {
  position: absolute;
  border: 2px solid rgba(26, 188, 156, 0.1);
  border-radius: 20px;
  transform: rotate(45deg);
}

.geometric-shape.shape-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: -75px;
}

.geometric-shape.shape-2 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: -50px;
}

/* Hero Header */
.renovation-hero {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(52, 152, 219, 0.2);
  margin-bottom: 25px;
}

.hero-label img {
  filter: hue-rotate(200deg);
}

.hero-label span {
  color: var(--primary-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-accent), transparent);
}

.renovation-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.title-regular {
  font-weight: 400;
  color: var(--text-secondary);
}

.title-bold {
  display: block;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 10px 0;
}

.title-accent {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.renovation-lead {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Quick Stats Bar */
.quick-stats-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-light);
  transition: var(--transition-base);
}

.stat-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-accent);
}

.stat-pill img {
  opacity: 0.8;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Content Wrapper */
.renovation-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Main Column */
.renovation-main-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Process Section */
.process-section {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.section-title-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

.title-icon {
  font-size: 1.5rem;
}

/* Process Cards Interactive */
.process-cards-interactive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.process-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.process-card:hover,
.process-card.active {
  background: white;
  border-color: var(--primary-accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.step-indicator {
  position: relative;
  width: 60px;
  height: 60px;
}

.step-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-accent);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
}

.progress-ring svg {
  /* transform removed - rotation is handled in SVG */
}

.card-title-block h4 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.time-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-accent);
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--primary-accent);
  font-weight: 600;
}

.card-body p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-list img {
  filter: hue-rotate(120deg);
}

/* Services Hexagon Grid */
.services-included {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.services-hexagon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.hex-item {
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition-base);
  border: 1px solid var(--neutral-light);
}

.hex-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
  background: white;
  border-color: var(--primary-accent);
}

.hex-inner img {
  margin-bottom: 15px;
  opacity: 0.8;
}

.hex-inner h5 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.hex-inner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Side Column */
.renovation-side-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* Before/After Showcase */
.before-after-showcase {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--neutral-light);
}

.showcase-header h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.toggle-switch {
  display: flex;
  gap: 5px;
  background: var(--bg-secondary);
  padding: 4px;
  border-radius: 20px;
}

.toggle-btn {
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.toggle-btn.active {
  background: white;
  color: var(--primary-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.showcase-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-img.active {
  opacity: 1;
}

.image-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 10px;
}

.overlay-badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.showcase-details {
  padding: 20px 25px;
  display: flex;
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Price Calculator Card */
.price-calculator-card {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.calc-header h4 {
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.size-selector {
  margin-bottom: 25px;
}

.size-selector label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.size-btn {
  padding: 12px 10px;
  background: white;
  border: 2px solid var(--neutral-light);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.size-btn:hover {
  border-color: var(--primary-accent);
}

.size-btn.active {
  background: var(--primary-accent);
  color: white;
  border-color: var(--primary-accent);
}

.price-display {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  margin-bottom: 15px;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  color: var(--primary-dark) !important;
}

.price-range {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.price-from {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-accent);
  transition: opacity 0.3s ease;
}

.calc-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

/* Price Calculator Mobile Styles */
@media (max-width: 768px) {
  .price-calculator-card {
    padding: 25px 20px;
  }
  
  .calc-header h4 {
    font-size: 1.1rem;
  }
  
  .size-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .size-btn {
    padding: 14px 12px;
    font-size: 0.9rem;
  }
  
  .price-value {
    font-size: 1.8rem;
  }
  
  .price-display {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .price-calculator-card {
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .calc-header {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .calc-header img {
    width: 28px;
    height: 28px;
  }
  
  .calc-header h4 {
    font-size: 1rem;
  }
  
  .size-selector label {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .size-btn {
    padding: 12px 10px;
    font-size: 0.85rem;
    border-radius: 10px;
  }
  
  .price-display {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  
  .price-label {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .price-from {
    font-size: 0.85rem;
  }
  
  .price-value {
    font-size: 1.6rem;
  }
  
  .calc-note {
    font-size: 0.75rem;
  }
}

@media (max-width: 375px) {
  .price-calculator-card {
    padding: 18px 12px;
  }
  
  .calc-header img {
    width: 24px;
    height: 24px;
  }
  
  .calc-header h4 {
    font-size: 0.95rem;
  }
  
  .size-btn {
    padding: 11px 8px;
    font-size: 0.8rem;
  }
  
  .price-value {
    font-size: 1.4rem;
  }
  
  .calc-note {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

/* Examples Tabs Mobile Styles */
@media (max-width: 768px) {
  .examples-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .example-tab {
    padding: 12px 20px;
  }
  
  .example-tab .tab-size {
    font-size: 15px;
  }
  
  .example-tab .tab-label {
    font-size: 13px;
  }
  
  .example-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }
  
  .layout-image img {
    width: 100%;
    height: auto;
  }
  
  .layout-details h4 {
    font-size: 1.3rem;
  }
  
  .layout-details ul {
    font-size: 0.9rem;
  }
  
  .layout-price .price {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .size-examples h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .examples-tabs {
    gap: 8px;
  }
  
  .example-tab {
    padding: 10px 15px;
    border-radius: 10px;
  }
  
  .example-tab .tab-size {
    font-size: 14px;
  }
  
  .example-tab .tab-label {
    font-size: 12px;
  }
  
  .example-layout {
    padding: 20px;
    border-radius: 12px;
  }
  
  .layout-details h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .layout-details ul {
    font-size: 0.85rem;
    padding-left: 15px;
  }
  
  .layout-price {
    margin-top: 20px;
  }
  
  .layout-price .price {
    font-size: 1.4rem;
  }
  
  .layout-price .note {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .example-tab {
    padding: 9px 12px;
  }
  
  .example-tab .tab-size {
    font-size: 13px;
  }
  
  .example-tab .tab-label {
    font-size: 11px;
  }
  
  .example-layout {
    padding: 18px 15px;
  }
  
  .layout-details h4 {
    font-size: 1.1rem;
  }
  
  .layout-details ul {
    font-size: 0.8rem;
  }
  
  .layout-details li {
    margin-bottom: 5px;
  }
  
  .layout-price .price {
    font-size: 1.3rem;
  }
}

/* Sticky CTA Box */
.sticky-cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--neutral-dark));
  border-radius: 20px;
  padding: 35px;
  color: white;
  position: relative;
  overflow: hidden;
}

.sticky-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cta-header {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.85rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #2980b9;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.sticky-cta-box h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.sticky-cta-box>p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.cta-btn-primary {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  background: linear-gradient(135deg, var(--secondary-accent), #16a085);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  transition: var(--transition-base);
  box-shadow: 0 5px 20px rgba(26, 188, 156, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 188, 156, 0.5);
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.btn-phone {
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  transition: var(--transition-base);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-point img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Bottom Features Bar */
.renovation-features-bar {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 15px;
  transition: var(--transition-base);
}

.feature-badge:hover {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  transform: translateY(-3px);
}

.badge-content h5 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.badge-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .renovation-content-wrapper {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }

  .services-hexagon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .renovation-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .renovation-side-column {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sticky-cta-box {
    grid-column: span 1;
  }

  .process-cards-interactive {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .complete-renovation-modern {
    padding: 60px 15px;
  }

  .renovation-title {
    font-size: 2.5rem;
  }

  .renovation-lead {
    font-size: 1.1rem;
  }

  .quick-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-pill {
    padding: 12px 20px;
  }

  .process-section,
  .services-included {
    padding: 30px 20px;
  }

  .services-hexagon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .renovation-features-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 25px 20px;
  }

  .renovation-side-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .renovation-title {
    font-size: 2rem;
  }

  .title-bold {
    font-size: 1.8rem;
  }

  .quick-stats-bar {
    flex-direction: column;
  }

  .stat-pill {
    width: 100%;
    justify-content: center;
  }

  .services-hexagon-grid {
    grid-template-columns: 1fr;
  }

  .renovation-features-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .size-options {
    grid-template-columns: 1fr;
  }
}

/* Contact Modern Section Styles */
.contact-modern {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-modern-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.contact-modern-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-modern-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.contact-modern-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-modern-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form Card Styles */
.form-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
}

.form-header {
  margin-bottom: 30px;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-align: center;
}

.form-subtitle {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

/* Steps Indicator */
.steps-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--neutral-light);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: #3498db;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 3px 15px rgba(52, 152, 219, 0.3);
}

.step-item.active {
  color: #3498db;
  font-weight: 600;
}

/* Form Groups */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.form-label-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--neutral-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 45px;
}

/* Budget Slider */
.budget-group {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--neutral-light);
  margin-bottom: 30px;
}

.budget-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.budget-display {
  text-align: center;
  margin-bottom: 20px;
}

.budget-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
}

.budget-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--neutral-light) 0%, var(--primary-light) 100%);
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  cursor: pointer;
  border: 3px solid var(--neutral-white);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.budget-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  cursor: pointer;
  border: 3px solid var(--neutral-white);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.budget-range {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Submit Button */
.form-submit {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: var(--text-white);
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.4);
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:active {
  transform: translateY(0);
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-accent), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  flex-shrink: 0;
}

.info-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.info-card-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

a.info-highlight,
.info-highlight {
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  display: block;
  margin: 10px 0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

a.info-highlight:hover {
  color: #ffd700;
  transform: scale(1.05);
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--secondary-accent);
}

.trust-badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary-accent);
  flex-shrink: 0;
}

.contact-info-text {
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-modern-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-modern {
    padding: 60px 0;
  }

  .contact-modern-title {
    font-size: 2.2rem;
  }

  .contact-modern-subtitle {
    font-size: 1rem;
  }

  .form-card {
    padding: 25px;
    border-radius: 15px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-indicator {
    flex-wrap: wrap;
    gap: 15px;
  }

  .step-item {
    font-size: 0.8rem;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.75rem;
  }

  .budget-value {
    font-size: 1.6rem;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .info-cards {
    gap: 20px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-modern {
    padding: 40px 0;
  }

  .contact-modern-container {
    padding: 0 15px;
  }

  .contact-modern-title {
    font-size: 1.8rem;
  }

  .form-card {
    padding: 20px;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .budget-group {
    padding: 20px;
  }

  .budget-value {
    font-size: 1.4rem;
  }

  .form-submit {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .info-card-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .info-card-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 375px) {
  .contact-modern-title {
    font-size: 1.6rem;
  }

  .form-card {
    padding: 15px;
  }

  .steps-indicator {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .form-grid {
    gap: 15px;
  }

  .budget-slider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }

  .budget-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
  }

  .info-card {
    padding: 15px;
  }

  .contact-info-item {
    gap: 10px;
  }
}

/* SERVICE DETAIL BLOCKS - COMPREHENSIVE STYLES */

/* Base Service Detail Styles */
.service-detail {
  background: var(--bg-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Service Detail Hero Section */
.service-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.service-badge.smart {
  background: linear-gradient(135deg, var(--warning-color), #e67e22);
}

.service-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.service-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.service-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-accent);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-accent);
  font-weight: 600;
  color: var(--text-primary);
}

.hero-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-visual:hover img {
  transform: scale(1.05);
}

.visual-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.8), rgba(26, 188, 156, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-detail-split:hover .visual-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

/* Service Features Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.feature-block {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e0e6ed;
  transition: all 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-accent);
}

.feature-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  border-bottom: 2px solid var(--primary-accent);
  padding-bottom: 12px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Benefit Cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--bg-primary);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e0e6ed;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-accent);
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Service CTA Section */
.service-cta-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  background: linear-gradient(135deg, var(--bg-accent), #f0f7ff);
  padding: 40px;
  border-radius: 12px;
  align-items: center;
}

.cta-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.cta-content h3 {
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cta-primary {
  background: var(--primary-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cta-secondary {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 2px solid var(--primary-accent);
}

.cta-secondary:hover {
  background: var(--primary-accent);
  color: white;
  transform: translateY(-2px);
}

.cta-price {
  text-align: center;
  background: var(--bg-primary);
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid var(--primary-accent);
}

.price-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.price-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 8px;
}

.price-note {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

/* Service Detail Split Layout */
.service-detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.split-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-button-primary,
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cta-button-primary {
  background: var(--primary-accent);
  color: white;
}

.cta-button-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.cta-button-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--neutral-medium);
}

.cta-button-secondary:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

/* Service Options Grid */
.service-options {
  margin: 32px 0;
}

.service-options h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.option-item {
  display: flex;
  gap: 16px;
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e0e6ed;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.option-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-accent);
}

.option-content {
  flex: 1;
}

.option-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.option-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.option-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-accent);
}

/* Benefits Compact */
.benefits-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0;
}

.benefit-point {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Detail Header Full */
.detail-header-full {
  text-align: center;
  margin-bottom: 60px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* Specific Service Detail Styles */

/* Komplettsanierung Detail */
.komplettsanierung-detail {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4f8 100%);
}

.komplettsanierung-detail .service-badge {
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

/* Teilsanierung Detail */
.teilsanierung-detail {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.teilsanierung-detail .service-badge.smart {
  background: linear-gradient(135deg, var(--primary-accent), #2980b9);
}

.teilsanierung-detail .option-item {
  background: white;
  border-color: #d1e7ff;
}

.teilsanierung-detail .option-item:hover {
  border-color: var(--primary-accent);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.teilsanierung-detail .option-price {
  color: var(--primary-accent);
}

.teilsanierung-detail h4 {
  color: var(--primary-dark);
}

.teilsanierung-detail .service-cta-section {
  background: linear-gradient(135deg, var(--primary-accent), #2980b9);
}

/* Barrier Free Detail */
.barrier-free-detail {
  background: linear-gradient(135deg, #f5f9ff 0%, #e8f2ff 100%);
}

.barrier-free-detail .service-badge {
  background: linear-gradient(135deg, var(--primary-accent), #2c7fb8);
}

.barrier-free-detail .header-badge {
  background: linear-gradient(135deg, var(--primary-accent), #2980b9);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.barrier-free-detail .service-title {
  color: var(--primary-dark);
}

.barrier-free-detail .feature-list li {
  color: #495057;
}

.barrier-free-detail .benefit-card {
  background: white;
  border: 1px solid #d1e7ff;
  transition: all 0.3s ease;
}

.barrier-free-detail .benefit-card:hover {
  border-color: var(--primary-accent);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
  transform: translateY(-5px);
}

.barrier-free-detail .benefit-card h4 {
  color: var(--primary-dark);
}

.barrier-free-detail .step-number {
  background: var(--primary-accent);
  color: white;
}

.barrier-free-detail .service-cta-section {
  background: linear-gradient(135deg, var(--primary-accent), #2980b9);
}

.barrier-free-detail .service-cta-section .cta-content p {
  color: white;
  opacity: 0.95;
}

/* Kleines Bad Detail */
.small-bath-detail {
  background: linear-gradient(135deg, #fdf8ff 0%, #f5f0ff 100%);
}

.small-bath-detail .service-badge {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* Wanne zu Dusche Modern - Kompletter Neugestaltung */
.wanne-dusche-modern {
  background: linear-gradient(135deg, #f5f9ff 0%, #e8f2ff 100%);
  padding: 80px 0;
}

.wanne-dusche-modern .service-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.wanne-hero-section {
  text-align: center;
  margin-bottom: 80px;
}

.hero-badge-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.express-badge,
.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.express-badge {
  background: linear-gradient(135deg, var(--primary-accent), #2980b9);
  color: white;
}

.quality-badge {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
}

.wanne-main-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.wanne-intro {
  font-size: 20px;
  color: #6c757d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Benefits Grid */
.benefits-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-item-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.benefit-icon {
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 5px;
}

.benefit-content p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

/* Verwandlung Section - Komplett neu gestaltet */
.verwandlung-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.verwandlung-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 15px;
}

.verwandlung-subtitle {
  font-size: 18px;
  color: #6c757d;
  text-align: center;
  margin-bottom: 60px;
}

.verwandlung-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto 60px;
}

/* Verwandlung Cards */
.verwandlung-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.verwandlung-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 25px;
  position: relative;
}

.vorher-header {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.nachher-header {
  background: linear-gradient(135deg, #2980b9, #229954);
}

.status-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.card-header h4 {
  color: white;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-problems,
.overlay-benefits {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.problem-tag {
  background: rgba(231, 76, 60, 0.9);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.benefit-tag {
  background: rgba(39, 174, 96, 0.9);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.card-details {
  padding: 25px;
}

.card-details h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.problem-grid,
.benefit-grid {
  display: grid;
  gap: 15px;
}

.problem-item,
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.problem-item {
  color: #e74c3c;
}

.benefit-item {
  color: #2980b9;
}

/* Prozess Block */
.verwandlung-prozess {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px;
  position: relative;
}

.prozess-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.prozess-zeit {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-accent);
}

.prozess-steps {
  position: relative;
  width: 100%;
}

.prozess-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-accent), #2980b9);
}

.prozess-step {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.step-dot {
  width: 30px;
  height: 30px;
  background: var(--primary-accent);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
  z-index: 1;
  position: relative;
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.step-zeit {
  font-size: 12px;
  color: var(--primary-accent);
  font-weight: 600;
}

.step-text {
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 500;
}

.prozess-garantie {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-accent), #2980b9);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  margin-top: 30px;
  font-weight: 600;
  font-size: 14px;
}

/* Statistik Section */
.verwandlung-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.stat-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

/* Responsive Design für Verwandlung Section */
@media (max-width: 1200px) {
  .verwandlung-grid {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .verwandlung-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .verwandlung-prozess {
    order: 3;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .prozess-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .prozess-steps::before {
    display: none;
  }

  .verwandlung-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .verwandlung-title {
    font-size: 32px;
  }

  .verwandlung-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }

  .verwandlung-card {
    margin: 0;
  }

  .card-image {
    height: 200px;
  }

  .prozess-steps {
    grid-template-columns: 1fr;
  }

  .verwandlung-stats {
    padding: 0 20px;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-value {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .verwandlung-title {
    font-size: 26px;
    padding: 0 20px;
  }

  .verwandlung-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-tag,
  .benefit-tag {
    font-size: 11px;
    padding: 4px 8px;
  }

  .card-header h4 {
    font-size: 18px;
  }

  .prozess-zeit {
    font-size: 24px;
  }
}

.section-title-modern {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title-modern::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-accent), #2980b9);
  border-radius: 2px;
}

.before-after-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.before-section,
.after-section {
  text-align: center;
}

.ba-label {
  background: var(--primary-dark);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.after-section .ba-label {
  background: var(--primary-accent);
}

.before-section img,
.after-section img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.problems-list,
.benefits-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.problems-list li,
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.problems-list li {
  color: #e74c3c;
}

.benefits-list li {
  color: #2980b9;
}

.transformation-arrow-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.transform-time {
  background: var(--primary-accent);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
}

/* Timeline Modern */
.process-section-modern {
  margin-top: 0px;
  margin-bottom: 60px;
  padding-top: 60px;
}

.timeline-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.timeline-day {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.day-header {
  background: linear-gradient(135deg, var(--primary-accent), #2980b9);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.day-number {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
}

.day-title {
  font-size: 18px;
  font-weight: 600;
}

.timeline-items {
  padding: 30px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline-item .time {
  flex-shrink: 0;
  width: 60px;
  color: var(--primary-accent);
  font-weight: 700;
  font-size: 14px;
}

.item-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex: 1;
}

.item-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.item-content p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

/* Options Section */
.options-section-modern {
  margin-bottom: 60px;
}

.options-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.option-card-modern {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.option-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
}

.option-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
}

.option-list {
  list-style: none;
  padding: 0;
}

.option-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f8f9fa;
  color: #495057;
  font-size: 15px;
}

.option-list li:last-child {
  border-bottom: none;
}

/* CTA Section */
.wanne-cta-section {
  background: linear-gradient(135deg, var(--primary-accent), #2874a6);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
}

.cta-content-modern {
  max-width: 800px;
  margin: 0 auto;
}

.cta-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.cta-header h3 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-price-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.price-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.price-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}

.price-value {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: white;
}

.price-includes {
  list-style: none;
  padding: 0;
  text-align: left;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  margin-bottom: 10px;
  font-size: 16px;
}

.cta-buttons-modern {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary-modern,
.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-modern {
  background: white;
  color: var(--primary-accent);
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: var(--primary-accent);
  color: white;
}

.btn-primary-modern img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(92%) saturate(591%) hue-rotate(179deg) brightness(95%) contrast(91%);
}

.btn-primary-modern:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.btn-secondary-modern {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.btn-secondary-modern:hover {
  background: white;
  color: var(--primary-accent);
}

/* Responsive Design for Wanne zu Dusche Modern */
@media (max-width: 1024px) {
  .benefits-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .before-after-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .transformation-arrow-modern {
    transform: rotate(90deg);
    margin: 20px auto;
  }

  .timeline-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .options-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .wanne-dusche-modern {
    padding: 60px 0;
  }

  .wanne-main-title {
    font-size: 32px;
  }

  .wanne-intro {
    font-size: 16px;
  }

  .hero-badge-row {
    flex-direction: column;
    align-items: center;
  }

  .benefits-grid-modern {
    grid-template-columns: 1fr;
  }

  .benefit-item-modern {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .transformation-showcase {
    padding: 40px 20px;
  }

  .section-title-modern {
    font-size: 28px;
  }

  .problems-list,
  .benefits-list {
    max-width: 300px;
    margin: 0 auto;
  }

  .timeline-items {
    padding: 20px;
  }

  .options-cards {
    grid-template-columns: 1fr;
  }

  .cta-price-info {
    flex-direction: column;
    gap: 30px;
  }

  .cta-buttons-modern {
    flex-direction: column;
  }

  .btn-primary-modern,
  .btn-secondary-modern {
    width: 100%;
    justify-content: center;
  }

  .wanne-cta-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .wanne-main-title {
    font-size: 26px;
  }

  .section-title-modern {
    font-size: 24px;
  }

  .transformation-arrow-modern img {
    width: 30px;
    height: 30px;
  }

  .price-value {
    font-size: 32px;
  }
}

.tub-to-shower-detail .service-tag.express {
  background: linear-gradient(135deg, var(--primary-accent), #2874a6);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 20px;
}

.tub-to-shower-detail .hero-title {
  color: var(--primary-dark);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tub-to-shower-detail .hero-description {
  color: #6c757d;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.tub-to-shower-detail .stat-box {
  background: white;
  border: 2px solid #d1e7ff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.tub-to-shower-detail .stat-box:hover {
  border-color: var(--primary-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.tub-to-shower-detail .stat-number {
  color: var(--primary-accent);
  font-size: 32px;
  font-weight: 700;
  display: block;
}

.tub-to-shower-detail .transform-arrow {
  background: linear-gradient(135deg, var(--primary-accent), #2874a6);
  color: white;
  padding: 15px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.tub-to-shower-detail .timeline-title {
  color: var(--primary-dark);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.tub-to-shower-detail .timeline-step {
  background: white;
  border-left: 4px solid var(--primary-accent);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tub-to-shower-detail .timeline-step:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.15);
}

.tub-to-shower-detail .step-time {
  color: var(--primary-accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.tub-to-shower-detail .config-option {
  border: 2px solid #d1e7ff;
  background: white;
  transition: all 0.3s ease;
}

.tub-to-shower-detail .config-option:hover {
  border-color: var(--primary-accent);
}

.tub-to-shower-detail input[type="radio"]:checked+.option-label {
  color: var(--primary-accent);
  font-weight: 600;
}

.tub-to-shower-detail .calc-price {
  color: var(--primary-accent);
  font-size: 36px;
  font-weight: 700;
}

.tub-to-shower-detail .advantage-card {
  background: white;
  border: 1px solid #d1e7ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.tub-to-shower-detail .advantage-card:hover {
  border-color: var(--primary-accent);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.tub-to-shower-detail .advantage-card h4 {
  color: var(--primary-dark);
  margin: 15px 0 10px;
}

.tub-to-shower-detail .service-cta-section {
  background: linear-gradient(135deg, var(--primary-accent), #2874a6);
  padding: 60px;
  border-radius: 20px;
  margin-top: 60px;
}

.tub-to-shower-detail .cta-content h3 {
  color: white;
}

.tub-to-shower-detail .cta-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Wanne zu Dusche */
@media (max-width: 1024px) {
  .tub-to-shower-detail .hero-title {
    font-size: 36px;
  }

  .tub-to-shower-detail .stat-box {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .tub-to-shower-detail {
    padding: 60px 0;
  }

  .tub-to-shower-detail .hero-title {
    font-size: 28px;
  }

  .tub-to-shower-detail .hero-description {
    font-size: 16px;
  }

  .tub-to-shower-detail .timeline-step {
    padding: 15px;
    transform: none !important;
  }

  .tub-to-shower-detail .advantage-card {
    padding: 20px;
  }

  .tub-to-shower-detail .service-cta-section {
    padding: 40px 20px;
  }
}

/* Express Bad Detail - OLD */
.express-detail {
  background: linear-gradient(135deg, #f0f8ff 0%, #e1f2ff 100%);
  padding: 80px 0;
}

.express-detail .service-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.express-detail .service-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.express-detail .hero-content {
  animation: slideInLeft 0.6s ease;
}

.express-detail .service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

.express-detail .service-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.express-detail .service-lead {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
}

.express-detail .service-highlights {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.express-detail .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.express-detail .highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.express-detail .hero-visual {
  position: relative;
  animation: slideInRight 0.6s ease;
}

.express-detail .hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.express-detail .visual-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.express-detail .service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.express-detail .feature-block {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.express-detail .feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.express-detail .feature-block h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #3498db;
}

.express-detail .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.express-detail .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #495057;
  font-size: 15px;
}

.express-detail .benefit-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.express-detail .benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  transition: all 0.3s;
}

.express-detail .benefit-card:hover {
  background: linear-gradient(135deg, #e1f2ff, #cce7ff);
  transform: translateX(10px);
}

.express-detail .benefit-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.express-detail .benefit-card p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.express-detail .process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.express-detail .step-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-radius: 12px;
  border-left: 4px solid #ff9800;
  transition: all 0.3s;
}

.express-detail .step-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.express-detail .step-number {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  min-width: 60px;
  text-align: center;
}

.express-detail .step-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.express-detail .step-content p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

/* Express Detail Additional Styles */
.express-detail .service-options {
  margin-bottom: 80px;
}

.express-detail .service-options h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.express-detail .service-options h3::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff9800, #f57c00);
  border-radius: 2px;
}

.express-detail .options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.express-detail .option-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.express-detail .option-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #ff9800;
}

.express-detail .option-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.express-detail .option-content p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 12px;
  line-height: 1.5;
}

.express-detail .option-price {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.express-detail .service-cta-section {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  padding: 60px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(255, 152, 0, 0.3);
}

.express-detail .cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.express-detail .cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
}

.express-detail .cta-buttons {
  display: flex;
  gap: 20px;
}

.express-detail .cta-primary,
.express-detail .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.express-detail .cta-primary {
  background: white;
  color: #ff9800;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.express-detail .cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.express-detail .cta-primary img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(88%) saturate(1252%) hue-rotate(4deg) brightness(101%) contrast(104%);
}

.express-detail .cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.express-detail .cta-secondary:hover {
  background: white;
  color: #ff9800;
}

.express-detail .cta-secondary:hover img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(88%) saturate(1252%) hue-rotate(4deg) brightness(101%) contrast(104%);
}

.express-detail .cta-price {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.express-detail .price-label {
  display: block;
  font-size: 16px;
  color: white;
  margin-bottom: 10px;
  font-weight: 500;
}

.express-detail .price-value {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.express-detail .price-note {
  display: block;
  font-size: 13px;
  color: white;
  font-style: italic;
  opacity: 0.95;
}

/* Express Modern Section - NEW DESIGN */
.express-modern-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.express-modern-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {

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

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.express-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.express-hero {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge-wrapper {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

.hero-badge.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.5);
  }
}

.express-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.express-title .highlight-orange {
  color: #ff9800;
  position: relative;
  display: inline-block;
}

.express-title .highlight-orange::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9800, #f57c00);
  border-radius: 2px;
}

.express-subtitle {
  font-size: 20px;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Express Stats */
.express-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.stat-icon img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(88%) saturate(1252%) hue-rotate(4deg) brightness(101%) contrast(104%);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Timeline Section */
.express-timeline {
  margin-bottom: 100px;
}

.express-timeline .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 60px;
  position: relative;
}

.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 20px;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #ff9800, #4caf50);
  z-index: 0;
}

.express-timeline .timeline-item {
  position: relative;
  background: white;
  padding: 20px 15px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.express-timeline .timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.express-timeline .timeline-item.active {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
}

.express-timeline .timeline-time {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ff9800;
  text-transform: uppercase;
  margin-bottom: 15px;
  background: rgba(255, 152, 0, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.express-timeline .timeline-item.active .timeline-time {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.express-timeline .timeline-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
}

.express-timeline .timeline-icon::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: #e9ecef;
}

.express-timeline .timeline-item.active .timeline-icon {
  background: rgba(255, 255, 255, 0.2);
}

.express-timeline .timeline-item.active .timeline-icon::after {
  background: rgba(255, 255, 255, 0.4);
}

.express-timeline .timeline-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.express-timeline .timeline-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
  text-align: center;
}

.express-timeline .timeline-item.active .timeline-content h4 {
  color: white;
}

.express-timeline .timeline-content p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

.express-timeline .timeline-item.active .timeline-content p {
  color: rgba(255, 255, 255, 0.95);
}

/* Express Packages */
.express-packages {
  margin-bottom: 100px;
}

.express-packages .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 60px;
}

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

.package-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.package-card.featured {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  transform: scale(1.05);
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
}

.package-label {
  display: inline-block;
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.package-card.featured .package-label {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.package-header h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
}

.package-card.featured .package-header h4 {
  color: white;
}

.package-price {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.package-card.featured .package-price {
  border-color: rgba(255, 255, 255, 0.2);
}

.package-price .price {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 5px;
}

.package-card.featured .package-price .price {
  color: white;
}

.package-price .duration {
  font-size: 14px;
  color: #6c757d;
}

.package-card.featured .package-price .duration {
  color: rgba(255, 255, 255, 0.9);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #495057;
  font-size: 14px;
}

.package-card.featured .package-features li {
  color: white;
}

.package-features img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(65%) saturate(4492%) hue-rotate(89deg) brightness(103%) contrast(98%);
}

.package-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.package-card.featured .package-btn {
  background: white;
  color: #3498db;
}

.package-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

/* Why Express Section */
.express-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.why-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.why-card img {
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(88%) saturate(1252%) hue-rotate(4deg) brightness(101%) contrast(104%);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.why-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
}

.overlay-badge {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.overlay-content p {
  color: white;
  font-size: 18px;
  margin: 0;
}

/* Express CTA */
.express-cta {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 30px;
  padding: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 152, 0, 0.3);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ff9800" width="1200" height="600"/><path fill="%23f57c00" d="M0 400L50 383.3C100 366.7 200 333.3 300 316.7C400 300 500 300 600 333.3C700 366.7 800 433.3 900 450C1000 466.7 1100 433.3 1150 416.7L1200 400V601H1150C1100 601 1000 601 900 601C800 601 700 601 600 601C500 601 400 601 300 601C200 601 100 601 50 601H0V400Z"/></svg>') no-repeat center;
  background-size: cover;
  opacity: 0.1;
}

.express-cta .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.express-cta h3 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.express-cta p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.btn-emergency {
  background: white;
  color: #ff9800;
  padding: 20px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-emergency:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #ff9800;
  color: white;
}

.btn-emergency:hover img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.btn-emergency img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(88%) saturate(1252%) hue-rotate(4deg) brightness(101%) contrast(104%);
}

.btn-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.btn-phone {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.btn-quote {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 20px 40px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: white;
  color: #ff9800;
}

.btn-quote:hover img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(88%) saturate(1252%) hue-rotate(4deg) brightness(101%) contrast(104%);
}

.cta-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta-badges .badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Mobile Responsiveness for Express Section */
@media (max-width: 1024px) {
  .express-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .timeline-track {
    flex-wrap: wrap;
    gap: 20px;
  }

  .timeline-track::before {
    display: none;
  }

  .timeline-item {
    max-width: 150px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .express-why {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .express-cta {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .express-title {
    font-size: 36px;
  }

  .express-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-item {
    max-width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-badges {
    flex-direction: column;
    align-items: center;
  }

  .express-cta {
    padding: 40px 20px;
  }

  .express-cta h3 {
    font-size: 32px;
  }
}

/* Small Bath Modern Section */
.small-bath-modern {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  padding: 100px 0;
  position: relative;
}

.small-bath-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.small-bath-hero {
  margin-bottom: 80px;
}

.small-bath-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.small-bath-hero .hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.small-bath-hero .hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.small-bath-hero .hero-title .highlight {
  color: #3498db;
  position: relative;
}

.small-bath-hero .hero-subtitle {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 40px;
}

.small-bath-hero .space-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.small-bath-hero .stat {
  text-align: center;
}

.small-bath-hero .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 5px;
}

.small-bath-hero .stat-text {
  font-size: 14px;
  color: #6c757d;
  text-transform: uppercase;
}

.small-bath-hero .hero-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-primary-small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.small-bath-hero .price-tag {
  background: white;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.price-from {
  font-size: 14px;
  color: #6c757d;
  margin-right: 5px;
}

.price-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
}

.small-bath-hero .visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.small-bath-hero .visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

.small-bath-hero .visual-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.small-bath-hero .size-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.size-before,
.size-after {
  font-weight: 600;
}

.size-before {
  color: #e74c3c;
}

.size-arrow {
  font-size: 24px;
  color: #3498db;
}

.size-after {
  color: #27ae60;
}

/* Smart Solutions */
.smart-solutions {
  margin-bottom: 80px;
}

.smart-solutions .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 50px;
}

.smart-solutions .solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.solution-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.2));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.solution-content p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 12px;
  line-height: 1.5;
}

.solution-tag {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* Transformation Showcase */
.transformation-showcase {
  background: white;
  padding: 60px;
  border-radius: 20px;
  margin-bottom: 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.transformation-showcase .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 50px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.showcase-before,
.showcase-after {
  text-align: center;
}

.showcase-label {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.showcase-before .showcase-label {
  background: #ffe4e4;
  color: #e74c3c;
}

.showcase-after .showcase-label {
  background: #e4ffe4;
  color: #27ae60;
}

.showcase-before img,
.showcase-after img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.problems-list,
.solutions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.problems-list li,
.solutions-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
}

.problems-list li {
  color: #e74c3c;
}

.solutions-list li {
  color: #27ae60;
}

.showcase-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.showcase-arrow img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(92%) saturate(591%) hue-rotate(179deg) brightness(95%) contrast(91%);
}

.showcase-arrow span {
  font-size: 14px;
  font-weight: 600;
  color: #3498db;
}

/* Package Options */
.small-bath-packages {
  margin-bottom: 80px;
}

.small-bath-packages .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 50px;
}

.packages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.small-bath-packages .package-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.small-bath-packages .package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.small-bath-packages .package-card.featured {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  transform: scale(1.05);
}

.badge-popular {
  position: absolute;
  top: -15px;
  right: 30px;
  background: #ff9800;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.small-bath-packages .package-header {
  margin-bottom: 25px;
}

.package-size {
  display: block;
  font-size: 14px;
  color: #3498db;
  margin-bottom: 10px;
  font-weight: 600;
}

.small-bath-packages .package-card.featured .package-size {
  color: white;
  opacity: 0.9;
}

.small-bath-packages .package-header h4 {
  font-size: 24px;
  font-weight: 700;
}

.small-bath-packages .package-price {
  margin-bottom: 30px;
}

.small-bath-packages .package-price .price {
  font-size: 36px;
  font-weight: 700;
  color: #3498db;
}

.small-bath-packages .package-card.featured .package-price .price {
  color: white;
}

.small-bath-packages .package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.small-bath-packages .package-features li {
  padding: 8px 0;
  font-size: 14px;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
}

.small-bath-packages .package-card.featured .package-features li {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.small-bath-packages .package-btn {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.small-bath-packages .package-card.featured .package-btn {
  background: white;
  color: #3498db;
}

.small-bath-packages .package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Mobile Responsiveness for Small Bath */
@media (max-width: 1024px) {
  .small-bath-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .smart-solutions .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .showcase-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .packages-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .small-bath-packages .package-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .small-bath-modern {
    padding: 60px 0;
  }

  .small-bath-hero .hero-title {
    font-size: 32px;
  }

  .small-bath-hero .space-stats {
    justify-content: space-between;
    gap: 10px;
  }

  .small-bath-hero .stat {
    flex: 1;
  }

  .small-bath-hero .stat-number {
    font-size: 24px;
  }

  .small-bath-hero .stat-text {
    font-size: 11px;
    line-height: 1.2;
  }

  .small-bath-hero .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .smart-solutions .solutions-grid {
    grid-template-columns: 1fr;
  }

  .transformation-showcase {
    padding: 40px 20px;
  }
}

/* Unsere Raumwunder-Lösungen Styles */
.smart-solutions .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.smart-solutions .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
  margin: 20px auto 0;
  border-radius: 2px;
}

.smart-solutions .solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.smart-solutions .solution-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.smart-solutions .solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(52, 152, 219, 0.15);
  border-color: #3498db;
}

.smart-solutions .solution-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.smart-solutions .solution-icon img {
  filter: brightness(0) invert(1);
}

.smart-solutions .solution-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.smart-solutions .solution-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.smart-solutions .solution-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.smart-solutions .solution-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.smart-solutions .solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.smart-solutions .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db, #5dade2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.smart-solutions .card-icon img {
  filter: brightness(0) invert(1);
}

.smart-solutions .solution-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.smart-solutions .solution-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.smart-solutions .solution-benefit {
  background: #f0f8ff;
  border-radius: 10px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.smart-solutions .benefit-icon {
  font-size: 20px;
}

.smart-solutions .solution-benefit span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: #3498db;
}

/* Size Examples Section */
.size-examples {
  padding: 60px 0;
  background: #f8f9fa;
  border-radius: 20px;
  margin: 40px 0;
}

.size-examples h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 40px;
}

.examples-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.example-tab {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.example-tab.active,
.example-tab:hover {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border-color: transparent;
  color: white;
}

.example-tab .tab-size {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.example-tab .tab-label {
  font-size: 14px;
  opacity: 0.9;
}

.example-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.example-content.active {
  display: block;
  opacity: 1;
}

.example-layout {
  background: white;
  border-radius: 15px;
  padding: 30px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.layout-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.layout-details h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.layout-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.layout-details ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #666;
}

.layout-details ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

.layout-price {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.layout-price .price {
  font-size: 28px;
  font-weight: 700;
  color: #3498db;
}

.layout-price .note {
  font-size: 14px;
  color: #999;
}

/* Small Bath CTA */
.small-bath-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

.cta-content-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.cta-content-box p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.cta-feature img {
  filter: brightness(0) invert(1);
}

.cta-feature span {
  font-size: 15px;
  font-weight: 500;
}

.cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary-button,
.cta-secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary-button {
  background: white;
  color: #3498db;
}

.cta-primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #f0f8ff;
  color: #2c3e50;
}

.cta-primary-button img {
  filter: invert(39%) sepia(84%) saturate(1574%) hue-rotate(185deg) brightness(96%) contrast(92%);
}

.cta-primary-button:hover img {
  filter: invert(24%) sepia(95%) saturate(1504%) hue-rotate(185deg) brightness(91%) contrast(91%);
}

.cta-secondary-button {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-secondary-button:hover {
  background: white;
  color: #3498db;
}

/* Responsive für Raumwunder-Lösungen */
@media (max-width: 768px) {
  .smart-solutions .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .smart-solutions .solution-item {
    flex-direction: column;
    text-align: center;
  }

  .examples-tabs {
    flex-direction: column;
    align-items: center;
  }

  .example-layout {
    grid-template-columns: 1fr;
  }

  .small-bath-cta {
    padding: 30px 20px;
  }

  .cta-features {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .service-detail {
    padding: 60px 0;
  }

  .service-detail-container {
    padding: 0 16px;
  }

  .service-detail-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .service-title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .service-highlights {
    flex-direction: column;
    gap: 16px;
  }

  .highlight-item {
    justify-content: flex-start;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .feature-block {
    padding: 24px;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-cta-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    justify-content: center;
    text-align: center;
  }

  .service-detail-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-visual img {
    height: 300px;
  }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .option-item {
    padding: 16px;
  }

  .benefits-compact {
    flex-direction: column;
    gap: 12px;
  }

  .benefit-point {
    justify-content: flex-start;
  }

  .process-steps {
    gap: 16px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .split-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .cta-button-primary,
  .cta-button-secondary {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-detail {
    padding: 40px 0;
  }

  .service-detail-container {
    padding: 0 12px;
  }

  .service-title {
    font-size: 24px;
  }

  .service-lead,
  .service-description {
    font-size: 16px;
  }

  .feature-block {
    padding: 20px;
  }

  .feature-block h3 {
    font-size: 18px;
  }

  .service-cta-section {
    padding: 24px;
  }

  .cta-content h3 {
    font-size: 20px;
  }

  .price-value {
    font-size: 28px;
  }
}

/* Animation and Transitions */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-detail .feature-block {
  animation: slideInUp 0.6s ease-out;
}

.service-detail .benefit-card {
  animation: slideInUp 0.6s ease-out;
}

.service-detail .option-item {
  animation: slideInUp 0.6s ease-out;
}

/* Hover Effects */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(26, 188, 156, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hero-visual:hover::before {
  opacity: 1;
}

/* Accessibility Improvements */
.service-detail [role="button"]:focus,
.service-detail .cta-primary:focus,
.service-detail .cta-secondary:focus,
.service-detail .cta-button-primary:focus,
.service-detail .cta-button-secondary:focus {
  outline: 2px solid var(--primary-accent);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .service-detail {
    background: white !important;
    box-shadow: none !important;
  }

  .service-cta-section {
    background: white !important;
    border: 1px solid #ccc;
  }
}

/* Grout Renovation Detail Styles */
.grout-renovation-detail {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.grout-renovation-detail .detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.grout-renovation-detail .hero-content-left {
  animation: slideInLeft 0.6s ease-out;
}

.grout-renovation-detail .service-tag.refresh {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.grout-renovation-detail .hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.grout-renovation-detail .hero-subtitle {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
}

.grout-renovation-detail .renovation-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.grout-renovation-detail .highlight-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.grout-renovation-detail .highlight-card:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.grout-renovation-detail .highlight-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.grout-renovation-detail .highlight-card p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.grout-renovation-detail .hero-image-right {
  position: relative;
  animation: slideInRight 0.6s ease-out;
}

.grout-renovation-detail .hero-image-right img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.grout-renovation-detail .image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 20px;
}

.grout-renovation-detail .badge-price {
  font-size: 20px;
  font-weight: 700;
  color: #3498db;
}

.grout-renovation-detail .badge-time {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-accent);
}

.grout-renovation-detail .service-process-grid {
  margin-bottom: 80px;
}

.grout-renovation-detail .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 50px;
  position: relative;
}

.grout-renovation-detail .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.grout-renovation-detail .process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.grout-renovation-detail .process-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.grout-renovation-detail .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.grout-renovation-detail .card-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.grout-renovation-detail .card-icon {
  margin-bottom: 20px;
}

.grout-renovation-detail .process-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.grout-renovation-detail .process-card p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.grout-renovation-detail .material-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  padding: 60px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.grout-renovation-detail .showcase-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.grout-renovation-detail .material-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.grout-renovation-detail .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.grout-renovation-detail .feature-item span {
  font-size: 16px;
  color: #495057;
}

.grout-renovation-detail .showcase-visual {
  position: relative;
}

.grout-renovation-detail .before-after-slider {
  position: relative;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 16px;
}

.grout-renovation-detail .slider-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.grout-renovation-detail .slider-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.grout-renovation-detail .slider-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.grout-renovation-detail .grout-cta-section {
  background: linear-gradient(135deg, #3498db, #2980b9);
  padding: 60px;
  border-radius: 20px;
  text-align: center;
}

.grout-renovation-detail .cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.grout-renovation-detail .cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.grout-renovation-detail .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.grout-renovation-detail .btn-primary,
.grout-renovation-detail .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.grout-renovation-detail .btn-primary {
  background: white;
  color: #3498db;
}

.grout-renovation-detail .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.grout-renovation-detail .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.grout-renovation-detail .btn-secondary:hover {
  background: white;
  color: #3498db;
}

.grout-renovation-detail .btn-secondary:hover img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(92%) saturate(591%) hue-rotate(179deg) brightness(95%) contrast(91%);
}

/* Responsive Design for Grout Renovation */
@media (max-width: 1024px) {
  .grout-renovation-detail .detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grout-renovation-detail .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .grout-renovation-detail .material-showcase {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .grout-renovation-detail {
    padding: 60px 0;
  }

  .grout-renovation-detail .hero-title {
    font-size: 32px;
  }

  .grout-renovation-detail .process-cards {
    grid-template-columns: 1fr;
  }

  .grout-renovation-detail .material-showcase {
    padding: 30px 20px;
  }

  .grout-renovation-detail .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .grout-renovation-detail .btn-primary,
  .grout-renovation-detail .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .grout-renovation-detail .slider-images {
    grid-template-columns: 1fr;
  }

  .grout-renovation-detail .grout-cta-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .grout-renovation-detail .hero-title {
    font-size: 28px;
  }

  .grout-renovation-detail .section-title {
    font-size: 28px;
  }

  .grout-renovation-detail .image-badge {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
    gap: 15px;
  }

  .grout-renovation-detail .badge-price {
    font-size: 16px;
  }

  .grout-renovation-detail .badge-time {
    font-size: 14px;
  }
}

.price-label-white {
  color: white !important;
}

.cta-header-white {
  color: white !important;
}

.price-tag-white>span {
  color: white !important;
}

/* New Contact Section Design */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-accent) 0%, #2980b9 100%);
  transform: skewY(-3deg);
  transform-origin: top left;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* Form Side */
.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.contact-section .form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-section .form-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.form-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.contact-section .contact-form {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-section .form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  box-sizing: border-box;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.form-textarea {
  resize: vertical;
  font-family: inherit;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--primary-accent) 0%, #2980b9 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
  margin-top: 30px;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.form-submit-btn svg {
  transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(5px);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  color: #666;
  font-size: 14px;
}

/* Info Side */
.contact-info-wrapper {
  padding: 50px 40px;
}

.info-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.rating-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8e8e8 100%);
  border-radius: 12px;
  padding: 15px 20px;
  display: inline-block;
  margin-bottom: 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.rating-box .stars {
  color: #ffd700;
  font-size: 24px;
  margin-bottom: 5px;
}

.rating-box span {
  color: #666;
  font-size: 14px;
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.info-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-accent) 0%, #2980b9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.feature-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

.contact-direct {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.contact-direct h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.phone-button {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--primary-accent) 0%, #2980b9 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.phone-button img {
  filter: brightness(0) invert(1);
}

.phone-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 2px;
}

.phone-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.hours {
  color: #666;
  line-height: 1.8;
}

.hours p {
  margin: 5px 0;
}

.hours strong {
  color: var(--primary-dark);
}

.emergency {
  background: rgba(255, 0, 0, 0.1);
  color: #d32f2f;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-item {
  text-align: center;
  padding: 20px 10px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-item img {
  margin-bottom: 10px;
}

.trust-item span {
  display: block;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 968px) {
  .contact-section {
    padding: 60px 15px !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  .contact-section * {
    box-sizing: border-box !important;
  }
  
  .contact-section::before {
    transform: skewY(-1.5deg);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
    width: 100% !important;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .form-badge {
    font-size: 10px;
    padding: 6px 15px;
    margin-bottom: 15px;
  }

  .contact-section .form-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .form-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-section .form-group {
    margin-bottom: 15px;
  }
  
  .form-label {
    font-size: 13px;
  }
  
  .form-input,
  .form-textarea {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .form-textarea {
    min-height: 100px;
  }
  
  .form-submit {
    padding: 14px 25px;
    font-size: 15px;
  }

  .info-header h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .info-header p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .trust-item {
    padding: 15px;
  }
  
  .trust-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .trust-value {
    font-size: 20px;
  }
  
  .trust-label {
    font-size: 12px;
  }
  
  .contact-methods {
    gap: 15px;
    margin-top: 25px;
  }
  
  .method-item {
    padding: 15px;
  }
  
  .method-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .method-content span {
    font-size: 11px;
  }
  
  .method-content strong {
    font-size: 14px;
  }

  .contact-info-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .guarantee-badge {
    padding: 20px;
  }
  
  .guarantee-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .guarantee-title {
    font-size: 16px;
  }
  
  .guarantee-text {
    font-size: 12px;
  }
}

/* Contact Form Section - Mobile 480px */
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 10px !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  .contact-section * {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .container {
    padding: 0 10px !important;
    max-width: 100% !important;
  }
  
  .contact-wrapper {
    gap: 20px;
    padding: 0 5px;
    width: 100% !important;
    margin: 0 !important;
  }
  
  .contact-form-wrapper {
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100% !important;
    margin: 0 !important;
  }
  
  .form-badge {
    font-size: 9px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  
  .contact-section .form-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .form-description {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .form-input,
  .form-textarea {
    padding: 10px 12px;
    font-size: 13px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .form-textarea {
    min-height: 80px;
  }
  
  .form-submit {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
  }
  
  .info-header h3 {
    font-size: 20px;
  }
  
  .trust-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .trust-value {
    font-size: 18px;
  }
  
  .trust-label {
    font-size: 11px;
  }
  
  .method-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }
  
  .method-icon {
    margin-bottom: 8px;
  }
  
  .contact-info-wrapper {
    padding: 25px 15px;
  }
  
  .guarantee-badge {
    padding: 15px;
  }
  
  .guarantee-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .guarantee-title {
    font-size: 15px;
  }
  
  .guarantee-text {
    font-size: 11px;
  }
}

/* Contact Form Section - Mobile 375px (iPhone SE) */
@media (max-width: 375px) {
  .contact-section {
    padding: 35px 8px !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  .contact-section * {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .container {
    padding: 0 8px !important;
    max-width: 100% !important;
  }
  
  .contact-wrapper {
    gap: 15px;
    padding: 0;
    width: 100% !important;
    margin: 0 !important;
  }
  
  .contact-form-wrapper {
    padding: 20px 12px;
    border-radius: 10px;
    width: 100% !important;
    margin: 0 !important;
  }
  
  .form-badge {
    font-size: 8px;
    padding: 4px 10px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  
  .contact-section .form-title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  
  .form-description {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .form-row {
    gap: 12px;
  }
  
  .contact-section .form-group {
    margin-bottom: 12px;
  }
  
  .form-label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  
  .form-input,
  .form-textarea {
    padding: 9px 10px;
    font-size: 12px;
    border-radius: 6px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .form-textarea {
    min-height: 70px;
  }
  
  .form-submit {
    padding: 11px 18px;
    font-size: 13px;
    border-radius: 8px;
    width: 100%;
  }
  
  .info-header h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .info-header p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .trust-indicators {
    gap: 12px;
  }
  
  .trust-item {
    padding: 12px;
    border-radius: 8px;
  }
  
  .trust-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .trust-value {
    font-size: 16px;
    margin-bottom: 3px;
  }
  
  .trust-label {
    font-size: 10px;
    line-height: 1.2;
  }
  
  .contact-methods {
    gap: 12px;
    margin-top: 20px;
  }
  
  .method-item {
    padding: 10px;
    border-radius: 8px;
  }
  
  .method-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .method-content span {
    font-size: 10px;
    display: block;
    margin-bottom: 2px;
  }
  
  .method-content strong {
    font-size: 12px;
    word-break: break-word;
  }
  
  .contact-info-wrapper {
    padding: 20px 12px;
    border-radius: 10px;
  }
  
  .guarantee-badge {
    padding: 12px;
    border-radius: 8px;
  }
  
  .guarantee-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .guarantee-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .guarantee-text {
    font-size: 10px;
    line-height: 1.3;
  }
}

.price-label-blue,
.badge-text-color,
.price-note-color {
  color: var(--primary-accent) !important;
}

/* Mobile responsive for phone button text */
@media (max-width: 768px) {

  /* Add a class to wrap the text we want to hide */
  .btn-primary .phone-label {
    display: none;
  }
}

/* Process card title fix for white text on white background */
.process-card-title {
  color: #2c3e50 !important;
  /* Dark blue-gray color */
  font-weight: 600;
}

/* When card is active or hovered, ensure title is visible */
.process-card:hover .process-card-title,
.process-card.active .process-card-title {
  color: #1a73e8 !important;
  /* Blue color for active state */
}

/* Process section responsive improvements */
@media (max-width: 768px) {
  .process-section {
    padding: 30px 15px !important;
    border-radius: 15px;
  }

  .process-cards-interactive {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .process-card {
    padding: 20px;
    overflow: visible !important;
  }

  .process-card .card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .process-card .step-indicator {
    margin-bottom: 10px;
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0;
  }

  .progress-ring {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 60px !important;
    height: 60px !important;
  }

  .progress-ring svg {
    width: 60px !important;
    height: 60px !important;
    display: block;
    overflow: visible !important;
  }

  .progress-ring svg circle {
    stroke-width: 3 !important;
  }

  .process-card .card-title-block {
    text-align: center;
  }

  .process-card .card-body {
    padding: 15px 0;
  }

  .process-card .feature-list {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 20px 10px !important;
  }

  .section-title-modern {
    font-size: 1.8rem;
  }

  .process-card {
    padding: 15px;
  }

  .process-card h4 {
    font-size: 1.1rem;
  }

  .process-card .step-indicator {
    width: 50px !important;
    height: 50px !important;
  }

  .progress-ring {
    width: 50px !important;
    height: 50px !important;
  }

  .progress-ring svg {
    width: 50px !important;
    height: 50px !important;
  }

  .progress-ring svg circle {
    stroke-width: 2 !important;
  }

  .step-num {
    font-size: 1rem;
    line-height: 50px;
  }
}

@media (max-width: 375px) {
  .process-section {
    padding: 15px 8px !important;
  }

  .process-card {
    padding: 12px;
  }

  .process-card h4 {
    font-size: 1rem;
  }

  .process-card .card-body p {
    font-size: 0.9rem;
  }

  .feature-list li {
    font-size: 0.85rem;
  }
}

/* Fix testimonial badge overlap on mobile */
@media (max-width: 768px) {
  .testimonial-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-bottom: 15px;
    display: inline-flex;
    align-self: flex-start;
  }

  .testimonial-modern-card {
    padding-top: 20px;
  }

  .testimonial-rating {
    margin-top: 10px;
  }

  .author-name {
    display: block;
  }

  .testimonial-author {
    margin-bottom: 20px;
  }

  .author-info {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .testimonial-badge {
    font-size: 11px;
    padding: 4px 10px;
    gap: 5px;
  }

  .testimonial-badge img {
    width: 16px !important;
    height: 16px !important;
  }
}

.price-note-color {
  color: var(--primary-dark) !important;
}

/* Pricing section mobile padding */
@media (max-width: 768px) {
  .pricing-section {
    padding: 40px 20px !important;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 15px !important;
  }
}

/* Hide step numbers on mobile devices */
@media (max-width: 768px) {
  .step-number {
    display: none !important;
  }

  .step-content {
    padding-left: 30px !important;
  }

  .process-step {
    padding-left: 0 !important;
  }
}

/* Express timeline mobile responsive */
@media (max-width: 768px) {
  .express-timeline .timeline-track {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 !important;
  }

  .express-timeline .timeline-item {
    padding: 20px;
    width: 100% !important;
    margin: 0 !important;
  }

  .express-timeline .timeline-track::before {
    display: none;
  }

  .express-timeline .timeline-icon::after {
    display: none;
  }

  /* Why cards - full width and center content on mobile */
  .why-card {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  .why-card img {
    margin: 0 auto 15px !important;
  }

  .why-card h4 {
    text-align: center;
    margin-bottom: 10px;
  }

  .why-card p {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .why-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 !important;
  }
}

@media (max-width: 480px) {
  .express-timeline .timeline-track {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .express-timeline .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .express-timeline .timeline-item {
    padding: 25px 20px;
    min-height: auto;
  }

  .why-card {
    padding: 30px 20px !important;
    border-radius: 12px !important;
  }

  .why-card h4 {
    font-size: 18px;
    font-weight: 700;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Solution items mobile responsive */
@media (max-width: 768px) {
  .solution-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 25px 20px !important;
  }

  .solution-icon {
    margin: 0 auto 20px !important;
    width: 70px !important;
    height: 70px !important;
  }

  .solution-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
  }

  .solution-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .solution-content h4 {
    text-align: center;
    margin-bottom: 10px;
  }

  .solution-content p {
    text-align: center;
    margin-bottom: 15px;
  }

  .solution-tag {
    margin: 0 auto;
    display: inline-block;
  }

  .smart-solutions .solution-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .smart-solutions .solution-icon {
    margin: 0 auto 20px !important;
  }

  .solutions-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .solution-item {
    padding: 30px 15px !important;
  }

  .solution-icon {
    width: 60px !important;
    height: 60px !important;
  }

  .solution-content h4 {
    font-size: 18px;
  }

  .solution-content p {
    font-size: 14px;
  }
}

/* Hide CTA label text on mobile */
@media (max-width: 768px) {
  .cta-label {
    display: none;
  }

  /* Hide phone suffix text on mobile */
  .phone-suffix {
    display: none;
  }

  /* Reduce CTA header h3 size on mobile */
  .cta-header h3 {
    font-size: 24px !important;
  }

  /* Adjust slider label padding on mobile */
  .grout-renovation-detail .slider-label {
    padding: 5px 15px;
  }

  /* Contact section mobile styles */
  .contact-section {
    padding: 60px 15px !important;
  }

  .contact-form-wrapper {
    padding: 30px 20px !important;
    border-radius: 15px !important;
  }

  .contact-container {
    padding: 0 10px;
  }

  /* Form responsive styles */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  .submit-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .cta-header h3 {
    font-size: 20px !important;
  }

  /* Contact section extra small screens */
  .contact-section {
    padding: 40px 5px !important;
  }

  .contact-form-wrapper {
    padding: 25px 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  }

  .contact-header h2 {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .contact-header p {
    font-size: 14px !important;
  }

  .form-label {
    font-size: 14px;
  }

  textarea.form-control {
    min-height: 100px;
  }
}

/* Blog Page Styles */
.blog-header-modern {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top-bar {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  padding: 8px 0;
}

.header-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-info-left {
  display: flex;
  gap: 20px;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.back-to-main {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.back-to-main:hover {
  opacity: 0.8;
}

.header-main {
  padding: 20px 0;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-text .site-name {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.logo-text .site-tagline {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.header-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.header-phone-btn .phone-label {
  font-size: 12px;
  opacity: 0.9;
}

/* New Form Styles */
.form-field-wrapper {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color, #3498db);
  background: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-control::placeholder {
  color: #999;
  opacity: 1;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.error-message {
  font-weight: 700;
  font-size: 15px;
  color: #e74c3c;
  padding-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

.form-submit-wrapper {
  margin-top: 25px;
}

.contact-form .form-submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.contact-form .form-submit-btn:hover {
  background: linear-gradient(135deg, #2980b9, #21618c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.contact-form .form-submit-btn:active {
  transform: translateY(0);
}

.success-message {
  display: none;
  padding: 20px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 10px;
  color: #155724;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.success-message.show {
  display: block;
}

/* Mobile Responsive Form */
@media (max-width: 768px) {
  .form-control {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .contact-form .form-submit-btn {
    padding: 14px 25px;
    font-size: 16px;
  }
  
  .form-field-wrapper {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .form-control {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .contact-form .form-submit-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .error-message {
    font-size: 13px;
  }
  
  .success-message {
    padding: 15px;
    font-size: 14px;
  }
}

/* Blog Hero Section */
.blog-hero {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: url('/assets/img/pattern.png') repeat;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin: 20px 0;
  line-height: 1.2;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #3498db, #2980b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: #7f8c8d;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Blog Categories */
.blog-categories {
  padding: 60px 20px;
  background: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

/* Blog Main Content */
.blog-main-content {
  padding: 60px 20px;
  background: #f8f9fa;
}

.blog-main-content .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
}

/* Featured Article */
.featured-section {
  margin-bottom: 60px;
}

.featured-article {
  background: white;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.featured-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.featured-date,
.featured-category {
  font-size: 14px;
  color: #7f8c8d;
}

.featured-category {
  color: #3498db;
  font-weight: 600;
}

.featured-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.featured-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.featured-title a:hover {
  color: #3498db;
}

.featured-excerpt {
  font-size: 18px;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3498db;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.featured-link:hover {
  gap: 15px;
}

/* Articles Grid */
.articles-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.article-card-modern {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.article-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-card-header {
  padding: 20px 25px;
  border-bottom: 1px solid #ecf0f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-category,
.article-reading-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #7f8c8d;
}

.article-category {
  color: #3498db;
  font-weight: 600;
}

.article-card-body {
  padding: 25px;
}

.article-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.article-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.article-title a:hover {
  color: #3498db;
}

.article-excerpt {
  font-size: 15px;
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #95a5a6;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-card-footer {
  padding: 15px 25px;
  background: #f8f9fa;
  border-top: 1px solid #ecf0f1;
}

.article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3498db;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.article-link:hover {
  gap: 10px;
}

/* Pagination Modern */
.pagination-modern {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
}

.pagination-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  color: #2c3e50;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-arrow:hover {
  background: #3498db;
  color: white;
  border-color: #3498db;
}

.pagination-pages {
  display: flex;
  gap: 10px;
}

.pagination-page,
.pagination-active {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-page {
  background: white;
  border: 2px solid #ecf0f1;
  color: #2c3e50;
}

.pagination-page:hover {
  background: #3498db;
  color: white;
  border-color: #3498db;
}

.pagination-active {
  background: #3498db;
  color: white;
  border: 2px solid #3498db;
}

.pagination-dots {
  color: #95a5a6;
  font-size: 18px;
}

/* Bottom Sections */
.blog-bottom-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0;
}

/* Trending Articles */
.trending-articles {
  background: white;
  border-radius: 20px;
  padding: 30px;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trending-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s;
}

.trending-item:hover {
  background: #ecf0f1;
  transform: translateX(5px);
}

.trending-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.trending-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trending-content h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.trending-content h4 a:hover {
  color: #3498db;
}

.trending-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #7f8c8d;
}

.trending-views {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Resources Section */
.resources-section {
  background: white;
  border-radius: 20px;
  padding: 30px;
}

.resources-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s;
}

.resource-card:hover {
  background: #ecf0f1;
  transform: translateX(5px);
}

.resource-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}

.resource-card p {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
}

.resource-link {
  margin-left: auto;
  color: #3498db;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.resource-link:hover {
  color: #2980b9;
}

/* Newsletter Section */
.blog-newsletter {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 20px;
  padding: 50px;
  margin: 60px 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.newsletter-icon {
  flex-shrink: 0;
}

.newsletter-text h3 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.newsletter-input {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  width: 250px;
}

.newsletter-btn {
  padding: 12px 30px;
  background: white;
  color: #3498db;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Final CTA */
.blog-final-cta {
  background: white;
  border-radius: 20px;
  padding: 60px;
  margin: 60px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-left h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.cta-left p {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 30px;
}

.cta-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #2c3e50;
}

.cta-card {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
}

.cta-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e74c3c;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.cta-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.cta-phone-large {
  font-size: 32px;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-badge-black {
  color: black !important;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.btn-cta-secondary {
  background: white;
  color: #3498db;
  border: 2px solid #3498db;
}

.btn-cta-secondary:hover {
  background: #3498db;
  color: white;
}

.cta-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #7f8c8d;
}

/* Blog Mobile Responsive */
@media (max-width: 768px) {
  .header-info-left {
    flex-direction: column;
    gap: 10px;
  }

  .info-badge {
    font-size: 12px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 28px;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .category-card {
    padding: 20px;
  }

  .articles-modern-grid {
    grid-template-columns: 1fr;
  }

  .blog-bottom-sections {
    grid-template-columns: 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-input {
    width: 100%;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .header-phone-btn .phone-label {
    display: none;
  }

  .featured-article {
    padding: 25px;
  }

  .featured-title {
    font-size: 24px;
  }

  .featured-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .blog-newsletter {
    padding: 30px 20px;
  }

  .blog-final-cta {
    padding: 30px 20px;
  }

  .cta-phone-large {
    font-size: 24px;
  }
}

/* Blog Pagination Styles */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
}

.pagination-btn {
  padding: 10px 20px;
  background: white;
  border: 2px solid var(--primary-accent);
  border-radius: 8px;
  color: var(--primary-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-btn:hover {
  background: var(--primary-accent);
  color: white;
}

.pagination-numbers {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination-number,
.pagination-current {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-number {
  background: white;
  border: 2px solid #e0e0e0;
  color: var(--text-primary);
}

.pagination-number:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.pagination-current {
  background: var(--primary-accent);
  color: white;
  border: 2px solid var(--primary-accent);
}

.pagination-dots {
  color: #999;
  font-size: 18px;
  padding: 0 5px;
}

/* Blog variant for hero */
.blog-variant .hero-main-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.blog-variant .hero-split-layout {
  justify-content: center;
}

/* Newsletter form in pricing card */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.newsletter-form .form-control {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .blog-pagination {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pagination-numbers {
    flex-wrap: wrap;
  }
}

/* Blog Page Specific Styles */
.blog-page {
  background: var(--bg-secondary);
  min-height: 100vh;
}

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  padding: 60px 0;
}

/* Blog Articles Section */
.blog-articles-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
}

.blog-articles-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.blog-article-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s;
}

.blog-article-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.article-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.article-category {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--bg-accent);
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary-accent);
  font-weight: 600;
}

.article-date {
  color: var(--text-light);
  font-size: 14px;
}

.article-card-title {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.article-card-title a:hover {
  color: var(--primary-accent);
}

.article-card-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-card-footer {
  display: flex;
  justify-content: flex-end;
}

.read-more-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-accent);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.read-more-btn:hover {
  gap: 12px;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
}

.sidebar-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text-primary);
  border-bottom: 2px solid var(--primary-accent);
  padding-bottom: 10px;
}

/* Popular Articles */
.popular-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-article-item {
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.popular-article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-article-link {
  text-decoration: none;
}

.popular-article-link h4 {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 5px;
  line-height: 1.4;
  transition: color 0.3s;
}

.popular-article-link:hover h4 {
  color: var(--primary-accent);
}

.popular-article-date {
  font-size: 13px;
  color: var(--text-light);
}

/* Categories */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: var(--bg-secondary);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
}

.category-item:hover {
  background: var(--bg-accent);
  transform: translateX(5px);
}

.category-count {
  background: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-accent);
}

/* CTA Section in Sidebar */
.cta-section {
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-light));
  color: white;
}

.cta-section .sidebar-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-text {
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary-accent);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--bg-accent);
}

.newsletter-text {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 15px;
}

.newsletter-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary-accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  background: var(--primary-dark);
}

/* Bottom CTA */
.blog-bottom-cta {
  margin-top: 60px;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg-accent), white);
}

.bottom-cta-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

.cta-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.cta-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-primary);
}

.cta-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cta-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.cta-phone {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-accent);
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-primary-colors:hover {}

.btn-primary,
.btn-secondary {
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--primary-accent);
  color: white;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-secondary {
  background: white;
  color: var(--primary-accent);
  border: 2px solid var(--primary-accent);
}

.btn-secondary:hover {
  background: var(--primary-accent);
  color: white;
}

.cta-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Pagination Ellipsis */
.pagination-ellipsis {
  color: var(--text-light);
  font-size: 18px;
  padding: 0 10px;
}

/* Blog Mobile Responsive */
@media (max-width: 1024px) {
  .blog-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bottom-cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-info {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .blog-content-wrapper {
    padding: 40px 0;
  }

  .blog-articles-section {
    padding: 20px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-section {
    padding: 20px;
  }

  .article-card-title {
    font-size: 20px;
  }

  .cta-info h2 {
    font-size: 28px;
  }

  .cta-info p {
    font-size: 16px;
  }

  .cta-phone {
    font-size: 24px;
  }

  .blog-bottom-cta {
    padding: 40px 0;
  }

  .cta-card {
    padding: 25px;
  }

  .pagination-btn span {
    display: none;
  }

  .pagination-btn {
    padding: 10px 15px;
  }

  .pagination-number,
  .pagination-current {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* CTA Info Block Styles */
.cta-info {
  padding: 20px;
}

.cta-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.cta-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.cta-features li img {
  flex-shrink: 0;
}

.cta-features li span {
  line-height: 1.4;
}

/* Mobile Responsive for CTA Info */
@media (max-width: 768px) {
  .cta-info {
    padding: 15px;
  }

  .cta-info h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .cta-info p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .cta-features {
    gap: 12px;
  }

  .cta-features li {
    font-size: 15px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .cta-info h2 {
    font-size: 24px;
  }

  .cta-info p {
    font-size: 15px;
  }

  .cta-features li {
    font-size: 14px;
  }
}