/*
Theme Name: Renomove Theme
Theme URI: https://renomove.de/
Author: Dein Name
Description: Individuelles WordPress-Theme für RenoMove München.
Version: 1.0
Text Domain: renomove-theme
*/

/* Local Font Declarations */
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter_18pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Colors */
:root {
  --primary-color: #0a3b75;
  --secondary-color: #7ed957;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --border-color: #e5e7eb;
  --white: #ffffff;
  --facebook-color: #1877f2;
  --instagram-color: #e4405f;
  --tiktok-color: #000000;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #083461;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: #6bc946;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-white:hover {
  background-color: #f8f9fa;
}

.btn-full {
  width: 100%;
}

/* Enhanced Header with Green Accent Line */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
  /* Entfernt: transition: all - verursacht Mauszittern beim Logo-Hover */
  position: relative;
}

/* Green Accent Line - Version 30 Element */
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--secondary-color) 0%,
    #6bc946 25%,
    var(--secondary-color) 50%,
    #6bc946 75%,
    var(--secondary-color) 100%
  );
  box-shadow: 0 1px 3px rgba(126, 217, 87, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  position: relative;
}

/* Enhanced Logo Design - ULTRA CLEAN VERSION */
.logo {
  position: relative;
  padding: 0.5rem;
  border-radius: 8px;
  display: inline-block;
  /* ABSOLUT KEINE Transitions oder Filter hier */
  background: transparent;
}

.logo:hover {
  /* ABSOLUT NICHTS beim Hover auf dem Logo-Container */
  background: transparent;
}

.logo-img {
  height: 3.25rem;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Nur transform transition - nichts anderes */
  
  position: relative;
  z-index: 1;
  /* Keine Filter, keine Schatten */
}

.logo:hover .logo-img {
  /* Nur der Zoom-Effekt - nichts anderes */
  transform: scale(1.08);
}

/* Enhanced Navigation - Fix dropdown positioning and overflow issues */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(126, 217, 87, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: visible; /* Changed from hidden to visible */
  z-index: 100; /* Reduziert von implizit höherem Wert */
}

.nav-desktop::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 217, 87, 0.05), transparent);
  transition: left 0.6s ease;
}

.nav-desktop:hover::before {
  left: 100%;
}

/* Dropdown Navigation - ROBUST VERSION */
.nav-dropdown {
  position: relative;
  z-index: 200;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
  text-decoration: none;
  position: relative;
  z-index: 201;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--primary-color);
  background-color: rgba(126, 217, 87, 0.15);
}

.dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover .dropdown-icon,
.dropdown-toggle.active .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu - Improved Positioning and Hover Area */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px); /* Reduced gap for easier hover */
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease; /* Faster transition */
  z-index: 10001;
  border: 1px solid rgba(126, 217, 87, 0.15);
  pointer-events: none;

  /* Add invisible bridge for easier hovering */
  &::before {
    content: "";
    position: absolute;
    top: -10px; /* Bridge the gap */
    left: 0;
    right: 0;
    height: 15px; /* Invisible hover area */
    background: transparent;
  }

  /* Visual arrow */
  &::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
  }
}

/* Show dropdown on hover - CSS only approach */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Keep dropdown open when hovering over menu items */
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Show class for JavaScript control */
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 0.75rem;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 217, 87, 0.1), transparent);
  transition: left 0.5s ease;
}

.dropdown-item:hover::before {
  left: 100%;
}

.dropdown-item:hover {
  background-color: rgba(126, 217, 87, 0.1);
  color: var(--primary-color);
  transform: translateX(8px);
  box-shadow: 0 2px 8px rgba(126, 217, 87, 0.2);
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 80%;
}

/* Social Media Buttons - Unchanged Design with Platform-Specific Hover Colors */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(126, 217, 87, 0.2);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Platform-specific hover effects */
.social-btn[href*="facebook"]:hover {
  background-color: var(--facebook-color);
  color: var(--white);
  border-color: var(--facebook-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(24, 119, 242, 0.2);
}

.social-btn[href*="instagram"]:hover {
  background-color: var(--instagram-color);
  color: var(--white);
  border-color: var(--instagram-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(228, 64, 95, 0.2);
}

.social-btn[href*="tiktok"]:hover {
  background-color: var(--tiktok-color);
  color: var(--white);
  border-color: var(--tiktok-color);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Enhanced Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: linear-gradient(135deg, var(--primary-color) 0%, #083461 100%);
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(10, 59, 117, 0.2);
  position: relative;
  overflow: hidden;
}

.mobile-menu-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.mobile-menu-btn:hover::before {
  left: 100%;
}

.mobile-menu-btn:hover {
  background: linear-gradient(135deg, #083461 0%, var(--primary-color) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 59, 117, 0.3);
}

.hamburger {
  width: 24px;
  height: 3px;
  background-color: var(--white);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

/* Enhanced Mobile Navigation */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(126, 217, 87, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  gap: 0.5rem;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Mobile Dropdown */
.mobile-dropdown {
  margin: 0 1rem;
}

/* FIXED: Ensure consistent font-weight for dropdown toggles */
.dropdown-toggle-mobile-combined {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  background: none;
  border: none;
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.875rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  margin: 0 1rem;
  /* Force consistent font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dropdown-toggle-mobile-combined:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  transform: translateX(5px);
}

.dropdown-toggle-mobile-combined .dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
}

.dropdown-toggle-mobile-combined:hover .dropdown-icon,
.dropdown-toggle-mobile-combined.active .dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-light);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.mobile-dropdown-menu.show {
  max-height: 300px;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-dropdown-item:hover {
  background-color: white;
  color: var(--primary-color);
  border-left-color: var(--secondary-color);
  transform: translateX(5px);
}

/* FIXED: Ensure consistent font-weight for regular nav links */
.nav-link-mobile {
  color: var(--text-color);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.875rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 1rem;
  position: relative;
  overflow: hidden;
  /* Force consistent font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-link-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 217, 87, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link-mobile:hover::before {
  left: 100%;
}

.nav-link-mobile:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Mobile Social Media Buttons - Fixed Icons */
.header-social-mobile {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(126, 217, 87, 0.2);
}

.social-btn-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-btn-mobile svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
  color: var(--text-light);
}

/* Platform-specific hover effects for mobile */
.social-btn-mobile[href*="facebook"]:hover {
  background-color: var(--facebook-color);
  color: var(--white);
  border-color: var(--facebook-color);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(24, 119, 242, 0.2);
}

.social-btn-mobile[href*="facebook"]:hover svg {
  color: var(--white);
}

.social-btn-mobile[href*="instagram"]:hover {
  background-color: var(--instagram-color);
  color: var(--white);
  border-color: var(--instagram-color);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(228, 64, 95, 0.2);
}

.social-btn-mobile[href*="instagram"]:hover svg {
  color: var(--white);
}

.social-btn-mobile[href*="tiktok"]:hover {
  background-color: var(--tiktok-color);
  color: var(--white);
  border-color: var(--tiktok-color);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-btn-mobile[href*="tiktok"]:hover svg {
  color: var(--white);
}

/* Enhanced Header Scroll Effect */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header.scrolled::after {
  background: linear-gradient(90deg, var(--secondary-color) 0%, #6bc946 50%, var(--secondary-color) 100%);
  box-shadow: 0 2px 6px rgba(126, 217, 87, 0.4);
}

.header.scrolled .nav-desktop {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(126, 217, 87, 0.1);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}

/* Hero Section - Enhanced Layout */
.hero {
  background-color: var(--bg-light);
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-title {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2.75rem;
  line-height: 1.1;
  font-weight: 700;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
  white-space: nowrap;
}

.hero-buttons .btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #6bc946 100%);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
}

.hero-buttons .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 217, 87, 0.4);
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #083461 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(10, 59, 117, 0.3);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 59, 117, 0.4);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Hero Stats - Enhanced */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
  margin-top: auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #e5e7eb;
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trust Signals Styles */
.trust-signals {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 0;
  margin-top: -1px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.trust-icon {
  background: var(--secondary-color);
  border-radius: 50%;
  padding: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
}

.trust-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.trust-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-description {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 55rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services Section - Updated for 2x2 Grid */
.services {
  padding: 6rem 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: color 0.3s ease;
  margin-top: auto;
  padding: 0.5rem 0;
}

.service-link:hover {
  color: var(--secondary-color);
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.service-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* FIXED: Feature Icon Alignment and Sizing - NUR DIESE ÄNDERUNG */
.feature-icon {
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-color);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-description {
  color: var(--text-light);
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
}

.cta-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.phone-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

/* Before-After Slider Styles */
.before-after-section {
  padding: 6rem 0;
  background: var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.before-after-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.before-after-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.before-after-item h3 {
  padding: 1.5rem 1.5rem 1rem;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.before-after-slider {
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 0;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: none;
  transform: none;
  font-size: 0;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

.after-image {
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary-color);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  z-index: 1;
}

.slider-labels {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 15;
}

.before-label,
.after-label {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 16;
}

.project-details {
  padding: 1.8rem;
  background: #f8f9fa;
}

.project-details p {
  margin: 0.75rem 0;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.project-details strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Google Reviews Widget Styles - Horizontal Layout */
.reviews-widget {
  padding: 6rem 0;
  background: white;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-header .section-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.rating-stars .star {
  color: #fbbf24;
  font-size: 1.8rem;
  margin-right: 3px;
}

.rating-text {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.2rem;
}

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

/* Horizontal Carousel Container */
.reviews-carousel-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.reviews-carousel-horizontal {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.review-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 1rem;
}

/* Individual Review Cards */
.review-card-horizontal {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-color);
}

.review-header-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
}

.reviewer-info-horizontal h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.review-stars-horizontal {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

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

.google-logo-horizontal {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  flex-shrink: 0;
}

.review-text-horizontal {
  color: var(--text-color);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
  flex-grow: 1;
}

/* Navigation Buttons */
.reviews-navigation-horizontal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.nav-btn-horizontal {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(10, 59, 117, 0.2);
}

.nav-btn-horizontal:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(126, 217, 87, 0.3);
}

.nav-btn-horizontal:active {
  transform: scale(0.95);
}

.reviews-cta {
  text-align: center;
}

.reviews-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .review-slide {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .review-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .google-rating {
    flex-direction: column;
    gap: 0.5rem;
  }

  .review-card-horizontal {
    padding: 1.5rem;
  }

  .nav-btn-horizontal {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .reviews-widget {
    padding: 4rem 0;
  }

  .reviews-header {
    margin-bottom: 3rem;
  }

  .review-card-horizontal {
    padding: 1.25rem;
  }

  .review-text-horizontal {
    font-size: 0.95rem;
  }
}

/* FAQ Section - Enhanced and Enlarged */
.faq {
  padding: 7rem 0;
  background-color: #f9fafb;
}

.faq-container {
  max-width: 55rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question:hover {
  background-color: var(--bg-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question.active {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(10, 59, 117, 0.2);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-answer.active {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.faq-answer p {
  color: var(--text-light);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: var(--white);
}

.contact-container {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.form-input {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 59, 117, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1rem;
}

/* Neue Felder für Malerarbeiten - Responsive Grid */
.form-group:nth-child(n+7) {
  grid-column: span 1;
}



/* Spezielle Styling für Nummerfelder */
.form-group input[type="number"] {
  -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Responsive Anpassungen für das erweiterte Formular */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group:nth-child(n+7) {
    grid-column: 1;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 1rem;
  }
  
  .form-grid {
    gap: 0.75rem;
  }
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
}

.form-success {
  background-color: #d1fae5;
  color: #065f46;
}

.form-error {
  background-color: #fee2e2;
  color: #991b1b;
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.link {
  color: var(--primary-color);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 3.75rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--white);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--secondary-color);
}

.social-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-title {
  color: var(--white);
  margin-bottom: 1rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary-color);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Fixed Action Buttons */
.fixed-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fixed-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.fixed-btn-request {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.fixed-btn-call {
  background-color: var(--primary-color);
  color: var(--white);
}

.fixed-btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-btn-text {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  right: 18px;
}

/* Hover States */
.fixed-btn:hover {
  width: 140px;
  border-radius: 30px;
}

.fixed-btn:hover .fixed-btn-icon {
  left: 20px;
  transform: translate(0, -50%);
}

.fixed-btn:hover .fixed-btn-text {
  opacity: 1;
  transform: translateX(0);
}

.fixed-btn-request:hover {
  background-color: #6bc946;
}

.fixed-btn-call:hover {
  background-color: #083461;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    min-height: 300px;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-mobile.active {
    display: flex;
  }

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

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

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

  .hero-buttons .btn,
  .cta-buttons .btn {
    min-width: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 100%;
  }

  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
  }

  .stat-item::after {
    display: none;
  }

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

  .trust-item {
    flex-direction: column;
    text-align: center;
  }

  .trust-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .google-rating {
    flex-direction: column;
    gap: 0.5rem;
  }

  .fixed-buttons {
    right: 15px;
    bottom: 20px;
    top: auto;
    transform: none;
    flex-direction: row;
  }

  .fixed-btn {
    width: 50px;
    height: 50px;
  }

  .fixed-btn:hover {
    width: 50px;
    border-radius: 50%;
  }

  .fixed-btn-text {
    display: none;
  }

  .fixed-btn:hover .fixed-btn-icon {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .slider-container {
    height: 250px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .before-after-item {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
    text-align: left;
  }

  .hero-buttons .btn {
    max-width: 380px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1rem;

  }

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

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

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

  .social-links {
    justify-content: center;
  }

  .contact-info {
    align-items: center;
  }

  .slider-container {
    height: 200px;
  }

  .project-details {
    padding: 1rem;
  }

  .project-details p {
    font-size: 0.9rem;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in-up {
  animation: slideInUp 0.6s ease-out;
}

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

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

.mt-0 {
  margin-top: 0;
}

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Print Styles */
@media print {
  .header,
  .fixed-buttons,
  .cta,
  .reviews-navigation {
    display: none;
  }

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

  .container {
    max-width: none;
    padding: 0;
  }

  .hero,
  .services,
  .about,
  .contact {
    padding: 1rem 0;
  }

  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

/* Service Page Specific Styles */
.service-hero {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.service-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-hero-text h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.hero-feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary-color);
}

.service-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Service Types Grid - 2x2 Layout */
.service-types-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Process Section */
.service-process {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-number {
  background: var(--primary-color);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.process-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.process-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.process-content ul {
  list-style: none;
  padding: 0;
}

.process-content li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.process-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Service FAQ Section */
.service-faq {
  padding: 6rem 0;
  background-color: var(--white);
}

/* Contact CTA Section */
.contact-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #083461 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Detailed Services Section */
.detailed-services {
  padding: 6rem 0;
  background-color: var(--white);
}

.detailed-services-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-text p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 0.5rem;
}

.services-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
  background-color: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin: 0 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.breadcrumb-list a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
  color: var(--secondary-color);
}

.breadcrumb-list span[aria-current="page"] {
  color: var(--text-light);
  font-weight: 500;
}

/* Service Types Grid - Regular 4-column layout */
.service-types {
  padding: 6rem 0;
  background-color: var(--white);
}

.service-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-type-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--border-color);
}

.service-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.service-type-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #6bc946 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-type-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-type-card:hover .service-type-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
}

.service-type-card h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-type-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-features li {
  color: var(--text-color);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1rem;
}

/* SEO Text Section */
.seo-text-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.seo-text-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.seo-text-content h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.seo-text-content p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.seo-text-content .btn {
  margin-top: 2rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .service-types-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-hero-image {
    order: 0;
  }

  .service-hero-features {
    gap: 1rem;
  }

  .service-hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .service-hero-buttons .btn {
    width: 100%;
  }

  .breadcrumb-list {
    font-size: 0.8rem;
  }

  /* Enhanced mobile adjustments for service pages */
  .service-hero {
    padding: 3rem 0;
  }

  .service-hero-text h1 {
    font-size: 2.25rem;
    text-align: left;
  }

  .service-hero-subtitle {
    font-size: 1.1rem;
    text-align: left;
  }

  .service-hero-features {
    justify-content: flex-start;
    flex-direction: initial;
    align-items: center;
    gap: 1rem;
  }

  .hero-feature {
    justify-content: flex-start;
    text-align: left;
  }

  .service-types {
    padding: 4rem 0;
  }

  .section-header {
    text-align: left;
    margin-bottom: 3rem;
  }

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

  .section-description {
    font-size: 1.1rem;
  }

  .service-type-card {
    padding: 1.5rem;
    text-align: left;
  }

  .service-type-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .service-type-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .service-type-card h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .service-type-card p {
    font-size: 0.95rem;
    text-align: left;
  }

  .service-features li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  .seo-text-section {
    padding: 3rem 0;
  }

  .seo-text-content h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .seo-text-content p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 2.5rem 0;
  }

  .service-hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .service-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .service-hero-features {
    margin-bottom: 1.5rem;
  }

  .hero-feature {
    font-size: 0.9rem;
  }

  .service-hero-buttons .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .service-types {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .service-type-card {
    padding: 1.25rem;
    text-align: left;
  }

  .service-type-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }

  .service-type-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .service-type-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .service-type-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: left;
  }

  .service-features li {
    font-size: 0.85rem;
    padding: 0.3rem 1.5rem;
  }

  .seo-text-section {
    padding: 2.5rem 0;
  }

  .seo-text-content h2 {
    font-size: 1.6rem;
  }

  .seo-text-content p {
    font-size: 0.95rem;
  }

  .seo-text-content .btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}

/* Portfolio Filter Styles */
.portfolio-filter {
  padding: 2rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  background: var(--white);
  color: var(--text-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 59, 117, 0.2);
}

/* Portfolio Grid Styles */
.portfolio-grid-section {
  padding: 4rem 0 6rem;
  background-color: var(--bg-light);
}

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

.portfolio-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.portfolio-details {
  padding: 1.5rem;
}

.portfolio-details h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.portfolio-details p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.portfolio-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.portfolio-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Portfolio Stats */
.portfolio-stats {
  padding: 4rem 0;
  background: var(--primary-color);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.stat-card .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Blog Styles */
.blog-categories {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 0.3);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.category-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #6bc946 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
}

.category-icon svg {
  width: 2rem;
  height: 2.5rem;
  color: var(--primary-color);
}

.category-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.category-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* Featured Articles */
.featured-articles {
  padding: 6rem 0;
  background-color: var(--white);
}

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

.article-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-image {
  position: relative;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card.featured .article-image img {
  height: 300px;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.article-content h2,
.article-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-content h2 {
  font-size: 1.5rem;
}

.article-content h3 {
  font-size: 1.25rem;
}

.article-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--bg-light);
  color: var(--text-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.article-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: auto;
}

.article-link:hover {
  color: var(--secondary-color);
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #083461 100%);
  color: var(--white);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.newsletter-input-group {
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.3);
}

.newsletter-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-disclaimer a {
  color: var(--secondary-color);
  text-decoration: none;
}

.newsletter-disclaimer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .article-card.featured {
    grid-template-columns: 1fr;
  }

  .article-card.featured .article-image img {
    height: 200px;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .portfolio-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card .stat-number {
    font-size: 2.5rem;
  }

  .newsletter-text h2 {
    font-size: 1.75rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Blog Landing Page Specific Styles */

/* Article Hero Section */
.article-hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f8 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(126, 217, 87, 0.05) 50%, transparent 100%);
  transform: rotate(15deg);
}

.article-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #6bc946 100%);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
}

.category-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.article-hero h1 {
  color: var(--primary-color);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.article-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 90%;
}

.article-meta-info {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.meta-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

/* Social Sharing Buttons */
.social-sharing {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sharing-label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.sharing-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
}

.share-btn svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.share-btn.facebook {
  background-color: #1877f2;
  color: white;
}

.share-btn.facebook:hover {
  background-color: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
  background-color: #1da1f2;
  color: white;
}

.share-btn.twitter:hover {
  background-color: #1a91da;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.share-btn.linkedin {
  background-color: #0077b5;
  color: white;
}

.share-btn.linkedin:hover {
  background-color: #006ba1;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.share-btn.whatsapp {
  background-color: #25d366;
  color: white;
}

.share-btn.whatsapp:hover {
  background-color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.share-btn.copy-link {
  background-color: var(--bg-light);
  color: var(--text-color);
  border: 2px solid var(--border-color);
}

.share-btn.copy-link:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 59, 117, 0.3);
}

.article-hero-image {
  position: relative;
}

.article-hero-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Article Summary Section */
.article-summary {
  padding: 6rem 0;
  background-color: var(--white);
}

.summary-content h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.summary-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.summary-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.summary-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #6bc946 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.summary-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.summary-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.summary-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Article Preview Section */
.article-preview {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f8 100%);
}

.preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.preview-text h2 {
  color: var(--primary-color);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.preview-intro {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 400;
}

.preview-highlights {
  margin-bottom: 3rem;
}

.highlight-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.highlight-number {
  background: linear-gradient(135deg, var(--primary-color) 0%, #083461 100%);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 59, 117, 0.3);
}

.highlight-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.highlight-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.preview-stats {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

.preview-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.preview-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.preview-image:hover .image-overlay {
  transform: translateY(0);
}

.preview-image:hover img {
  transform: scale(1.05);
}

.overlay-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Main CTA Section */
.main-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #083461 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.main-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 0%, rgba(126, 217, 87, 0.1) 50%, transparent 100%);
  transform: rotate(15deg);
}

.main-cta .cta-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  padding: 0.5rem 0;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.primary-cta,
.secondary-cta {
  text-align: center;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  justify-content: center;
  min-width: 280px;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Related Articles Section */
.related-articles {
  padding: 6rem 0;
  background-color: var(--white);
}

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

.related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-image {
  position: relative;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.05);
}

.related-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.related-content {
  padding: 1.5rem;
}

.related-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.related-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.related-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.related-link:hover {
  color: var(--secondary-color);
}

/* Mobile Responsive for Blog Landing */
@media (max-width: 768px) {
  .article-hero-content,
  .preview-content,
  .main-cta .cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-hero-image {
    order: -1;
  }

  .article-hero h1 {
    font-size: 2.25rem;
  }

  .article-meta-info {
    gap: 1rem;
  }

  .sharing-buttons {
    gap: 0.5rem;
  }

  .share-btn {
    width: 40px;
    height: 40px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .preview-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .cta-actions {
    gap: 1.5rem;
  }

  .btn-large {
    min-width: auto;
    width: 100%;
  }

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

@media (max-width: 480px) {
  .article-hero {
    padding: 3rem 0;
  }

  .article-hero h1 {
    font-size: 2rem;
  }

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

  .social-sharing {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .preview-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .main-cta .cta-content {
    gap: 3rem;
  }

  .cta-text h2 {
    font-size: 2rem;
  }
}

/* Keine Artikel Nachricht */
.no-articles-message {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    margin: 2rem 0;
    border: 2px dashed #cbd5e1;
}

.no-articles-icon {
    margin-bottom: 1.5rem;
    color: #64748b;
}

.no-articles-message h3 {
    font-size: 2rem;
    color: #334155;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-articles-message p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.no-articles-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-articles-actions .btn {
    min-width: 200px;
}

/* Responsive für Keine Artikel Nachricht */
@media (max-width: 768px) {
    .no-articles-message {
        padding: 3rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .no-articles-message h3 {
        font-size: 1.75rem;
    }
    
    .no-articles-message p {
        font-size: 1rem;
    }
    
    .no-articles-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-articles-actions .btn {
        min-width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .no-articles-message {
        padding: 2rem 1rem;
    }
    
    .no-articles-message h3 {
        font-size: 1.5rem;
    }
}

/* Keine Projekte Nachricht */
.no-projects-message {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    margin: 2rem 0;
    border: 2px dashed #cbd5e1;
}

.no-projects-icon {
    margin-bottom: 1.5rem;
    color: #64748b;
}

.no-projects-message h3 {
    font-size: 2rem;
    color: #334155;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-projects-message p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.no-projects-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-projects-actions .btn {
    min-width: 200px;
}

/* Portfolio Filter Styles */
.portfolio-filter-section {
    padding: 2rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 59, 117, 0.2);
}

/* Portfolio Grid Styles */
.portfolio-grid-section {
    padding: 4rem 0 6rem;
    background-color: var(--bg-light);
}

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

.portfolio-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-details {
    padding: 1.5rem;
}

.portfolio-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.portfolio-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.portfolio-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: #f8f9fa;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive für Projekte */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-container {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .no-projects-message {
        padding: 3rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .no-projects-message h3 {
        font-size: 1.75rem;
    }
    
    .no-projects-message p {
        font-size: 1rem;
    }
    
    .no-projects-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-projects-actions .btn {
        min-width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        gap: 1rem;
    }
    
    .portfolio-details {
        padding: 1rem;
    }
    
    .portfolio-details h3 {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .no-projects-message {
        padding: 2rem 1rem;
    }
    
    .no-projects-message h3 {
        font-size: 1.5rem;
    }
}
