/* ================================================
   MALER BERLIN - Main Stylesheet
   ================================================ */

/* ================================================
   GOOGLE FONTS IMPORT
   ================================================ */
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('/wp-content/themes/Listandsell/assets/fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('/wp-content/themes/Listandsell/assets/fonts/montserrat-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('/wp-content/themes/Listandsell/assets/fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* paytone-one-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Paytone One";
  font-style: normal;
  font-weight: 400;
  src: url("/wp-content/themes/Listandsell/assets/fonts/paytone-one-v25-latin-regular.woff2")
    format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lora-regular - cyrillic_cyrillic-ext_latin_latin-ext */

/* ================================================
   CSS CUSTOM PROPERTIES (Variables)
   ================================================ */
:root {
  /* Brand Colors - Primary Blue & Secondary Red */
  --primary: #1b6097;
  --primary-dark: #144a75;
  --primary-light: #2d7ab8;
  --secondary: #f39c12;
  --secondary-light: #f5b041;
  --secondary-dark: #d68910;
  --accent: #1b6097;
  --accent-light: #2d7ab8;

  /* Neutrals */
  --white: #ffffff;
  --light: #fdf8f3;
  --gray-50: #fafafa;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --dark: #0f2d44;
  --black: #0a1929;

  /* Rainbow Gradient for Icons */
  --gradient-rainbow: linear-gradient(
    135deg,
    #ff6b6b 0%,
    #ffe66d 25%,
    #4ecdc4 50%,
    #45b7d1 75%,
    #96e6a1 100%
  );
  --gradient-rainbow-soft: linear-gradient(
    135deg,
    #f093fb 0%,
    #f5576c 25%,
    #4facfe 50%,
    #43e97b 75%,
    #fa709a 100%
  );

  /* Brand Gradients */
  --gradient-primary: linear-gradient(135deg, #1b6097 0%, #144a75 100%);
  --gradient-secondary: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
  --gradient-accent: linear-gradient(135deg, #1b6097 0%, #2d7ab8 100%);
  --gradient-hero: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.85) 0%,
    rgba(15, 45, 68, 0.95) 100%
  );

  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

  /* Typography */
  --font-primary:
    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-secondary: "Paytone One", Impact, "Arial Black", sans-serif;
  /* --font-stats: "Lora", Georgia, "Times New Roman", serif; */

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.03rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Section Padding */
  --section-padding: clamp(4rem, 10vw, 6rem);
  --container-width: min(90%, 1350px);
  --container-narrow: min(90%, 900px);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px 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);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 10px 40px -10px rgba(27, 96, 151, 0.4);
  --shadow-secondary: 0 10px 40px -10px rgba(243, 156, 18, 0.4);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
  --z-preloader: 1000;
}
/* 404 */

div#content.page-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 90px 0px;
  max-width: 1350px;
  margin: 0 auto;
}

.error-404.not-found.default-max-width .page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0px;
}

div#content.page-404 img {
  max-width: 100%;
  padding-top: 50px;
}

.anfrage-col.listandsell-button.error-btn a {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 15px 30px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    var(--primary-light) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
div#content.page-404 img {
  max-width: 50%;
  padding-top: 50px;
}
.error404 .navbar {
  background-color: #0f2c42;
}

.anfrage-col.listandsell-button.error-btn svg path {
  fill: #fff;
}

@media only screen and (max-width: 1024px) {
  /* borlab==begin */
  #BorlabsCookieBoxWidget.bottom-left {
    left: 0;
    bottom: 66px !important;
  }
  /* borlab==end */

  div#content.page-404 {
    padding: 100px 16px;
    text-align: center;
  }
  div#content.page-404 img {
    max-width: 70%;
    padding-top: 50px;
  }
}
/* 404 end*/

.menu-language .separator {
  margin: 0 4px;
}

.legal_info_nw {
  max-width: 17rem !important;
}

.menu-language .lang-item a span {
  text-transform: uppercase;
}

/* ================================================
   CSS RESET & BASE STYLES
   ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-600);
  text-decoration: none;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body.no-scroll {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

i.fa-phone-alt {
  transform: rotate(90deg) !important;
}

/* Image placeholder styles */
img[data-src] {
  background-color: #e0e0e0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
  background-color: transparent;
}

.img-placeholder {
  background-color: #f0f0f0;
}

/* Prevent animations during resize */
.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  img[data-src],
  img.loaded {
    transition: none;
  }
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: 0.4px;
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 500;
}

.link-nw a {
  color: #f4aa33 !important;
}
.link-nw a:hover {
  color: #e08f11 !important;
}

.about-grid p a {
  color: #f4aa33 !important;
}
.about-grid p a:hover {
  color: #e08f11 !important;
}
.about-grid li a {
  color: #f4aa33 !important;
}
.about-grid li a:hover {
  color: #e08f11 !important;
}
/* ================================================
   UTILITY CLASSES
   ================================================ */
.container {
  width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--section-padding) 0;
  contain: layout style;
}

/* Content-visibility for below-the-fold sections - improves initial render */
.section:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.section.bg-light {
  background-color: var(--gray-50);
}

.section.bg-dark {
  background-color: var(--dark);
  color: var(--white);
}

.section.bg-gradient {
  background: var(--gradient-primary);
  color: var(--white);
}

/* Section Header */
.section-header {
  margin-bottom: var(--space-xl);
}

.colors-wrapper .section-header {
  margin-bottom: var(--space-sm) !important;
}

.mx-w-md {
  max-width: 1024px;
}

.section-header.mx-w-md {
  margin-bottom: 0;
}

.section-header.center {
  text-align: center;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: var(--white);
}

.section-header.light .section-tag {
  color: var(--white);
}

.section-header.light .section-tag::before {
  background: linear-gradient(90deg, var(--white), var(--secondary));
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  /*text-transform: uppercase;*/
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  padding-left: 45px;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--dark);
}

.section-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 1000px;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.colors-wrapper .section-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  border-radius: 60px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn:hover::before {
  opacity: 1;
}

/* .btn-primary styles defined in BUTTON SYSTEM section below */

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ================================================
   CREATIVE BUTTON STYLES - Fill Animation
   ================================================ */
/* Base Creative Button */
.btn-creative {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: transparent;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 60px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: all var(--transition-smooth);
}

.btn-creative span,
.btn-creative i {
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

.btn-creative::before {
  display: none;
}

.btn-creative::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--primary-light) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  transition: height var(--transition-smooth);
  z-index: 1;
}

.btn-creative:hover {
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 96, 151, 0.3);
}

.btn-creative:hover::after {
  height: 100%;
}

.btn-creative:hover span,
.btn-creative:hover i {
  color: #fff;
}

.btn-creative:hover i:last-child {
  transform: translateX(5px);
}

/* Primary Button - Creative Fill Style */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition-smooth);
  box-shadow: none;
}

.btn-primary .btn-text,
.btn-primary .btn-icon,
.btn-primary span,
.btn-primary i .btn-primary svg {
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

.btn-primary::before {
  display: none;
}

.btn-primary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--primary-light) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  transition: height var(--transition-smooth);
  z-index: 1;
}

.btn-primary:hover {
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 96, 151, 0.3);
}

.btn-primary:hover::after {
  height: 100%;
}

.btn-primary:hover .btn-text,
.btn-primary:hover .btn-icon,
.btn-primary:hover span,
.btn-primary:hover i {
  color: #fff;
}
.btn-primary:hover svg {
  fill: #fff;
}

.btn-primary:hover .btn-icon i,
.btn-primary:hover .btn-icon svg {
  transform: translateX(3px);
}

@media screen and (max-width: 1025px) {
  .btn-primary:hover {
    box-shadow: 0 16px 30px rgba(27, 96, 151, 0.3);
  }
}

/* ================================================
   BUTTON SYSTEM - Consolidated Styles
   ================================================ */

/* Outline Buttons with Fill Animation */
.btn-outline,
.btn-outline-fill,
.nav-phone,
.cta-phone-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-300);
  border-radius: 60px;
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition-smooth);
}

.btn-outline span,
.btn-outline i,
.btn-outline-fill span,
.btn-outline-fill i,
.btn-outline-fill svg,
.nav-phone span,
.nav-phone i,
.nav-phone svg,
.cta-phone-modern span,
.cta-phone-modern i,
.cta-phone-modern svg {
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

.btn-outline::after,
.btn-outline-fill::after,
.nav-phone::after,
.cta-phone-modern::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--gray-600) 0%,
    var(--gray-700) 50%,
    var(--gray-800) 100%
  );
  transition: height var(--transition-smooth);
  z-index: -1;
}

.btn-outline:hover,
.btn-outline-fill:hover,
.nav-phone:hover,
.cta-phone-modern:hover {
  color: #fff;
  border-color: var(--gray-700);
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover::after,
.btn-outline-fill:hover::after,
.nav-phone:hover::after,
.cta-phone-modern:hover::after {
  height: 100%;
}

.btn-outline:hover span,
.btn-outline:hover i,
.btn-outline:hover svg,
.btn-outline-fill:hover span,
.btn-outline-fill:hover i,
.btn-outline-fill:hover svg,
.nav-phone:hover span,
.nav-phone:hover i,
.nav-phone:hover svg,
.cta-phone-modern:hover span,
.cta-phone-modern:hover i,
.cta-phone-modern:hover svg {
  color: #fff;
  fill: #fff;
}

/* Filled Primary Buttons */
.btn-filled-primary,
.btn-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(
    180deg,
    var(--primary-light) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-base);
  border: 2px solid var(--primary);
  border-radius: 60px;
  transition: all var(--transition-smooth);
  box-shadow: none;
}

.btn-filled-primary span,
.btn-filled-primary i,
.btn-filled-primary svg,
.btn-modern span,
.btn-modern i,
.btn-modern svg {
  color: #fff;
  fill: #fff;
}

.btn-filled-primary:hover,
.btn-modern:hover {
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-light) 50%,
    var(--primary) 100%
  );
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 96, 151, 0.4);
}

.btn-filled-primary:hover i,
.btn-modern:hover i {
  transform: translateX(5px);
}

/* Filled Secondary Buttons */
.btn-filled-secondary,
.cta-button-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(
    180deg,
    var(--secondary-light) 0%,
    var(--secondary) 50%,
    var(--secondary-dark) 100%
  );
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-base);
  border: 2px solid var(--secondary);
  border-radius: 60px;
  transition: all var(--transition-smooth);
}

.btn-filled-secondary span,
.btn-filled-secondary i,
.btn-filled-secondary svg,
.cta-button-modern span,
.cta-button-modern i,
.cta-button-modern svg {
  color: #fff;
  fill: #fff;
}

.btn-filled-secondary:hover,
.cta-button-modern:hover {
  background: linear-gradient(
    180deg,
    var(--secondary) 0%,
    var(--secondary-light) 50%,
    var(--secondary) 100%
  );
  border-color: var(--secondary-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(243, 156, 18, 0.4);
}

/* Nav Phone Button - Hidden, replaced by lang-switcher */
.nav-phone {
  display: none;
}

.nav-phone i {
  font-size: 0.85rem;
}

/* ================================================
   HEADER / NAVIGATION
   ================================================ */
.d-none-lg {
  display: none;
}

#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  transition: all var(--transition-normal);
}

/* Transparent Header State */
#site-nav.header-transparent {
  background: transparent;
}

#site-nav.header-transparent .nav-link {
  color: var(--light);
}

.page-id-8 #site-nav.header-transparent .nav-link,
.page-id-93 #site-nav.header-transparent .nav-link {
  color: var(--gray-700);
  text-decoration: none;
}

#site-nav.header-transparent .nav-phone {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.page-id-8 #site-nav.header-transparent .nav-phone,
.page-id-93 #site-nav.header-transparent .nav-phone {
  color: var(--gray-800);
  border-color: var(--gray-300);
}

#site-nav.header-transparent .nav-phone:hover {
  color: #fff;
  border-color: var(--gray-700);
  text-decoration: none;
}

.page-id-8 #site-nav.header-transparent .nav-phone:hover,
.page-id-93 #site-nav.header-transparent .nav-phone:hover {
  color: var(--primary);
  border-color: var(--primary);
}

#site-nav.scrolled .nav-phone {
  color: var(--gray-800);
  border-color: var(--gray-300);
}

/* #site-nav.header-transparent .hamburger,
#site-nav.header-transparent .hamburger::before,
#site-nav.header-transparent .hamburger::after {
  background: var(--white);
} */

.page-id-8 #site-nav.header-transparent .hamburger,
.page-id-8 #site-nav.header-transparent .hamburger::before,
.page-id-8 #site-nav.header-transparent .hamburger::after,
.page-id-93 #site-nav.header-transparent .hamburger,
.page-id-93 #site-nav.header-transparent .hamburger::before,
.page-id-93 #site-nav.header-transparent .hamburger::after {
  background: var(--gray-800);
}

/* Scrolled Header State - White */
#site-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#site-nav.scrolled.header-transparent .nav-link {
  color: var(--gray-700);
  text-decoration: none;
}

#site-nav.scrolled.header-transparent .nav-phone {
  color: var(--gray-800);
  border-color: var(--gray-300);
}

#site-nav.scrolled.header-transparent .hamburger,
#site-nav.scrolled.header-transparent .hamburger::before,
#site-nav.scrolled.header-transparent .hamburger::after {
  background: var(--gray-800);
}

.navbar {
  padding: var(--space-lg) 0;
  transition: padding var(--transition-normal);
}

#site-nav.scrolled .navbar {
  padding: var(--space-lg) 0;
}

.nav-container {
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition-normal);
}

#site-nav.scrolled .logo {
  color: var(--gray-900);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: var(--text-lg);
}

.logo-accent {
  color: var(--primary);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

/* Nav Items List */
.nav-items {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hide mobile-only elements on desktop */
.nav-mobile-header,
.nav-mobile-footer {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) 0;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  transition: color var(--transition-normal);
  position: relative;
}

/* Underline animation - slides in from left, out to right */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

#site-nav.scrolled .nav-link {
  color: var(--gray-700);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link i,
.nav-link svg {
  font-size: 0.7em;
  transition: transform var(--transition-normal);
}

.nav-item.has-dropdown:hover .nav-link i,
.nav-item.has-mega-menu:hover .nav-link i,
.nav-item.has-dropdown.active .nav-link i,
.nav-item.has-mega-menu.active .nav-link i {
  transform: rotate(180deg);
}
.nav-item.has-dropdown:hover .nav-link svg,
.nav-item.has-mega-menu:hover .nav-link svg,
.nav-item.has-dropdown.active .nav-link svg,
.nav-item.has-mega-menu.active .nav-link svg {
  transform: rotate(180deg);
}

/* ================================================
   MEGA MENU - 3 Column Layout
   ================================================ */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 900px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-item.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  min-height: 320px;
}

.mega-menu-col {
  padding: var(--space-xl);
  border-right: 1px solid var(--gray-100);
  padding: 15px;
}

.mega-menu-col:last-child {
  border-right: none;
  padding: 0;
}

.mega-menu-title {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gray-100);
}

.mega-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.mega-menu-links li a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  color: var(--gray-700);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  font-size: 15px;
}

.mega-menu-links li a:hover {
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.08) 0%,
    rgba(27, 96, 151, 0.04) 100%
  );
  color: var(--primary);
  transform: translateX(5px);
}

.mega-menu-links li a i,
.mega-menu-links li a svg {
  width: 18px;
  color: var(--primary);
  font-size: var(--text-sm);
}

/* Mega Menu Featured Column */
.mega-menu-featured {
  padding: var(--space-md) !important;
  display: flex;
  align-items: stretch;
}

/* .mega-featured-card {
  position: relative;
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
} */

.mega-featured-card {
  position: relative;
  padding: var(--space-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.mega-featured-card:hover {
  transform: translateY(-4px);
}

.mega-featured-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
  z-index: 2;
}

.mega-featured-badge i {
  font-size: 10px;
}

.mega-featured-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.mega-featured-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.mega-featured-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(27, 96, 151, 0.3) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.mega-featured-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mega-featured-content h4 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.mega-featured-content p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  flex: 1;
}

.mega-featured-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.08) 0%,
    rgba(243, 156, 18, 0.08) 100%
  );
  border-radius: 50%;
  pointer-events: none;
}

.mega-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 10px 18px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(27, 96, 151, 0.3);
  position: relative;
  overflow: hidden;
}

.mega-menu-btn::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;
}

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

.mega-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 96, 151, 0.4);
}

.mega-menu-btn i,
.mega-menu-btn svg {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.mega-menu-btn:hover i {
  transform: translateX(3px);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-cta {
  background: linear-gradient(
    180deg,
    var(--primary-light) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  color: #fff;
  border: 2px solid var(--primary);
  padding: var(--space-sm) var(--space-lg);
  box-shadow: none;
  transition: all var(--transition-smooth);
}

.nav-cta:hover {
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-light) 50%,
    var(--primary) 100%
  );
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 96, 151, 0.4);
  color: #fff;
}

.nav-cta.btn-primary::after {
  display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-normal);
}

#site-nav.scrolled .hamburger {
  background: var(--gray-900);
}

.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: inherit;
  position: absolute;
  left: 0;
  transition: all var(--transition-normal);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
  background: var(--gray-900);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--gray-900);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* ================================================
   SERVICES OVERVIEW (3 Cards)
   ================================================ */
.services-overview {
  position: relative;
  z-index: 2;
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transform: scale(1.1);
  transition:
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-bg {
  opacity: 1;
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(27, 96, 151, 0.25);
}

.service-card.featured {
  border: 2px solid var(--primary);
}

.service-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--primary);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  z-index: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 96, 151, 0.1);
  color: var(--primary);
  font-size: var(--text-2xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  border: 2px solid transparent;
  transition:
    background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.3s ease,
    border-color 0.4s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: #ffffff;
  transform: scale(1.08);
}

.service-title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-title {
  color: var(--white);
}

.service-desc {
  position: relative;
  z-index: 1;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-text {
  margin-bottom: var(--space-md);
}

.about-text .lead {
  font-size: var(--text-lg);
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 700;
}

.bold-txt {
  font-weight: 700;
}

.benefits-list li {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gray-100);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
}

.about-wrapper .about-cta {
  flex-direction: row;
  gap: var(--space-md);
  margin-top: 25px;
}

.about-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 20px;
}

.about-cta .cta-text {
  font-size: var(--text-base);
  color: var(--gray-700);
  text-decoration: none;
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-secondary {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  aspect-ratio: 4/3;
  background: var(--gradient-secondary);
  color: rgba(255, 255, 255, 0.5);
}

.image-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

.image-placeholder.large {
  aspect-ratio: 3/4;
}

.experience-badge {
  position: absolute;
  top: var(--space-xl);
  right: -20px;
  padding: var(--space-lg);
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-primary);
}

.exp-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  font-weight: 500;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: var(--text-sm);
  opacity: 0.9;
}

.specialist-section {
  position: relative;
  background: linear-gradient(135deg, #1b6097 0%, #0f2d44 100%);
  overflow: hidden;
}

.specialist-section::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");
  pointer-events: none;
}

.specialist-section .container {
  position: relative;
  z-index: 1;
}

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

.specialist-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px);
}

.specialist-icon i {
  font-size: 2rem;
  color: #f39c12;
}

.specialist-title {
  font-family: "Paytone One", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.specialist-title span {
  color: #f39c12;
}

.specialist-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.specialist-signature {
  font-family: "Montserrat", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #f39c12;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.specialist-signature::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #f39c12;
}

.specialist-section .deco-circle,
.erfahrung-vorteile-section .deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.specialist-section .deco-circle-1,
.erfahrung-vorteile-section .deco-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.specialist-section .deco-circle-2,
.erfahrung-vorteile-section .deco-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
}

@media (max-width: 768px) {
  .specialist-section {
    padding: 3rem 0;
  }

  .specialist-icon {
    width: 60px;
    height: 60px;
  }

  .specialist-icon i {
    font-size: 1.5rem;
  }

  .specialist-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (min-width: 768px) {
  .specialist-section {
    border-radius: 24px;
    width: var(--container-width);
    margin: 0 auto var(--space-4xl);
  }
}

/* ================================================
   PROCESS SECTION
   ================================================ */
.maler-v1-process {
  --v1-primary: #1b6097;
  --v1-accent-coral: #ff6b6b;
  --v1-accent-teal: #4ecdc4;
  --v1-accent-purple: #9b59b6;
  --v1-accent-green: #27ae60;
  --v1-cream: #fdf8f3;
  --v1-cream-dark: #f5ebe0;
  --v1-text: #2c3e50;
  --v1-text-light: #5a6c7d;
  --v1-white: #ffffff;
  background: linear-gradient(
    180deg,
    var(--v1-cream) 0%,
    var(--v1-cream-dark) 100%
  );
  position: relative;
}

.maler-v1-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.08) 0%,
    rgba(78, 205, 196, 0.08) 100%
  );
  color: var(--v1-primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.maler-v1-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: var(--space-3xl);
}

.maler-v1-process-grid::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--v1-accent-coral),
    var(--v1-accent-teal),
    var(--v1-accent-purple),
    var(--v1-accent-green)
  );
  border-radius: 2px;
  z-index: 1;
}

.maler-v1-process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.maler-v1-process-num {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: var(--v1-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(27, 96, 151, 0.12);
  position: relative;
}

.maler-v1-process-num::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  padding: 4px;
  background: var(--step-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.maler-v1-process-step:nth-child(1) .maler-v1-process-num {
  --step-gradient: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.maler-v1-process-step:nth-child(2) .maler-v1-process-num {
  --step-gradient: linear-gradient(135deg, #4ecdc4, #3dbdb5);
}

.maler-v1-process-step:nth-child(3) .maler-v1-process-num {
  --step-gradient: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.maler-v1-process-step:nth-child(4) .maler-v1-process-num {
  --step-gradient: linear-gradient(135deg, #27ae60, #229954);
}

.maler-v1-process-num span {
  font-family: "Paytone One", sans-serif;
  font-size: 2.5rem;
  background: var(--step-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.maler-v1-process-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 45px;
  height: 45px;
  background: var(--step-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v1-white);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.maler-v1-process-step h3 {
  font-size: 1.5rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.maler-v1-process-step p {
  font-size: 1rem;
  color: var(--v1-text-light);
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .maler-v1-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .maler-v1-process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .maler-v1-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   DETAILED SERVICES SECTION
   ================================================ */
.detailed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.detailed-text {
  margin-bottom: var(--space-xl);
}

.questions-box {
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-xl);
}

.questions-list {
  margin-bottom: var(--space-lg);
}

.questions-list li {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--gray-700);
  text-decoration: none;
}

.questions-list li i {
  color: var(--primary);
  margin-top: 4px;
}

.questions-answer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--primary);
}

.additional-info {
  padding: var(--space-lg);
  background: rgba(27, 96, 151, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

.detailed-visual {
  position: relative;
}

.visual-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ================================================
   QUALITY SECTION
   ================================================ */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.quality-visual {
  position: relative;
}

.quality-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.quality-intro {
  font-size: var(--text-lg);
  color: var(--gray-700);
  text-decoration: none;
  margin-bottom: var(--space-xl);
}

.quality-features {
  display: grid;
  gap: var(--space-md);
}

.quality-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.quality-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.feature-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Colorful gradient icons */
.quality-feature:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}
.quality-feature:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #4ecdc4, #3dbdb5);
}
.quality-feature:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.quality-feature:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}
.quality-feature:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, #27ae60, #229954);
}
.quality-feature:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.quality-feature p {
  margin: 0;
  color: var(--gray-700);
  text-decoration: none;
}

/* ================================================
   BENEFITS SECTION
   ================================================ */
.benefits.bg-gradient {
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-size: var(--text-xl);
  border-radius: var(--radius-full);
}

.benefit-card h3 {
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ================================================
   BENEFITS SECTION - CREATIVE REDESIGN
   ================================================ */
.benefits-section {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.benefits-gradient-left {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(243, 156, 18, 0.15) 0%,
    transparent 70%
  );
  animation: floatGradient 15s ease-in-out infinite;
}

.benefits-gradient-right {
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  animation: floatGradient 20s ease-in-out infinite reverse;
}

@keyframes floatGradient {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.benefits-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.benefits-section .section-header.light .section-tag,
.why-choose-section .section-header .section-tag {
  color: var(--secondary);
}

.benefits-section .section-header.light .section-tag::before,
.why-choose-section .section-header .section-tag::before {
  background: var(--secondary);
}

.benefits-section .section-header.light .section-title {
  color: var(--white);
}

.benefits-section .section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.benefits-showcase {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

/* Featured Benefit Card */
.benefit-featured {
  position: relative;
}

.benefit-featured-inner {
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.benefit-featured-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
}

.benefit-featured-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  border-radius: var(--radius-xl);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--space-lg);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.benefit-featured-content h3 {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.benefit-featured-content p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.benefit-featured-stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.benefit-featured-stats .stat {
  text-align: center;
}

.benefit-featured-stats .stat-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--secondary);
}

.benefit-featured-stats .stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* Benefits Grid Modern */
.benefits-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.benefit-item {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  border-color: rgba(243, 156, 18, 0.3);
}

.benefit-item-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  font-size: var(--text-xl);
  color: var(--secondary);
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-item-icon {
  background: var(--secondary);
  color: var(--white);
}

.benefit-item h4 {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.benefit-item p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* Benefits Responsive */
@media (max-width: 1024px) {
  .benefits-showcase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .benefits-grid-modern {
    grid-template-columns: 1fr;
  }

  .benefit-featured-inner {
    padding: var(--space-xl);
  }

  .benefit-featured-stats {
    justify-content: center;
    gap: var(--space-md);
  }
}

/* ================================================
   CONTACT SECTION - PREMIUM REDESIGN
   ================================================ */
.contact-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Contact Info Premium */
.contact-info-premium {
  position: sticky;
  top: 120px;
}

.contact-info-header {
  margin-bottom: var(--space-2xl);
}

.contact-info-header .section-tag {
  margin-bottom: var(--space-md);
}

.contact-title {
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.contact-subtitle {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.7;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(27, 96, 151, 0.1);
  transform: translateX(5px);
}

.contact-card.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.1) 0%,
    rgba(27, 96, 151, 0.05) 100%
  );
  border-radius: var(--radius-lg);
  font-size: var(--text-xl);
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-card.whatsapp .contact-card-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-card.whatsapp:hover .contact-card-icon {
  background: #25d366;
  color: var(--white);
}

.contact-card-content {
  flex: 1;
}

.contact-card-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.contact-card-value {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-800);
}

.contact-card-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--gray-500);
  font-size: var(--text-sm);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.contact-card.location {
  cursor: default;
}

.contact-card.location:hover {
  transform: none;
  border-color: var(--gray-200);
  box-shadow: none;
}

/* Contact Hours */
.contact-hours {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(
    135deg,
    rgba(243, 156, 18, 0.1) 0%,
    rgba(243, 156, 18, 0.05) 100%
  );
  border: 1px solid rgba(243, 156, 18, 0.2);
  border-radius: var(--radius-xl);
}

.hours-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  font-size: var(--text-lg);
  color: var(--white);
}

.hours-content {
  flex: 1;
}

.hours-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  margin-bottom: 2px;
}

.hours-value {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-900);
}

/* contact form styling */
.contact-form-wrapper .contact-form {
  margin: 0 !important;
}

/* Labels */
.contact-form-wrapper .wpforms-container .wpforms-field-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

/* Inputs + Textareas */
.service-detail-contact #wpforms-form-116 .wpforms-field input,
.service-detail-contact #wpforms-form-116 .wpforms-field textarea {
  border: none !important;
}

.contact-form-wrapper .wpforms-container .wpforms-field input {
  min-height: 60px;
}

.contact-form-wrapper .wpforms-container .wpforms-field input,
.contact-form-wrapper .wpforms-container .wpforms-field textarea {
  width: 100%;
  padding: 14px 20px !important;
  border: 2px solid #e2e8f0 !important;
  border-radius: 14px !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  background: #f8fafc !important;
  transition: all 0.3s ease !important;
  color: var(--dark) !important;
  box-shadow: none !important;
}

.loc-v1-form-card.contact-form-wrapper .wpforms-container .wpforms-field input,
.loc-v1-form-card.contact-form-wrapper
  .wpforms-container
  .wpforms-field
  textarea {
  background: var(--light) !important;
  border: 2px solid var(--gray-200) !important;
}

/* Focus state */
.contact-form-wrapper .wpforms-container input.wpforms-field-medium:focus,
.contact-form-wrapper .wpforms-container input.wpforms-field-large:focus,
.contact-form-wrapper .wpforms-container textarea.wpforms-field-medium:focus,
.contact-form-wrapper .wpforms-container textarea.wpforms-field-large:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(27, 96, 151, 0.1) !important;
}

/* Textarea height */
.contact-form-wrapper .wpforms-container textarea.wpforms-field-medium,
.contact-form-wrapper .wpforms-container textarea.wpforms-field-large {
  resize: vertical !important;
  min-height: 120px !important;
}

/* Checkbox / privacy text – wrap in a custom class in your template:
   <div class="wpforms-field ... checkbox-field"> */
.contact-form-wrapper .wpforms-container .checkbox-field .wpforms-field-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer !important;
  font-size: 0.9rem !important;
  color: var(--gray-600) !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* Hide native checkbox (use WPForms checkbox field or add custom input yourself) */
.contact-form-wrapper
  .wpforms-container
  .checkbox-field
  input[type="checkbox"] {
  display: none !important;
}

/* Custom checkmark box (add a span.checkmark in the description/HTML field) */
.contact-form-wrapper .wpforms-container .checkbox-field .checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  background: #f8fafc;
}

/* Checked state – match your static form behavior */
.contact-form-wrapper
  .wpforms-container
  .checkbox-field
  input[type="checkbox"]:checked
  + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.contact-form-wrapper
  .wpforms-container
  .checkbox-field
  input[type="checkbox"]:checked
  + .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.7rem;
}

/* Links in privacy text */
.contact-form-wrapper .wpforms-field a {
  color: var(--secondary) !important;
  text-decoration: underline;
}

.contact-form-wrapper .wpforms-container .checkbox-field a:hover {
  color: var(--primary-dark) !important;
}

.contact-form-wrapper .contact-form .wpforms-submit {
  width: 100%;
  min-height: 60px;
  font-weight: 600;
  justify-content: center;
  position: relative !important;
  padding: var(--space-md) var(--space-xl) !important;
  font-family: var(--font-primary);
  font-size: var(--text-base) !important;
  background: transparent !important;
  color: var(--primary) !important;
  border-radius: 60px !important;
  border: 2px solid var(--primary) !important;
  overflow: hidden !important;
  transition: all var(--transition-smooth) !important;
  box-shadow: none !important;
}

.contact-form-wrapper .contact-form .wpforms-submit:hover {
  color: #fff !important;
  border-color: var(--primary) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 40px rgba(27, 96, 151, 0.3) !important;
}

.contact-form-wrapper .contact-form .wpforms-submit:hover::after {
  height: 100%;
}

.contact-form-wrapper .contact-form .wpforms-submit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--primary-light) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  transition: height var(--transition-smooth);
  z-index: -1;
}

/* Responsive from your original CSS */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .contact-info-premium {
    position: relative;
    top: 0;
  }
}

@media screen and (min-width: 768px) {
  .loc-v1-form-card.contact-form-wrapper #wpforms-116-field_1-container,
  .loc-v1-form-card.contact-form-wrapper #wpforms-116-field_2-container {
    width: 49%;
    display: inline-block;
  }

  .loc-v1-form-card.contact-form-wrapper #wpforms-116-field_2-container {
    float: right;
  }
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-wrapper {
  margin-bottom: var(--space-3xl);
}

.testimonials-swiper {
  padding: var(--space-lg) var(--space-sm);
}

.testimonial-card {
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  /* box-shadow: var(--shadow-card); */
  text-align: center;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  color: #ffc107;
  font-size: var(--text-lg);
}

.testimonial-text {
  font-size: var(--text-lg);
  color: var(--gray-700);
  text-decoration: none;
  font-style: italic;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-400);
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
}

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

.author-info h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.author-info span {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* Swiper Pagination */
.swiper-pagination {
  position: relative;
  margin-top: var(--space-xl);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-300);
  opacity: 1;
  transition: all var(--transition-normal);
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: var(--radius-full);
  background: var(--primary);
}

/* ================================================
   FULL SERVICES GRID (6 Cards)
   ================================================ */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Service Card Full - Creative Design */
.service-card-full {
  position: relative;
  padding: 35px 30px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all var(--transition-slow);
  overflow: hidden;
  border: 1px solid rgba(27, 96, 151, 0.08);
}

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

.service-card-full:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(27, 96, 151, 0.18);
  border-color: rgba(27, 96, 151, 0.15);
}

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

/* Service Number Background */
.service-card-full .service-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(27, 96, 151, 0.06);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 0;
}

.service-card-full:hover .service-number {
  color: rgba(27, 96, 151, 0.12);
  transform: scale(1.1);
}

/* Service Icon Background */
.service-card-full .service-icon-bg {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border-radius: 20px;
  transition: all var(--transition-smooth);
  z-index: 1;
}

.service-card-full .service-icon-bg i {
  font-size: 2rem;
  color: #fff;
  transition: transform 0.4s ease;
}

.service-card-full:hover .service-icon-bg {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(27, 96, 151, 0.35);
}

.service-card-full:hover .service-icon-bg i {
  transform: scale(1.1);
}

/* Icon Color Variations */
.service-card-full .service-icon-bg.secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.service-card-full .service-icon-bg.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-card-full .service-icon-bg.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.service-card-full .service-icon-bg.cyan {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.service-card-full .service-icon-bg.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.service-card-full .service-icon-bg.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Legacy card-icon support */
.service-card-full .card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  font-size: 2rem;
  border-radius: 20px;
  transition: all var(--transition-smooth);
  z-index: 1;
}

.service-card-full:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(27, 96, 151, 0.35);
}

.service-card-full h3 {
  position: relative;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  z-index: 1;
}

.service-card-full p {
  position: relative;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  z-index: 1;
}

/* Services CTA */
.services-cta {
  text-align: center;
  margin-top: 50px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.card-link i {
  transition: transform var(--transition-normal);
}

.card-link:hover i {
  transform: translateX(5px);
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--dark);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-paint-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-2xl);
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  font-weight: 500;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-normal);
}

.cta-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px -10px rgba(169, 5, 14, 0.5);
}

.cta-phone i {
  animation: phoneRing 1s ease-in-out infinite;
}

@keyframes phoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20%,
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* ================================================
   SERVICE AREAS SECTION
   ================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.areas-intro {
  font-size: var(--text-lg);
  color: var(--gray-700);
  text-decoration: none;
  margin-bottom: var(--space-xl);
}

.regions-list {
  margin-bottom: var(--space-xl);
}

.region {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.region:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.region i {
  color: var(--primary);
  margin-top: 4px;
}

.areas-tagline {
  font-size: var(--text-md);
  color: var(--gray-800);
  padding: var(--space-lg);
  background: rgba(27, 96, 151, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
}

.service-types h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.service-types ul li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--gray-700);
  text-decoration: none;
}

.service-types ul li i {
  color: var(--primary);
}

/* Berlin Map */
.berlin-map {
  position: sticky;
  top: 120px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  aspect-ratio: 1;
  background: var(--gradient-secondary);
  color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.map-placeholder i {
  font-size: 5rem;
  color: var(--primary);
}

.map-placeholder span {
  font-size: var(--text-lg);
  font-weight: 500;
}

/* ================================================
   BERLIN DISTRICTS SECTION
   ================================================ */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.districts-column {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.districts-deco {
  position: absolute;
  top: 8%;
  left: 0;
  max-width: 350px;
  height: auto;
}

@media (max-width: 1024px) {
  .districts-deco {
    top: 2vh;
    max-width: 200px;
  }
}

.district-link {
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  color: var(--gray-700);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.district-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  font-size: var(--text-lg);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  font-weight: 600;
  color: var(--gray-800);
  transition: color var(--transition-normal);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--gray-600);
  line-height: 1.8;
}

.faq-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.faq-left {
  flex: 0 0 40%;
  max-width: 40%;
  position: sticky;
  top: 120px;
}

.faq-right {
  flex: 0 0 55%;
  max-width: 55%;
}

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

.faq-left .section-header.center {
  text-align: left;
}

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

.faq-intro-text {
  font-size: var(--text-lg);
  margin-bottom: 1rem;
}

.faq-intro-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .faq-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .faq-left,
  .faq-right {
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
  }

  .faq-left .section-header,
  .faq-left .section-header.center {
    text-align: center;
  }

  .faq-intro {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq-intro {
    padding: 0 1rem;
  }
}

/* FAQ Answer Smooth Transition */
section.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
}

section.faq .faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease 0.1s;
}

section.faq .faq-answer p {
  transform: translateY(-10px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

section.faq .faq-item.active .faq-answer p {
  transform: translateY(0);
}

/* FAQ Item Color States */
section.faq .faq-item:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* Active State */
section.faq .faq-item.active {
  background: linear-gradient(
    135deg,
    var(--primary-light, #2d7ab8) 0%,
    var(--primary, #1b6097) 100%
  );
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(27, 96, 151, 0.3);
}

section.faq .faq-item.active .faq-question {
  color: #ffffff;
}

section.faq .faq-item.active .faq-question:hover {
  color: #ffffff;
}

section.faq .faq-item.active .faq-question i {
  color: #ffffff;
  transform: rotate(45deg);
}

section.faq .faq-item.active .faq-answer p {
  color: rgba(255, 255, 255, 0.9);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
}

.contact-intro {
  margin-bottom: var(--space-xl);
  color: var(--gray-600);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 96, 151, 0.1);
  color: var(--primary);
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
}

.contact-text .label {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-xs);
}

.contact-text a {
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition-normal);
}

.contact-text a:hover {
  color: var(--primary);
}

.contact-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--gray-600);
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--gray-50);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 96, 151, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #ef4444;
}

.error-message {
  display: none;
  font-size: var(--text-sm);
  color: #ef4444;
  margin-top: var(--space-xs);
}

.form-group.has-error .error-message {
  display: block;
}

/* Checkbox */
.checkbox-group {
  margin-bottom: var(--space-lg);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: var(--text-xs);
  color: var(--white);
}

.checkbox-label span:last-child {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

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

/* ================================================
   FORM VALIDATION STYLES
   ================================================ */
.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-group:last-of-type {
  margin-bottom: 20px;
}

.checkbox-group {
  margin-bottom: 24px;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #dc2626;
  background-color: rgba(220, 38, 38, 0.02);
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error {
  position: absolute;
  left: 0;
  bottom: -22px;
  font-size: 0.8rem;
  color: #dc2626;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.field-error::before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
}

.checkbox-group .field-error {
  position: relative;
  bottom: auto;
  margin-top: 8px;
}

/* Shake Animation */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Form Success Overlay */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: inherit;
  animation: fadeIn 0.4s ease;
}

.form-success-overlay .success-content {
  text-align: center;
  padding: 2rem;
}

.form-success-overlay .success-icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 1rem;
  animation: bounceIn 0.6s ease;
}

.form-success-overlay h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-success-overlay p {
  color: var(--gray-600);
  font-size: 1rem;
}

.form-success-overlay.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-main {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-normal);
}

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

.footer-bottom {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-xs);
}

.footer-bottom .credits {
  margin-bottom: 0;
}

.footer-bottom .credits i {
  color: var(--primary);
}

/* ================================================
   FLOATING ELEMENTS - Ultra Modern Design
   ================================================ */

/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: var(--z-dropdown);
}

/* WhatsApp Float - Modern Interactive Design */
.whatsapp-float {
  position: relative;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  font-size: 28px;
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.4),
    0 0 0 0 rgba(37, 211, 102, 0.4),
    inset 0 -4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: pointer;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05) rotate(5deg);
  border-radius: 25px;
  box-shadow:
    0 15px 50px rgba(37, 211, 102, 0.5),
    0 0 0 8px rgba(37, 211, 102, 0.15),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover::before {
  opacity: 1;
}

.whatsapp-float:hover::after {
  transform: scale(1);
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(0.98);
}

.whatsapp-float i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: scale(1.15) rotate(-5deg);
  animation: whatsappWiggle 0.5s ease;
}

@keyframes whatsappWiggle {
  0%,
  100% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.2) rotate(5deg);
  }
  50% {
    transform: scale(1.15) rotate(-5deg);
  }
  75% {
    transform: scale(1.2) rotate(3deg);
  }
}

/* WhatsApp Pulse Rings */
.whatsapp-float .pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 3px solid #25d366;
  border-radius: 20px;
  animation: whatsappPulse 2s ease-out infinite;
  z-index: -1;
}

.whatsapp-float .pulse::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid #25d366;
  border-radius: 23px;
  animation: whatsappPulse 2s ease-out infinite 0.5s;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* WhatsApp Tooltip */
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--dark);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float .wa-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Back to Top - Below WhatsApp */
#back-to-top {
  position: relative;
  width: 60px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--gray-700);
  text-decoration: none;
  font-size: var(--text-lg);
  border-radius: 15px;
  box-shadow:
    0 5px 25px rgba(0, 0, 0, 0.1),
    inset 0 -2px 5px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 2px solid var(--gray-200);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#back-to-top:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-5px) scale(1.1);
  box-shadow:
    0 10px 35px rgba(169, 5, 14, 0.35),
    0 0 0 4px rgba(27, 96, 151, 0.1);
}

#back-to-top:hover i {
  animation: bounceUp 0.6s ease infinite;
}

@keyframes bounceUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

#back-to-top:active {
  transform: translateY(-2px) scale(1.05);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: var(--z-modal);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ================================================
   SELECTION STYLES
   ================================================ */
::selection {
  background: var(--primary);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
}

/* ================================================
   SCROLLBAR STYLES
   ================================================ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-400) var(--gray-100);
}

/* ================================================
   VIDEO SHOWCASE SECTION - Ultra Modern
   ================================================ */
.video-showcase {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--dark);
  overflow: hidden;
}

.video-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(169, 5, 14, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(30, 136, 229, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.video-showcase .section-header.light .section-title {
  color: var(--white);
}

.video-showcase .section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* .video-frame {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--gray-900);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
} */

/* Video Frame Decorations */
.video-frame-decos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.frame-deco {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.5;
}

.frame-deco-1 {
  top: -50px;
  left: -50px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(60px);
}

.frame-deco-2 {
  bottom: -50px;
  right: -50px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(60px);
}

/* Video Play Button Overlay (if custom) */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.play-btn {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-size: 40px;
  border-radius: 50%;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn i {
  margin-left: 8px;
}

.video-play-overlay:hover .play-btn {
  transform: scale(1.15);
  box-shadow: 0 15px 60px rgba(169, 5, 14, 0.4);
  background: var(--primary);
  color: var(--white);
}

/* ================================================
   PAINT COLOR SHOWCASE - Impressive Animation
   ================================================ */
.color-showcase {
  position: relative;
  padding: var(--space-5xl) 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  overflow: hidden;
}

.color-showcase::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(27, 96, 151, 0.1) 0%,
    transparent 70%
  );
  animation: floatBg 20s ease-in-out infinite;
}

.color-showcase::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(30, 136, 229, 0.08) 0%,
    transparent 70%
  );
  animation: floatBg 25s ease-in-out infinite reverse;
}

@keyframes floatBg {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 50px) rotate(5deg);
  }
  50% {
    transform: translate(0, 100px) rotate(0deg);
  }
  75% {
    transform: translate(-50px, 50px) rotate(-5deg);
  }
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.color-showcase-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.color-showcase-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: transform 0.5s ease;
}

.color-showcase-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.color-showcase-item:hover::after {
  width: 300%;
  height: 300%;
  opacity: 0;
}

.color-showcase-item:hover {
  transform: translateY(-15px) scale(1.05) rotate(3deg);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.2),
    0 0 0 4px rgba(255, 255, 255, 0.8);
}

.color-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.color-showcase-item:hover .color-info {
  transform: translateY(0);
}

.color-info h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.color-info span {
  font-size: var(--text-sm);
  opacity: 0.8;
}

/* Paint Drip Effect */
.color-drip {
  position: absolute;
  top: -20px;
  width: 30px;
  height: 80px;
  border-radius: 0 0 50% 50%;
  z-index: 10;
}

.color-drip::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: inherit;
  border-radius: 50%;
}

/* ================================================
   PAINT BRUSH REVEAL SECTION
   ================================================ */
.paint-reveal-section {
  position: relative;
  overflow: hidden;
}

.paint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 10;
  transform-origin: right center;
}

/* Brush Canvas Effect */
.brush-canvas {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--dark);
  clip-path: circle(0% at 50% 50%);
}

.brush-canvas-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

/* ================================================
   PAINT DROPS ANIMATION SECTION
   ================================================ */
.paint-drops-section {
  position: relative;
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  overflow: hidden;
}

.paint-drops-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.paint-drop {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.6;
}

.paint-drop.drop-1 {
  width: 80px;
  height: 100px;
  background: linear-gradient(135deg, #1b6097 0%, #144a75 100%);
  top: 10%;
  left: 5%;
}

.paint-drop.drop-2 {
  width: 60px;
  height: 75px;
  background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
  top: 60%;
  left: 10%;
}

.paint-drop.drop-3 {
  width: 100px;
  height: 120px;
  background: linear-gradient(135deg, #c91017 0%, #a9050e 100%);
  top: 20%;
  right: 8%;
}

.paint-drop.drop-4 {
  width: 50px;
  height: 60px;
  background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
  bottom: 15%;
  right: 15%;
}

.paint-drop.drop-5 {
  width: 70px;
  height: 85px;
  background: linear-gradient(135deg, #2d7ab8 0%, #1b6097 100%);
  bottom: 30%;
  left: 20%;
}

/* ================================================
   3D ROTATING PAINT CAN SECTION
   ================================================ */
.paint-can-showcase {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--white);
  overflow: hidden;
}

.paint-can-3d {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.paint-can-wrapper {
  position: relative;
  width: 200px;
  height: 250px;
  transform-style: preserve-3d;
  animation: rotateCan 10s ease-in-out infinite;
}

@keyframes rotateCan {
  0%,
  100% {
    transform: rotateY(0deg) rotateX(10deg);
  }
  25% {
    transform: rotateY(90deg) rotateX(5deg);
  }
  50% {
    transform: rotateY(180deg) rotateX(10deg);
  }
  75% {
    transform: rotateY(270deg) rotateX(5deg);
  }
}

.paint-can-face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(169, 5, 14, 0.3);
}

/* ================================================
   MORPHING BLOB BACKGROUND
   ================================================ */
.morphing-section {
  position: relative;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.morph-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.2) 0%,
    rgba(30, 136, 229, 0.2) 100%
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphBlob 15s ease-in-out infinite;
  filter: blur(40px);
}

.morph-blob.blob-1 {
  top: -200px;
  left: -200px;
}

.morph-blob.blob-2 {
  bottom: -200px;
  right: -200px;
  animation-delay: -7s;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.2) 0%,
    rgba(27, 96, 151, 0.2) 100%
  );
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    transform: rotate(180deg) scale(1.1);
  }
  75% {
    border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
  }
}

/* ================================================
   PARALLAX PAINT ELEMENTS
   ================================================ */
.parallax-paint {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.parallax-paint svg,
.parallax-paint i {
  font-size: 4rem;
  opacity: 0.1;
  color: var(--primary);
}

/* ================================================
   HOVER PAINT SPLASH EFFECT
   ================================================ */
.splash-on-hover {
  position: relative;
  overflow: hidden;
}

.splash-on-hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  opacity: 0;
}

.splash-on-hover:hover::before {
  width: 400%;
  height: 400%;
  opacity: 0.1;
}

/* ================================================
   TEXT PAINT STROKE EFFECT
   ================================================ */
.paint-text {
  position: relative;
  display: inline-block;
}

.paint-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  z-index: -1;
  transform: skewX(-5deg);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.paint-text:hover::after {
  height: 100%;
  opacity: 0.15;
}

/* ================================================
   ANIMATED PAINT ROLLER
   ================================================ */
.paint-roller-section {
  position: relative;
  overflow: hidden;
}

.animated-roller {
  position: absolute;
  top: 0;
  left: -200px;
  width: 200px;
  height: 100%;
  display: flex;
  align-items: center;
  animation: rollAcross 8s linear infinite;
}

.roller-icon {
  font-size: 4rem;
  color: var(--primary);
  transform: rotate(90deg);
}

.paint-trail {
  position: absolute;
  left: 100px;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), transparent);
  animation: trailExpand 8s linear infinite;
}

@keyframes rollAcross {
  0% {
    left: -200px;
  }
  100% {
    left: 100%;
  }
}

@keyframes trailExpand {
  0% {
    width: 0;
    opacity: 0.3;
  }
  50% {
    width: 50%;
    opacity: 0.1;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}

/* ================================================
   STAGGER CARDS ANIMATION
   ================================================ */
.stagger-container .stagger-item {
  opacity: 0;
  transform: translateY(50px);
}

.stagger-container.animate .stagger-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stagger-container.animate .stagger-item:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger-container.animate .stagger-item:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger-container.animate .stagger-item:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger-container.animate .stagger-item:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger-container.animate .stagger-item:nth-child(5) {
  transition-delay: 0.5s;
}
.stagger-container.animate .stagger-item:nth-child(6) {
  transition-delay: 0.6s;
}

/* ================================================
   GLOWING BORDER EFFECT
   ================================================ */
.glow-border {
  position: relative;
}

.glow-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary),
    var(--accent),
    var(--primary),
    var(--accent)
  );
  background-size: 400% 400%;
  border-radius: inherit;
  z-index: -1;
  animation: glowRotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-border:hover::before {
  opacity: 1;
}

@keyframes glowRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ================================================
   CTA BANNER MODERN REDESIGN
   ================================================ */
.cta-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-brush-stroke {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cta-brush-1 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23FF6B35' fill-opacity='0.1' d='M0,192L48,186.7C96,181,192,171,288,181.3C384,192,480,224,576,218.7C672,213,768,171,864,149.3C960,128,1056,128,1152,149.3C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat bottom center;
  background-size: cover;
}

.cta-brush-2 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231E88E5' fill-opacity='0.08' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,128C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat top center;
  background-size: cover;
}

.cta-geometric {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.cta-geometric.geo-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  filter: blur(60px);
}

.cta-geometric.geo-2 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  filter: blur(40px);
}

.cta-content-modern {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(27, 96, 151, 0.2);
  border: 1px solid rgba(169, 5, 14, 0.3);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.cta-content-modern h2 {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-content-modern p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
}

.cta-banner-modern .cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.cta-phone-btn {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(169, 5, 14, 0.3);
  transition: all var(--transition-normal);
}

.cta-phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(169, 5, 14, 0.4);
}

.phone-icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-size: var(--text-xl);
}

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

.phone-label {
  display: block;
  font-size: var(--text-sm);
  opacity: 0.9;
}

.phone-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 500;
}

.cta-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-normal);
}

.cta-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp-btn i {
  font-size: var(--text-xl);
}

/* ================================================
   COLOR PALETTE SECTION - NEW DESIGN
   ================================================ */
.color-palette-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  overflow: hidden;
}

.palette-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

.palette-main {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.palette-brush-stroke {
  max-width: 100%;
  height: 80px;
  margin-bottom: var(--space-xl);
}

.palette-brush-stroke svg {
  width: 100%;
  height: 100%;
}

.palette-info h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.palette-info p {
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
}

.swatch-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.swatch-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.swatch-color {
  height: 120px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.swatch-info {
  padding: var(--space-md);
  text-align: center;
}

.swatch-name {
  display: block;
  font-weight: 500;
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.swatch-desc {
  display: block;
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* ================================================
   FLOATING CALL BUTTON
   ================================================ */
.call-float {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  font-size: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(27, 96, 151, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.call-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(27, 96, 151, 0.5);
}

.call-float i {
  animation: phoneShake 2s ease-in-out infinite;
}

@keyframes phoneShake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(-15deg);
  }
  10% {
    transform: rotate(15deg);
  }
  15% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(10deg);
  }
  25% {
    transform: rotate(0deg);
  }
}

.call-tooltip {
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--dark);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.call-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--dark);
}

.call-float:hover .call-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ================================================
   FOOTER MODERN REDESIGN
   ================================================ */
.footer-modern {
  position: relative;
  background: linear-gradient(180deg, var(--dark) 0%, #0a0a15 100%);
  color: var(--white);
}

.footer-main {
  padding: var(--space-5xl) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

/* Footer Decorative Image */
.footer-deco-img {
  position: absolute;
  height: 120px;
  width: auto;
  right: 4%;
  top: 4%;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}

.footer-grid-modern {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}

.footer-logo-modern {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: var(--text-lg);
  transition: all var(--transition-normal);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col-modern h4 {
  width: fit-content;
  font-size: var(--text-lg);
  letter-spacing: 0.6px;
  color: var(--white);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col-modern h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.footer-links-modern li {
  margin-bottom: var(--space-md);
}

.footer-links-modern li:last-child {
  margin-bottom: 0;
}

.footer-links-modern a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  transition: all var(--transition-normal);
}

.footer-links-modern a i {
  font-size: 10px;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.footer-links-modern a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-links-modern a:hover i {
  transform: translateX(3px);
}

/* .footer-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
} */

.contact-card-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: 25px;
  /* padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  color: var(--white);
  transition: all var(--transition-normal);
}

.contact-card-item:last-child {
  border-bottom: none;
}

a.contact-card-item:hover {
  transform: translateX(5px);
}

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
}

.contact-value {
  font-weight: 500;
  font-size: var(--text-base);
}

.footer-bottom-modern {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-normal);
}

.footer-legal a:hover {
  color: var(--light);
}

.footer-legal .divider {
  color: rgba(255, 255, 255, 0.3);
}

/* ================================================
   HERO IMAGE STYLES
   ================================================ */
.hero-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

/* ================================================
   ABOUT IMAGE STYLES
   ================================================ */
.about-image-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

.about-image-secondary img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ================================================
   QUALITY IMAGE STYLES
   ================================================ */
.quality-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

/* ================================================
   VISUAL CARD IMAGE STYLES
   ================================================ */
.visual-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

/* ================================================
   BERLIN MAP IMAGE STYLES
   ================================================ */
.berlin-map img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

/* ================================================
   AOS FIX - Ensure elements are visible after animation
   ================================================ */
[data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* Fix for elements that may get stuck */
.aos-init.aos-animate {
  opacity: 1;
}

/* Ensure section visibility */
.section {
  opacity: 1;
  visibility: visible;
}

/* Video section visibility */
.video-showcase .video-wrapper {
  opacity: 1;
}

/* About section images */
.about-visual,
.about-image-main,
.about-image-secondary {
  opacity: 1;
}

/* Ensure all images are visible */
.quality-image,
.visual-card,
.berlin-map {
  opacity: 1;
}

/* ================================================
   LOGO STYLES
   ================================================ */
.logo-img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.header.scrolled .logo-img {
  height: 45px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
}

/* ================================================
   HERO SECTION - MODERN AESTHETIC DESIGN
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 0 var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Hero Content Card - Glass Morphism */
.hero-content-card {
  position: relative;
  max-width: 580px;
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Card Accent Line */
.hero-card-accent {
  position: absolute;
  top: 0;
  left: var(--space-2xl);
  right: var(--space-2xl);
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 0 0 4px 4px;
}

/* Card Glow Effect */
.hero-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(27, 96, 151, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.1) 0%,
    rgba(27, 96, 151, 0.05) 100%
  );
  border: 1px solid rgba(27, 96, 151, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.hero-badge i {
  color: var(--secondary);
}

/* Hero Title */
.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-title-main {
  display: block;
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.hero-title-sub {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

/* Rotating Text Animation */
.rotating-text-wrapper {
  display: block;
  position: relative;
  height: 100%;
}

.rotating-text {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.rotating-text.active {
  opacity: 1;
  transform: translateY(0);
}

.rotating-text.exit-up {
  opacity: 0;
  transform: translateY(-100%);
}

/* Hero Text */
.hero-text {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* Hero Buttons - Creative Fill Animation */
.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: 60px;
  transition: all var(--transition-smooth);
  overflow: hidden;
  z-index: 1;
}

.hero-btn span,
.hero-btn i {
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

/* Hero Button Primary - Filled by default */
.hero-btn-primary {
  background: linear-gradient(
    180deg,
    var(--primary-light) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: none;
}

.hero-btn-primary span,
.hero-btn-primary i {
  color: #fff;
}

.hero-btn-primary:hover {
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-light) 50%,
    var(--primary) 100%
  );
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 96, 151, 0.4);
}

/* Hero Button Secondary - Uses outline button fill animation */
.hero-btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-300);
}

.hero-btn-secondary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--gray-600) 0%,
    var(--gray-700) 50%,
    var(--gray-800) 100%
  );
  transition: height var(--transition-smooth);
  z-index: 1;
}

.hero-btn-secondary:hover {
  color: #fff;
  border-color: var(--gray-700);
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary:hover::after {
  height: 100%;
}

.hero-btn-secondary:hover span,
.hero-btn-secondary:hover i {
  color: #fff;
}

.hero-btn-secondary:hover svg {
  fill: #fff;
  z-index: 2;
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.trust-badge i {
  color: var(--secondary);
  font-size: var(--text-base);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: 10;
}

.scroll-text {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-800);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.scroll-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  animation: bounceDown 2s infinite;
  transition: all 0.3s ease;
}

.scroll-arrow i,
.scroll-arrow svg {
  font-size: var(--text-sm);
  color: var(--primary);
  fill: var(--primary);
}

.hero-scroll:hover .scroll-arrow {
  background: var(--primary);
  box-shadow: 0 8px 25px rgba(27, 96, 151, 0.3);
}

.hero-scroll:hover .scroll-arrow svg,
.hero-scroll:hover .scroll-arrow i {
  color: var(--white);
  fill: var(--white);
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Hero Responsive */
@media (max-width: 767px) {
  :root {
    --container-width: min(100%, 1350px);
  }

  .hero-content-wrapper {
    padding: 100px var(--space-md) var(--space-2xl);
    padding-top: 60px !important;
  }

  .hero-content-card {
    padding: var(--space-xl) var(--space-lg);
    max-width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    margin-bottom: 0;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-md) var(--space-md);
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero-scroll {
    bottom: 3.5rem;
  }
}

@media (max-width: 380px) {
  .scroll-text {
    display: none;
  }

  .hero-scroll {
    bottom: 3.5rem;
  }
}

/* ================================================
   SERVICE ICON COLORS - Individual Colors
   ================================================ */
.service-card .service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-normal);
}

.service-card .service-icon i,
.service-card .service-icon svg {
  font-size: 2rem;
  color: var(--white);
  fill: var(--white);
}

/* Individual service icon colors */
.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #1b6097 0%, #144a75 100%);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #a9050e 0%, #8a040b 100%);
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

/* Card Icon Colors for Services Grid */
.service-card-full .card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  transition: all var(--transition-normal);
}

.service-card-full .card-icon i,
.service-card-full .card-icon svg {
  font-size: 1.75rem;
  color: var(--white);
  fill: var(--white);
}

.service-card-full:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #1b6097 0%, #2d7ab8 100%);
}
.service-card-full:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}
.service-card-full:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}
.service-card-full:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
}
.service-card-full:nth-child(5) .card-icon {
  background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%);
}
.service-card-full:nth-child(6) .card-icon {
  background: linear-gradient(135deg, #a9050e 0%, #c91017 100%);
}
.service-card-full:nth-child(7) .card-icon {
  background: linear-gradient(135deg, #0097a7 0%, #00838f 100%);
}
.service-card-full:nth-child(8) .card-icon {
  background: linear-gradient(135deg, #689f38 0%, #558b2f 100%);
}
.service-card-full:nth-child(9) .card-icon {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

/* ================================================
   BENEFIT ICON - FIXED VISIBILITY
   ================================================ */
.benefit-card .benefit-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  transition: all var(--transition-normal);
}

.benefit-card .benefit-icon i,
.benefit-card .benefit-icon svg {
  font-size: 1.5rem;
  color: var(--white);
  fill: var(--white);
}

.benefit-card:nth-child(1) .benefit-icon {
  background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
}
.benefit-card:nth-child(2) .benefit-icon {
  background: linear-gradient(135deg, #1b6097 0%, #2d7ab8 100%);
}
.benefit-card:nth-child(3) .benefit-icon {
  background: linear-gradient(135deg, #a9050e 0%, #c91017 100%);
}
.benefit-card:nth-child(4) .benefit-icon {
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
}
.benefit-card:nth-child(5) .benefit-icon {
  background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%);
}

/* Benefits list check icons */
.benefits-list .benefit-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
  border-radius: var(--radius-full);
}

.benefits-list .benefit-icon i {
  font-size: 0.75rem;
  color: var(--white);
}

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

.services-overview,
.quality,
.testimonials {
  background-color: var(--light);
}

/* ================================================
   FOOTER QUICK CONTACT
   ================================================ */
.footer-contact-quick {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.quick-contact-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.quick-contact-btn.whatsapp:hover {
  background: #25d366;
}

/* ================================================
   FUTURISTIC GLASS CARD EFFECT
   ================================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
}

/* ================================================
   ANIMATED BORDER GRADIENT
   ================================================ */
.animated-border {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
}

.animated-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-rainbow);
  border-radius: inherit;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  background-size: 300% 300%;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ================================================
   NEON GLOW EFFECT
   ================================================ */
.neon-glow {
  box-shadow:
    0 0 5px var(--primary),
    0 0 10px var(--primary),
    0 0 20px var(--primary),
    0 0 40px var(--primary);
}

/* ================================================
   3D HOVER CARD EFFECT
   ================================================ */
.card-3d-hover {
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  transform-style: preserve-3d;
}

.card-3d-hover:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(20px);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
}

/* ================================================
   FLOATING ANIMATION
   ================================================ */
.float-animate {
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ================================================
   GRADIENT TEXT
   ================================================ */
.gradient-text-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-secondary {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-rainbow {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   STATS SHOWCASE SECTION
   ================================================ */
.stats-showcase {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #0f2d44 50%,
    var(--dark) 100%
  );
  overflow: hidden;
}

.stats-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stats-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.stats-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.stats-shape.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -50px;
  right: 10%;
}

.stats-shape.shape-3 {
  width: 200px;
  height: 200px;
  background: #4caf50;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-xl);
  font-size: 2rem;
  color: var(--white);
}

.stat-card:nth-child(1) .stat-icon-wrap {
  background: linear-gradient(135deg, #1b6097 0%, #2d7ab8 100%);
}

.stat-card:nth-child(2) .stat-icon-wrap {
  background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
}

.stat-card:nth-child(3) .stat-icon-wrap {
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%);
}

.stat-card:nth-child(4) .stat-icon-wrap {
  background: linear-gradient(135deg, #a9050e 0%, #c91017 100%);
}

.stat-counter {
  margin-bottom: var(--space-sm);
}

.counter-value {
  font-family: var(--font-secondary);
  font-size: var(--text-5xl);
  color: var(--white);
  line-height: 1;
}

.counter-suffix {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  color: var(--white);
}

.stat-label {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.stat-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ================================================
   CTA BANNER MODERN
   ================================================ */
.cta-banner-modern {
  position: relative;
  margin-top: var(--space-3xl);
  padding: var(--space-3xl) 0;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f2d44 0%, #1b6097 50%, #0f2d44 100%);
  overflow: hidden;
}

.cta-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.cta-brush-stroke {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cta-brush-1 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23A9050E' fill-opacity='0.15' d='M0,192L48,186.7C96,181,192,171,288,181.3C384,192,480,224,576,218.7C672,213,768,171,864,149.3C960,128,1056,128,1152,149.3C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat bottom center;
  background-size: cover;
}

.cta-brush-2 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,128C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E")
    no-repeat top center;
  background-size: cover;
}

.cta-geometric {
  position: absolute;
  border-radius: 50%;
}

.cta-geometric.geo-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(169, 5, 14, 0.3) 0%,
    transparent 70%
  );
  top: -150px;
  right: -100px;
  animation: floatSlow 10s ease-in-out infinite;
}

.cta-geometric.geo-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(27, 96, 151, 0.3) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -50px;
  animation: floatSlow 12s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, -20px) rotate(10deg);
  }
}

.cta-content-modern {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.cta-badge i {
  color: #ffd700;
}

.cta-content-modern h2 {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-content-modern p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
}

/* ================================================
   BERLIN DISTRICTS - ULTRA MODERN
   ================================================ */
.districts-modern {
  position: relative;
  background: var(--light);
  overflow: hidden;
}

.districts-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(27, 96, 151, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(169, 5, 14, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.districts-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
}

.districts-map-visual {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-icon-large {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: var(--radius-2xl);
  font-size: 3rem;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(27, 96, 151, 0.4);
  position: relative;
  z-index: 1;
}

.map-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--primary);
  border-radius: var(--radius-2xl);
  animation: mapPulse 2s ease-out infinite;
}

@keyframes mapPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.districts-tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  max-width: 900px;
}

.district-tag {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.district-tag i {
  color: var(--primary);
  font-size: var(--text-xs);
}

.district-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(27, 96, 151, 0.3);
}

.district-tag:hover i {
  color: var(--white);
}

.district-tag.featured {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.district-tag.featured i {
  color: var(--white);
}

.district-tag.featured:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
}

.districts-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.districts-cta p {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
}

/* ================================================
   RESPONSIVE STATS SECTION
   ================================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stat-card {
    padding: var(--space-xl);
  }

  .counter-value,
  .counter-suffix {
    font-size: var(--text-4xl);
  }

  .districts-tags-container {
    gap: var(--space-sm);
  }

  .district-tag {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
  }
}

/* ================================================
   TESTIMONIALS PREMIUM SECTION
   ================================================ */
.testimonials-premium {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  overflow: hidden;
}

.testimonials-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.testimonials-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.testimonials-gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(27, 96, 151, 0.1);
  top: -100px;
  left: -100px;
}

.testimonials-gradient-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(169, 5, 14, 0.08);
  bottom: -50px;
  right: -50px;
}

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(27, 96, 151, 0.05) 1px,
    transparent 0
  );
  background-size: 40px 40px;
}

.testimonials-showcase {
  position: relative;
}

.testimonial-card-premium {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(27, 96, 151, 0.1);
  transition: all var(--transition-normal);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.testimonial-card-premium .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.quote-icon {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 96, 151, 0.08);
  border-radius: var(--radius-lg);
  color: var(--primary);
  font-size: var(--text-xl);
}

.testimonial-rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.testimonial-rating-stars i {
  color: #ffb800;
  font-size: var(--text-base);
}

.testimonial-content {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--gray-700);
  text-decoration: none;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.testimonial-author-premium {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}

.author-avatar-premium {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.author-avatar-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-avatar-premium .avatar-ring {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.5;
}

.author-details {
  flex-grow: 1;
}

.author-name {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-800);
  margin: 0 0 2px 0;
}

.author-role {
  font-size: var(--text-sm);
  color: var(--gray-500);
  display: block;
  margin-bottom: 4px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: #2e7d32;
}

.verified-badge i {
  font-size: 12px;
}

/* Swiper Navigation */
.swiper-nav-wrapper {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.swiper-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  color: var(--gray-700);
  text-decoration: none;
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.swiper-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

/* Swiper Pagination Dots */
.testimonials-swiper .swiper-pagination {
  bottom: 0 !important;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--gray-300);
  opacity: 1;
  transition: all var(--transition-normal);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 30px;
  border-radius: var(--radius-full);
}

/* Trust Indicators */
.trust-indicators {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  margin: var(--space-2xl) auto 0;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.trust-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: var(--text-4xl);
}

.trust-icon.google-logo {
  justify-content: flex-end;
}

.trust-icon.google-logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.trust-icon.provenexpert img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

/* .trust-icon.customers {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
} */

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

.trust-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.rating-value {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--gray-800);
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars i {
  color: #ffb800;
  font-size: 12px;
}

.trust-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--gray-200);
}

/* ================================================
   WHY CHOOSE US - ULTRA MODERN SECTION
   ================================================ */
.why-choose-section {
  position: relative;
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, #0f2d44 0%, #1b6097 50%, #0f2d44 100%);
  overflow: hidden;
}

.why-choose-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.why-choose-bg .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.why-choose-bg .shape-1 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  top: -200px;
  right: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.why-choose-bg .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--white);
  bottom: -100px;
  left: -50px;
  animation: floatShape 15s ease-in-out infinite reverse;
}

.why-choose-bg .shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-light);
  top: 50%;
  left: 30%;
  animation: floatShape 18s ease-in-out infinite;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.why-choose-bg .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.why-choose-section .section-header .section-title {
  color: var(--white);
}

.why-choose-section .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.features-showcase {
  position: relative;
  z-index: 1;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.benefits-showcase,
.features-showcase,
.video-showcase-wrapper,
.districts-showcase,
.faq-accordion,
.services-grid {
  margin-top: var(--space-3xl);
}

.feature-card-modern {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
}

.feature-card-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.feature-card-modern.featured {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
}

.feature-badge {
  position: absolute;
  top: -12px;
  right: var(--space-lg);
  background: var(--secondary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
}

.feature-card-inner {
  text-align: center;
}

.feature-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.feature-icon-container .icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(27, 96, 151, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.feature-icon-container .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

/* Colorful gradient icon boxes */
.feature-card-modern:nth-child(1) .icon-box {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}
.feature-card-modern:nth-child(2) .icon-box {
  background: linear-gradient(135deg, #4ecdc4, #3dbdb5);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}
.feature-card-modern:nth-child(3) .icon-box {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  box-shadow: 0 15px 40px rgba(155, 89, 182, 0.4);
}
.feature-card-modern:nth-child(4) .icon-box {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  box-shadow: 0 15px 40px rgba(243, 156, 18, 0.4);
}
.feature-card-modern:nth-child(5) .icon-box {
  background: linear-gradient(135deg, #27ae60, #229954);
  box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
}
.feature-card-modern:nth-child(6) .icon-box {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

.feature-card-modern:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

.feature-card-modern.featured .icon-box {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  box-shadow: 0 15px 40px rgba(169, 5, 14, 0.4);
}

.feature-title {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.feature-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.feature-highlight {
  display: flex;
  justify-content: center;
}

.highlight-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--white);
}

/* Features Strip */
.features-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.strip-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: var(--text-lg);
}

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

.strip-value {
  display: block;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--white);
}

.strip-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.strip-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Why Choose CTA */
.why-choose-cta {
  margin-top: var(--space-3xl);
}

.cta-content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cta-text h3 {
  font-size: var(--text-2xl);
  margin: 0 0 4px 0;
}

.cta-text p {
  font-size: var(--text-base);
  color: var(--gray-600);
  margin: 0;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-modern:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .features-strip {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .strip-divider {
    display: none;
  }

  .trust-indicators {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .trust-divider {
    display: none;
  }

  .cta-content-box {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-xl);
  }
}

@media (max-width: 767px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-modern:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .testimonial-card-premium {
    padding: var(--space-xl);
  }

  .quote-icon {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

  .testimonial-content {
    font-size: var(--text-base);
  }

  .author-avatar-premium {
    width: 50px;
    height: 50px;
  }

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

  .cta-phone-modern,
  .cta-button-modern {
    width: 100%;
    justify-content: center;
  }

  .strip-item {
    flex: 1 1 40%;
    justify-content: flex-start;
  }
}

/* ================================================
   CUSTOM SCROLLBAR STYLING
   ================================================ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 5px;
  border: 2px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--light);
}

#site-nav.scrolled .navbar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* ================================================
   TESTIMONIAL CARD HEIGHT FIX
   ================================================ */
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card-premium {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-author-premium {
  margin-top: auto;
}

/* ================================================
   HERO SCROLL MODERN - LINK STYLING
   ================================================ */
a.hero-scroll-modern {
  text-decoration: none;
  cursor: pointer;
}

a.hero-scroll-modern:hover {
  transform: translateY(-5px);
}

a.hero-scroll-modern:hover .scroll-mouse {
  border-color: var(--secondary);
}

a.hero-scroll-modern:hover .scroll-wheel {
  background: var(--secondary);
}

/* ================================================
   UI/UX POLISH - SECTION BACKGROUNDS
   ================================================ */
/* Ensure proper section alternation */
.services-overview.section {
  background: var(--white);
}

.about.section {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.detailed-services.section {
  background: var(--light);
}

.quality.section {
  background: var(--white);
}

/* ================================================
   VIDEO SHOWCASE MODERN - Clean Bright Design
   ================================================ */
.video-showcase-modern {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.video-showcase-modern .video-deco-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 280px;
  width: auto;
}

.techniques-section-deco-img {
  position: absolute;
  top: 1rem;
  right: 0;
  height: 220px;
  width: auto;
}

.page-banner-deco-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 220px;
  width: auto;
  z-index: 9;
}

/* top border - decorative separator */
.video-showcase-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary) 15%,
    var(--secondary) 50%,
    var(--primary) 85%,
    transparent 100%
  );
  z-index: 10;
}

.video-showcase-wrapper {
  position: relative;
  max-width: 1000px;
  margin: var(--space-3xl) auto 0;
}

/* Decorative Frame Corners */
.video-frame-decoration {
  position: absolute;
  inset: -15px;
  pointer-events: none;
  z-index: 2;
}

.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.frame-corner.corner-tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.frame-corner.corner-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.frame-corner.corner-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.frame-corner.corner-br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.video-showcase-wrapper:hover .frame-corner {
  width: 60px;
  height: 60px;
  opacity: 1;
  border-color: var(--secondary);
}

/* Video Container */
.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(27, 96, 151, 0.2);
  background: var(--dark);
}

.video-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary),
    var(--primary-light)
  );
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-container:hover .video-glow {
  opacity: 1;
}

.video-frame {
  position: relative;
  /* padding-bottom: 56.25%; */
  background: var(--gray-900);
}

.video-frame iframe {
  /* position: absolute;
  top: 0;
  left: 0; */
  min-height: 500px;
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 599px) {
  .video-frame iframe {
    min-height: 200px;
  }
}

@media (min-width: 600px) and (max-width: 1025px) {
  .video-frame iframe {
    min-height: 420px;
  }
}

/* .video-container .rll-youtube-player {
  position: static !important;
  padding-bottom: 0 !important;
} */

/* Video Stats */
.video-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.video-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--white);
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(27, 96, 151, 0.1);
}

.video-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(27, 96, 151, 0.15);
  border-color: var(--primary);
}

.video-stat i {
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.4s ease;
}

.video-stat:hover i {
  transform: scale(1.2);
  color: var(--secondary);
}

.video-stat span {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

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

.services-full.section {
  background: var(--light);
}

/* .cta-banner-modern {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
} */

.video-showcase.section {
  background: var(--white);
}

.testimonials-premium.section {
  background: var(--light);
}

.service-areas.section {
  background: var(--white);
}

.faq.section {
  background: var(--white);
}

.contact.section {
  background: var(--light);
}

/* ================================================
   VIDEO SECTION IMPROVED STYLING
   ================================================ */
.video-showcase .section-header.light .section-title,
.video-showcase .section-header.light .section-subtitle {
  color: var(--gray-800);
}

.video-showcase .section-header.light .section-tag {
  background: rgba(27, 96, 151, 0.1);
  color: var(--primary);
}

/* ================================================
   ADDITIONAL RESPONSIVE FIXES
   ================================================ */
@media (max-width: 767px) {
  .trust-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .trust-icon {
    width: 45px;
    height: 45px;
  }

  .rating-value {
    font-size: var(--text-lg);
  }

  .swiper-nav-wrapper {
    margin-top: var(--space-lg);
  }

  .swiper-btn {
    width: 40px;
    height: 40px;
    font-size: var(--text-sm);
  }
}

@media (max-width: 480px) {
  .trust-indicators {
    flex-direction: column;
    gap: var(--space-md);
  }

  .trust-card {
    width: 100%;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    padding: var(--space-sm) 0;
  }
}

/* ================================================
   DECORATIVE SVG ELEMENTS - Section Decorations
   ================================================ */

/* About Section Decorations */
.about-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.about-deco {
  position: absolute;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.about-deco-brush {
  top: 5%;
  right: 5%;
  width: 120px;
  height: auto;
  animation: floatSlow 8s ease-in-out infinite;
}

.about-deco-balty {
  bottom: 6%;
  left: 0;
  width: 150px;
  height: auto;
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.about-deco-arrow {
  top: 50%;
  right: 15%;
  width: 60px;
  height: auto;
  opacity: 0.05;
  animation: floatSlow 6s ease-in-out infinite;
}

/* Shared Animations for Decorative Elements */
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

/* Responsive - Hide decorations on smaller screens for performance */
@media (max-width: 1024px) {
  .about-deco {
    opacity: 0.04;
  }

  .about-deco-brush,
  .about-deco-balty {
    width: 80px;
  }

  .about-decorations {
    display: none;
  }
}

/* ================================================
   ÜBER UNS PAGE STYLES
   ================================================ */
/* Page Banner - Ultra Modern Design */
.page-banner {
  position: relative;
  height: 505px;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 140px 0 80px;
}

/* Geometric Background Pattern */
.banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-bg-pattern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.15) 0%,
    transparent 60%
  );
  transform: rotate(-15deg);
}

.banner-bg-pattern::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(243, 156, 18, 0.08) 0%,
    transparent 50%
  );
  transform: rotate(20deg);
}

/* Floating Geometric Shapes */
.geo-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.geo-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: geoFloat 20s ease-in-out infinite;
}

.geo-shape.circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.geo-shape.circle-2 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  bottom: 20%;
  left: 10%;
  animation-delay: -5s;
}

.geo-shape.square-1 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 20%;
  transform: rotate(45deg);
  animation-delay: -10s;
}

.geo-shape.line-1 {
  width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(243, 156, 18, 0.3),
    transparent
  );
  border: none;
  bottom: 40%;
  right: 15%;
  transform: rotate(-30deg);
}

@keyframes geoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.8;
  }
}

/* Gradient Orbs */
.banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.banner-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.banner-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -100px;
  left: 10%;
  opacity: 0.2;
}

/* Banner Content */
.banner-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.banner-content .container {
  display: block;
}

.banner-text {
  max-width: 900px;
}

.banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.banner-breadcrumb a:hover {
  color: var(--light);
}

.banner-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.banner-breadcrumb .current {
  color: #fff;
  font-weight: 500;
}

.banner-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.banner-title .highlight {
  color: var(--primary-light);
}

p.banner-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 80%;
  margin-bottom: 25px;
}

/* ========================================
   LOCATION BANNER ENHANCEMENTS
   ======================================== */

/* Location Badge */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.location-badge i {
  color: var(--accent);
  font-size: 0.9rem;
}

.location-badge span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .location-badge {
    padding: 8px 16px;
  }

  .location-badge span {
    font-size: 0.85rem;
  }
}

/* Banner Stats */
.banner-stats {
  display: flex;
  gap: 50px;
}

.banner-stat {
  text-align: center;
  position: relative;
}

.banner-stat::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

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

.stat-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* About Content Section */
.about-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* Subtle Grid Background */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Visual Composition - Creative Overlap */
.visual-composition {
  position: relative;
  height: 650px;
}

.visual-frame {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-slow);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-frame:hover img {
  transform: scale(1.05);
}

.visual-frame.primary {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 2;
}

.visual-frame.secondary {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 6px solid #fff;
}

.visual-frame.accent {
  width: 35%;
  height: 30%;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  border: 4px solid #fff;
  border-radius: 16px;
}

/* Decorative Elements */
.visual-deco {
  position: absolute;
  z-index: 1;
}

.visual-deco.pattern {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: -30px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary) 0,
    var(--primary) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.15;
  border-radius: 12px;
}

.visual-deco.dots {
  width: 100px;
  height: 100px;
  top: -20px;
  right: 20%;
  background-image: radial-gradient(var(--accent) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.4;
}

.visual-deco.line {
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  top: 30%;
  right: -20px;
  border-radius: 2px;
}

/* Experience Float Card */
.experience-float {
  position: absolute;
  bottom: 25%;
  left: -40px;
  z-index: 5;
  background: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 15px;
}

.experience-float .icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.experience-float .text .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.experience-float .text .label {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* About Text Content */
.about-section .about-text {
  position: relative;
  z-index: 1;
}

.about-section .about-text h2 span {
  color: var(--primary);
}

.about-section .about-text .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.about-section .about-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* Techniques Section */
.techniques-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  overflow: hidden;
}

.techniques-section .section-header {
  max-width: 650px;
  margin: 0 auto 80px;
}

/* Techniques Masonry Grid */
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.technique-item {
  position: relative;
  padding: 50px 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: -1px 0 0 -1px;
  transition: all 0.4s ease;
  background: transparent;
}

.technique-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.technique-item:hover::before {
  opacity: 1;
}

.technique-item:hover {
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.technique-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(27, 96, 151, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.technique-item:hover .technique-number {
  color: rgba(27, 96, 151, 0.15);
}

.technique-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.technique-item:nth-child(1) .technique-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}
.technique-item:nth-child(2) .technique-icon {
  background: linear-gradient(135deg, #4ecdc4, #3dbdb5);
}
.technique-item:nth-child(3) .technique-icon {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.technique-item:nth-child(4) .technique-icon {
  background: linear-gradient(135deg, #27ae60, #229954);
}
.technique-item:nth-child(5) .technique-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}
.technique-item:nth-child(6) .technique-icon {
  background: linear-gradient(135deg, #1b6097, #2980b9);
}

.technique-item:hover .technique-icon {
  transform: scale(1.1) rotate(-5deg);
}

.technique-item h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.technique-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

/* CTA Decorative Elements */
.cta-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-deco-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.08) 0%,
    transparent 70%
  );
  top: -150px;
  left: -100px;
}

.cta-deco-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -50px;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(27, 96, 151, 0.03) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

/* Row Layout */
.cta-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Side - Content */
.cta-section .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(27, 96, 151, 0.25);
}

.cta-section .cta-badge i {
  font-size: 1rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-title span {
  color: var(--primary);
  position: relative;
}

.cta-title span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.3),
    rgba(212, 175, 55, 0.1)
  );
  border-radius: 4px;
  z-index: -1;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Trust Row */
.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-section .trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
}

.cta-section .trust-badge i {
  color: #22c55e;
  font-size: 1rem;
}

/* Right Side - Card */
.cta-right {
  display: flex;
  justify-content: flex-end;
}

.cta-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.cta-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(27, 96, 151, 0.25);
}

.cta-card-header h3 {
  font-size: 1.14rem;
  font-family: var(--font-primary);
  color: var(--dark);
  margin-bottom: 4px;
}

.cta-card-header p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* CTA Buttons */
.cta-right .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn > i:first-child {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cta-btn-text {
  flex: 1;
}

.cta-btn-text .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  opacity: 0.8;
}

.cta-btn-text .value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.cta-arrow {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.cta-btn:hover .cta-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Phone Button */
.cta-btn-phone {
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 25px rgba(27, 96, 151, 0.25);
}

.cta-btn-phone > i:first-child {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cta-btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(27, 96, 151, 0.35);
}

/* WhatsApp Button */
.cta-btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.cta-btn-wa > i:first-child {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cta-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
}

/* Email Button */
.cta-btn-mail {
  background: #f8fafc;
  color: var(--dark);
  border: 2px solid #e2e8f0;
}

.cta-btn-mail > i:first-child {
  background: var(--primary);
  color: #fff;
}

.cta-btn-mail .cta-arrow {
  color: var(--primary);
}

.cta-btn-mail:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 96, 151, 0.15);
}

/* ================================================
   SERVICES PAGE - Additional Styles
   ================================================ */

/* Services Section */
.services-section {
  position: relative;
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

/* Banner Illustration - Vector Image */
.banner-illustration {
  position: relative;
  width: 420px;
  height: 400px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-vector {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: vectorFloat 5s ease-in-out infinite;
}

@keyframes vectorFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ================================================
   WHY CHOOSE US SECTION (Services Page)
   ================================================ */
.why-section {
  position: relative;
  background: var(--light);
  overflow: hidden;
}

.why-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(27 96 151 / 7%) 2px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-header {
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
}

.why-list li i {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.why-card:nth-child(1) .why-card-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}
.why-card:nth-child(2) .why-card-icon {
  background: linear-gradient(135deg, #4ecdc4, #3dbdb5);
}
.why-card:nth-child(3) .why-card-icon {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.why-card:nth-child(4) .why-card-icon {
  background: linear-gradient(135deg, #27ae60, #229954);
}

.why-card:hover .why-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ================================================
   SERVICES PAGE RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  .why-wrapper {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .banner-illustration {
    width: 350px;
    height: 350px;
    margin-top: 40px;
  }

  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .why-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 80px 0;
  }

  .banner-illustration {
    width: 300px;
    height: 300px;
  }

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

  .why-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .banner-illustration {
    width: 250px;
    height: 250px;
  }
}

/* ================================================
   SERVICE ITEM - Creative Card Design
   (Used in /leistungen and https://maler-berlin.shop-template.de/)
   ================================================ */

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

/* Redesigned Service Item - Creative Card */
.service-item {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Gradient Border Effect */
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--primary)
  );
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Corner Accent */
.service-item::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(27, 96, 151, 0.08), transparent);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(27, 96, 151, 0.15);
}

.service-item:hover::before {
  transform: scaleX(1);
  animation: gradientSlide 2s linear infinite;
}

.service-item:hover::after {
  transform: scale(1.5);
  background: linear-gradient(135deg, rgba(27, 96, 151, 0.12), transparent);
}

@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Creative Icon Container */
.service-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
}

.service-item .service-icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  border-radius: 24px;
  transform: rotate(-8deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(27, 96, 151, 0.25);
}

.service-item .service-icon-bg::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(
    135deg,
    rgba(243, 156, 18, 0.4),
    transparent,
    rgba(27, 96, 151, 0.3)
  );
  border-radius: 28px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-item:hover .service-icon-bg {
  transform: rotate(0deg) scale(1.08);
  border-radius: 28px;
}

.service-item:hover .service-icon-bg::before {
  opacity: 1;
}

.service-icon-wrap i,
.service-icon-wrap svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  z-index: 1;
  transition: all 0.5s ease;
}

.service-item:hover .service-icon-wrap i,
.service-item:hover .service-icon-wrap svg {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Floating Number */
.service-item .service-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(
    180deg,
    rgba(27, 96, 151, 0.08),
    rgba(27, 96, 151, 0.02)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.5s ease;
  z-index: 0;
}

.service-item:hover .service-number {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(
    180deg,
    rgba(27, 96, 151, 0.12),
    rgba(27, 96, 151, 0.04)
  );
  -webkit-background-clip: text;
  background-clip: text;
}

/* Service Content */
.service-content {
  position: relative;
  z-index: 1;
}

.service-content h3 {
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-item:hover .service-content h3 {
  color: var(--primary);
}

.service-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 25px;
}

/* Feature Pills */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.service-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.08),
    rgba(27, 96, 151, 0.04)
  );
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-feature i {
  font-size: 0.7rem;
  color: var(--secondary);
}

.service-item:hover .service-feature {
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.12),
    rgba(27, 96, 151, 0.06)
  );
}

/* Animated Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.service-card:hover .service-link {
  color: var(--white);
}
.service-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-rainbow);
  /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover::before {
  width: calc(100% - 40px);
}

.service-link-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.1),
    rgba(27, 96, 151, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover .service-link-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: translateX(5px);
}

.malerarbeiten-column .service-link {
  width: fit-content;
  float: left;
  margin-top: var(--space-md);
}

/* Accent Cards - Alternate Styling */
.service-item:nth-child(2) .service-icon-bg {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  box-shadow: 0 15px 35px rgba(243, 156, 18, 0.25);
}

.service-item:nth-child(4) .service-icon-bg {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
}

.service-item:nth-child(5) .service-icon-bg {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.25);
}

.service-item:nth-child(6) .service-icon-bg {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.25);
}

.service-item:nth-child(7) .service-icon-bg {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  box-shadow: 0 15px 35px rgba(243, 156, 18, 0.25);
}

.service-item:nth-child(8) .service-icon-bg {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.25);
}

.service-item:nth-child(9) .service-icon-bg {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
}

/* Services Grid Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-item {
    padding: 35px 28px;
  }

  .service-icon-wrap {
    width: 75px;
    height: 75px;
  }

  .service-icon-wrap i {
    font-size: 1.7rem;
  }

  .service-item .service-number {
    font-size: 3.5rem;
    top: 25px;
    right: 25px;
  }
}

@media (max-width: 480px) {
  .service-item {
    padding: 30px 22px;
  }

  .service-icon-wrap {
    width: 65px;
    height: 65px;
  }

  .service-icon-wrap i {
    font-size: 1.5rem;
  }

  .service-item .service-number {
    font-size: 3rem;
  }

  .service-content h3 {
    font-size: 2rem;
  }

  .service-features {
    gap: 6px;
  }

  .service-feature {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
}

/* ================================================
   MOSAIC GALLERY COMPOSITION
   (Used in About Section - https://maler-berlin.shop-template.de/)
   ================================================ */

.mosaic-gallery {
  position: relative;
  height: 580px;
  width: 100%;
}

/* Decorative Elements */
.mosaic-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.mosaic-deco.gradient-blob {
  width: 200px;
  height: 200px;
  top: -40px;
  right: -40px;
  background: radial-gradient(
    circle,
    rgba(243, 156, 18, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: blobPulse 8s ease-in-out infinite;
}

@keyframes blobPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.mosaic-deco.grid-lines {
  width: 120px;
  height: 120px;
  top: -2rem;
  left: -30px;
  background-image:
    linear-gradient(90deg, var(--primary) 1px, transparent 1px),
    linear-gradient(var(--primary) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.mosaic-deco.floating-brush {
  width: 80px;
  height: 80px;
  top: 40%;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50% 0 50% 50%;
  opacity: 0.15;
  transform: rotate(-45deg);
  animation: floatBrush 6s ease-in-out infinite;
}

@keyframes floatBrush {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-15px);
  }
}

/* Mosaic Grid Layout */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Mosaic Items */
.mosaic-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-item.mosaic-large {
  grid-row: span 2;
}

.mosaic-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mosaic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-item:hover .mosaic-image img {
  transform: scale(1.08);
}

/* Overlay Effect */
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(27, 96, 151, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.overlay-tag {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.mosaic-item:hover .overlay-tag {
  transform: translateY(0);
}

/* Item Hover Effects */
.mosaic-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Floating Stats Cards */
.mosaic-stat {
  position: absolute;
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mosaic-stat:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.mosaic-stat .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #1b6097 0%, #2d7ab8 100%);
}

.mosaic-stat .stat-info {
  display: flex;
  flex-direction: column;
}

.mosaic-stat .stat-value {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
}

.mosaic-stat .stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 2px;
}

/* Stats Positioning & Colors */
.mosaic-stat.stat-years {
  top: 12%;
  left: -36px;
  animation: floatStat1 5s ease-in-out infinite;
}

.mosaic-stat.stat-years .stat-icon {
  border-radius: 16px;
}

.mosaic-stat.stat-projects {
  top: 68%;
  right: -36px;
  animation: floatStat2 5.5s ease-in-out infinite;
}

.mosaic-stat.stat-projects .stat-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

@keyframes floatStat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatStat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Accent Corner */
.mosaic-accent-corner {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border-right: 4px solid var(--secondary);
  border-bottom: 4px solid var(--secondary);
  border-radius: 0 0 24px 0;
  opacity: 0.4;
  z-index: 0;
}

/* Mosaic Gallery Responsive */
@media (max-width: 1024px) {
  .mosaic-gallery {
    height: 500px;
  }

  .showcase-badge {
    right: 25px !important;
  }

  .showcase-secondary {
    bottom: 6% !important;
    right: 5% !important;
  }

  .mosaic-grid {
    gap: 15px;
  }

  .mosaic-stat.stat-projects {
    top: 28% !important;
    bottom: auto !important;
    right: 10px !important;
  }

  .mosaic-stat.stat-years {
    top: auto;
    bottom: 2% !important;
    left: 10px !important;
  }

  .mosaic-stat {
    padding: 12px 14px;
  }

  .mosaic-stat .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .mosaic-stat .stat-value {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .mosaic-gallery {
    height: 450px;
    overflow: visible !important;
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 1fr;
  }

  .mosaic-item.mosaic-large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .mosaic-stat.stat-years {
    display: none;
    bottom: auto;
    top: 5%;
    left: 10px;
  }

  .mosaic-stat.stat-projects {
    top: auto !important;
    bottom: 2% !important;
    right: 10px;
  }

  .mosaic-deco.gradient-blob {
    width: 150px;
    height: 150px;
  }

  .mosaic-deco.grid-lines {
    display: none;
  }
}

@media (max-width: 480px) {
  .mosaic-gallery {
    height: 400px;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1.5fr 1fr;
    gap: 12px;
  }

  .mosaic-item.mosaic-large {
    grid-column: span 1;
  }

  .mosaic-item.mosaic-bottom {
    display: none;
  }

  .mosaic-stat {
    padding: 12px 15px;
  }

  .mosaic-stat .stat-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .mosaic-stat .stat-value {
    font-size: 1.2rem;
  }

  .mosaic-stat .stat-label {
    font-size: 0.7rem;
  }

  .mosaic-stat.stat-years {
    left: 5px;
  }

  .mosaic-stat.stat-projects {
    left: 10px;
    right: auto !important;
    bottom: 2%;
  }

  .mosaic-accent-corner {
    display: none;
  }
}

/* ================================================
   CRAFT SHOWCASE - PREMIUM VISUAL DESIGN
   (Used in Detailed Services Section)
   ================================================ */

.craft-showcase {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layered Background */
.craft-bg-layer {
  position: absolute;
  inset: 20px;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.03) 0%,
    rgba(212, 175, 55, 0.03) 100%
  );
  border-radius: 30px;
  z-index: 0;
}

.craft-bg-layer::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--primary);
  border-radius: 20px;
  opacity: 0.15;
}

.craft-bg-layer::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--secondary);
  border-radius: 16px;
  opacity: 0.15;
}

/* Main Image Card */
.craft-card {
  position: relative;
  width: 85%;
  height: 90%;
  z-index: 2;
}

.craft-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.12),
    0 10px 20px rgba(0, 0, 0, 0.08);
}

.craft-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.craft-showcase:hover .craft-card-inner img {
  transform: scale(1.05);
}

.craft-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(27, 96, 151, 0.02) 70%,
    rgba(27, 96, 151, 0.08) 100%
  );
  pointer-events: none;
}

/* Craft Showcase Responsive */
@media (max-width: 1024px) {
  .craft-showcase {
    height: 480px;
  }

  .craft-card {
    width: 90%;
    height: 80%;
  }
}

@media (max-width: 767px) {
  .craft-card {
    width: 95%;
    height: 85%;
  }

  .craft-bg-layer::before,
  .craft-bg-layer::after {
    /* display: none; */
  }

  .craft-card-inner {
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .craft-card {
    width: 100%;
  }

  .craft-card-inner {
    border-radius: 16px;
  }
}

/* ================================================
   SHOWCASE FRAME COMPOSITION
   (Used in Quality Section)
   ================================================ */

.showcase-frame {
  position: relative;
  height: 500px;
  width: 100%;
}

/* Geometric Decorations */
.showcase-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.showcase-deco.corner-tl {
  width: 80px;
  height: 80px;
  top: -20px;
  left: -20px;
  border-top: 4px solid var(--primary);
  border-left: 4px solid var(--primary);
  border-radius: 8px 0 0 0;
  opacity: 0.5;
}

.showcase-deco.corner-br {
  width: 80px;
  height: 80px;
  bottom: 10%;
  right: -20px;
  border-bottom: 4px solid var(--secondary);
  border-right: 4px solid var(--secondary);
  border-radius: 0 0 8px 0;
  opacity: 0.5;
}

.showcase-deco.floating-square {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 8%;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.1),
    rgba(27, 96, 151, 0.05)
  );
  border-radius: 12px;
  transform: rotate(45deg);
  animation: floatSquare 6s ease-in-out infinite;
}

@keyframes floatSquare {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-15px);
  }
}

.showcase-deco.accent-line {
  width: 60px;
  height: 4px;
  bottom: 38%;
  left: -40px;
  transform: translateY(-50%);
  opacity: 0.5;
  background: var(--gradient-accent);
}

/* Main Showcase Image */
.showcase-main {
  position: relative;
  width: 85%;
  height: 80%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-frame:hover .showcase-main img {
  transform: scale(1.05);
}

/* Secondary Image */
.showcase-secondary {
  position: absolute;
  width: 45%;
  height: 40%;
  bottom: -5%;
  right: -10%;
  border-radius: 18px;
  overflow: hidden;
  z-index: 3;
  border: 5px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

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

.showcase-frame:hover .showcase-secondary {
  transform: translateY(-10px) rotate(2deg);
}

/* Quality Badge */
.showcase-badge {
  position: absolute;
  top: 15%;
  right: -15px;
  z-index: 4;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(27, 96, 151, 0.3);
  transition: transform 0.3s ease;
}

.showcase-badge:hover {
  transform: translateX(-5px);
}

.showcase-badge .quality-icon {
  font-size: 1.2rem;
}

.showcase-badge span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ================================================
   LOCATION SPOTLIGHT COMPOSITION
   (Used in Service Areas Section)
   ================================================ */

.location-spotlight {
  position: relative;
  height: 550px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative Rings */
.spotlight-deco {
  position: absolute;
  pointer-events: none;
}

.spotlight-deco.ring-outer {
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(27, 96, 151, 0.15);
  border-radius: 50%;
  animation: rotateRing 30s linear infinite;
}

.spotlight-deco.ring-inner {
  width: 105%;
  height: 105%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(243, 156, 18, 0.2);
  border-radius: 50%;
  animation: rotateRing 25s linear infinite reverse;
}

@keyframes rotateRing {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.spotlight-deco.dots-pattern {
  width: 80px;
  height: 80px;
  bottom: 10%;
  left: 5%;
  background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.4;
}

/* Main Circular Image */
.spotlight-main {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.spotlight-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-spotlight:hover .spotlight-main img {
  transform: scale(1.1);
}

.spotlight-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.3),
    rgba(243, 156, 18, 0.2)
  );
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.location-spotlight:hover .spotlight-glow {
  opacity: 1;
}

/* Floating Location Cards */
.spotlight-card {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-card i {
  color: var(--primary);
  font-size: 1rem;
}

.spotlight-card span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.spotlight-card.card-1 {
  top: 10%;
  right: 5%;
  animation: floatCard1 5s ease-in-out infinite;
}

.spotlight-card.card-2 {
  top: 50%;
  left: -5%;
  animation: floatCard2 6s ease-in-out infinite;
}

.spotlight-card.card-3 {
  bottom: 15%;
  right: 0;
  animation: floatCard3 5.5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes floatCard2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes floatCard3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.spotlight-card:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Center Badge */
.spotlight-center-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
  z-index: 4;
  white-space: nowrap;
}

.spotlight-center-badge i {
  font-size: 1.1rem;
}

.spotlight-center-badge span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ================================================
   RESPONSIVE STYLES FOR CREATIVE COMPOSITIONS
   ================================================ */

@media (max-width: 1024px) {
  .video-container {
    box-shadow: none;
  }

  .districts-modern {
    padding-bottom: var(--space-2xl);
  }

  .location-spotlight {
    height: 560px;
  }

  .spotlight-main {
    width: 300px;
    height: 300px;
  }

  .spotlight-center-badge {
    bottom: 44px;
  }

  .hero-trust-badges {
    display: none !important;
  }

  /* Scale rings for tablet */
  .spotlight-deco.ring-outer {
    width: 72%;
    height: 80%;
  }

  .spotlight-deco.ring-inner {
    width: 68%;
    height: 92%;
  }

  .spotlight-card.card-2 {
    top: 20%;
    left: 4%;
  }

  .spotlight-card.card-3 {
    bottom: 24%;
    right: 2%;
  }

  .benefits-showcase,
  .features-showcase,
  .video-showcase-wrapper,
  .districts-showcase,
  .faq-accordion,
  .services-grid {
    margin-top: var(--space-2xl);
  }
}

@media (max-width: 767px) {
  .faq-accordion {
    overflow: visible !important;
    margin-top: var(--space-xl);
  }

  .location-spotlight {
    height: 450px;
  }

  .spotlight-main {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  }

  .spotlight-center-badge {
    bottom: 10px;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
  }

  .spotlight-main {
    width: 270px;
    height: 270px;
  }

  /* Hide all spotlight cards on mobile */
  .location-spotlight .spotlight-card {
    display: none;
  }

  /* Scale rings for tablet/mobile visibility */
  .spotlight-deco.ring-outer {
    width: 58%;
    height: 100%;
    border-width: 1.5px;
    opacity: 0.8;
  }

  .spotlight-deco.ring-inner {
    width: 66%;
    height: 78%;
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .showcase-deco.corner-tl,
  .showcase-deco.corner-br {
    display: none;
  }

  /* Scale rings for small mobile */
  .spotlight-deco.ring-outer {
    width: 100%;
    height: 85%;
    border-width: 1px;
    opacity: 0.8;
  }

  .spotlight-deco.ring-inner {
    width: 98%;
    height: 76%;
    opacity: 0.8;
  }

  .spotlight-center-badge {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
  .districts-deco {
    top: 1vh;
    max-width: 150px;
  }
}

/* ================================================
   CONTACT PAGE STYLE
   ================================================ */

/* Contact Main Section */
.contact-main {
  background: var(--light);
  position: relative;
  overflow: hidden;
}

/* Contact Page Decorative Elements */
.contact-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-main > .container {
  position: relative;
  z-index: 2;
}

.floating-brush {
  position: absolute;
  width: 120px;
  height: 120px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 80 L30 20 L40 20 L50 80 Z" fill="%231b6097" opacity="0.1"/><rect x="25" y="10" width="20" height="15" rx="3" fill="%23ffc107" opacity="0.2"/></svg>')
    no-repeat center;
  background-size: contain;
  bottom: 10%;
  right: 15%;
  animation: floatRotate 12s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes floatRotate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
  }
  50% {
    transform: translateY(5px) rotate(-3deg);
  }
  75% {
    transform: translateY(-10px) rotate(3deg);
  }
}

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

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-header {
  margin-bottom: 10px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.1),
    rgba(27, 96, 151, 0.05)
  );
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

.form-header p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Contact Form */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 1rem;
  transition: color 0.3s ease;
  z-index: 1;
}

.textarea-wrapper i {
  top: 22px;
  transform: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8fafc;
  transition: all 0.3s ease;
  color: var(--dark);
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 140px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 96, 151, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper input:focus ~ i,
.input-wrapper:focus-within i {
  color: var(--primary);
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
  padding-right: 50px;
}

.select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

/* Checkbox Styling */
.checkbox-group {
  margin-bottom: 30px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.checkbox-label input {
  display: none;
}

.checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.checkbox-label input:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.75rem;
}

.checkbox-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

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

/* Submit Button */
.form-submit-btn {
  width: 100%;
  padding: 20px 40px;
  border-radius: 16px;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(27, 96, 151, 0.3);
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(27, 96, 151, 0.4);
}

.form-submit-btn::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-btn:hover::before {
  left: 100%;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-loader {
  display: none;
}

.form-submit-btn.loading .btn-content {
  display: none;
}
.form-submit-btn.loading .btn-loader {
  display: block;
}

/* Trust Badges */
.form-trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.trust-item i {
  color: #22c55e;
}

/* Contact Info Side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #16518112;
}

.info-card:hover {
  background: #fff;
  border-color: rgba(27, 96, 151, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(27, 96, 151, 0.25);
}

.info-card-icon.phone {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

.info-card-icon.email {
  background: linear-gradient(135deg, var(--secondary), #e6a800);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.25);
}

.info-card-content h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.info-card-content p {
  font-size: 1rem;
  color: var(--gray-700);
  text-decoration: none;
  line-height: 1.6;
}

.info-card-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-card-content a:hover {
  color: var(--primary-dark);
}

.info-note {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 6px;
}

/* Why Contact Card */
.why-contact-card {
  padding: 35px;
  border-radius: 16px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.why-contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.wcc-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-contact-card h4 {
  color: var(--light);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.wcc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wcc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.wcc-list li:last-child {
  border-bottom: none;
}

.wcc-list li i {
  color: var(--secondary);
}

/* Map Section */
.contact-map-section {
  /* padding: 6rem 0 10rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
  position: relative;
  overflow: hidden;
}

.contact-map-section .section-header {
  margin-bottom: 50px;
}

.contact-map-section .section-tag {
  padding-left: 0;
}

.contact-map-section .section-tag::before {
  display: none;
}

.contact-map-section .section-tag i {
  color: var(--primary);
}

.map-wrapper {
  position: relative;
}

.place-card.place-card-large {
  display: none !important;
}

.map-frame {
  position: relative;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 500px;
}

.map-overlay-info {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}

.map-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  max-width: 300px;
}

.mic-header {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.mic-logo {
  height: 35px;
  width: auto;
}

.mic-body h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.mic-body p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 15px;
}

.mic-body p i {
  color: var(--primary);
  margin-top: 3px;
}

.mic-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mic-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Contact CTA */
.contact-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px
  );
  background-size: 40px 40px;
}

.contact-cta .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.contact-cta .cta-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 30px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.contact-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-primary-btn,
.cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s ease;
}

.cta-primary-btn {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-secondary-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

/* ================================================
   LEGAL PAGES (Impressum & Datenschutz)
   ================================================ */

.legal-content-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  position: relative;
}

.legal-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgba(27, 96, 151, 0.03) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Single Card for Legal Pages */
.legal-single-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(27, 96, 151, 0.08);
}

.legal-single-card h2 {
  font-size: 1.35rem;
  color: var(--gray-700);
  margin: 32px 0 16px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(27, 96, 151, 0.1);
}

.legal-single-card h2:first-child {
  margin-top: 0;
}

.legal-single-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 24px 0 12px;
  font-weight: 500;
}

.legal-single-card h4 {
  font-size: 1rem;
  color: var(--dark);
  margin: 20px 0 10px;
  font-weight: 500;
}

.legal-single-card p {
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 16px;
}

.legal-single-card ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-single-card ul li {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-single-card ul li::marker {
  color: var(--primary);
}

.legal-single-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-single-card a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.legal-single-card img {
  max-width: 12rem;
  height: auto;
  margin-top: 8px;
}

/* Responsive Legal Pages */
@media (max-width: 767px) {
  .legal-content-section {
    padding: 60px 0 80px;
  }

  .legal-single-card {
    padding: 24px 20px;
  }

  .legal-single-card h2 {
    font-size: 1.15rem;
    margin: 28px 0 14px;
  }

  .legal-single-card h3 {
    font-size: 1rem;
  }

  .legal-single-card img {
    max-width: 10rem;
  }
}

/* ================================================
   LANGUAGE SWITCHER
   ================================================ */

.menu-language {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4px;
  margin-right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  list-style: none;
}

/* When header is scrolled – adjust class if needed */
.header-transparent.scrolled .menu-language {
  background: rgba(27, 96, 151, 0.08);
  border-color: rgba(27, 96, 151, 0.15);
}

.menu-language .lang-item {
  margin: 0;
}

.menu-language .lang-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: none;
  background: transparent;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* Homepage color variant */
.page-id-8 .menu-language .lang-item a,
.page-id-93 .menu-language .lang-item a {
  color: var(--dark);
}

.header-transparent.scrolled .menu-language .lang-item a,
.page-id-8 .header-transparent.scrolled .menu-language .lang-item a,
.page-id-93 .header-transparent.scrolled .menu-language .lang-item a {
  color: var(--text);
}

/* Hover state */
.menu-language .lang-item a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header-transparent.scrolled .menu-language .lang-item a:hover {
  background: rgba(27, 96, 151, 0.1);
}

/* Active language */
.menu-language .lang-item.current-lang a {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(27, 96, 151, 0.3);
}

.header-transparent.scrolled .menu-language .lang-item.current-lang a {
  background: var(--primary);
  color: #fff;
}

/* Flag image */
.menu-language .lang-item a img {
  width: 20px !important;
  height: 15px !important;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Language label spacing */
.menu-language .lang-item a span {
  margin-left: 0.3em;
}

/* Language Switcher Responsive */

@media (max-width: 1024px) {
  .menu-language {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
    z-index: 1001;
  }
}

@media (max-width: 480px) {
  .menu-language {
    padding: 3px;
    gap: 2px;
  }

  .menu-language .lang-item a {
    padding: 5px 8px;
    gap: 4px;
    font-size: 0.7rem;
  }

  .menu-language .lang-item a span {
    display: none;
  }

  .menu-language .lang-item a img {
    width: 22px;
    height: 16px;
  }
}

/* ================================================
   EXIT INTENT POPUP - Premium Design
   ================================================ */

.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.exit-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-modal {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  padding: 48px 40px;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.exit-popup-overlay.active .exit-popup-modal {
  transform: scale(1) translateY(0);
}

/* Close Button */
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.exit-popup-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

/* Decorative Elements */
.exit-popup-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
}

.decor-circle.decor-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.08;
  top: -100px;
  right: -80px;
}

.decor-circle.decor-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  opacity: 0.06;
  bottom: -60px;
  left: -60px;
}

/* Content */
.exit-popup-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Icon */
.exit-popup-icon {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Title */
.exit-popup-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.exit-popup-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.exit-popup-subtitle strong {
  color: var(--primary);
}

/* Offer Box */
.exit-popup-offer {
  border-radius: 16px;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

.exit-popup-offer::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.05'%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");
  opacity: 0.5;
}

.offer-badge {
  position: absolute;
  top: 0px;
  right: 20px;
  background: var(--secondary);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 0 0 8px 8px;
}

.offer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-highlight {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.offer-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Benefits */
.exit-popup-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exit-popup-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
}

.exit-popup-benefits li i {
  color: #10b981;
  font-size: 1rem;
}

/* CTA Buttons */
.exit-popup-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.exit-popup-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.exit-popup-btn.primary {
  border-radius: 16px;
  color: white;
  box-shadow: 0 8px 20px rgba(27, 96, 151, 0.3);
}

.exit-popup-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 96, 151, 0.4);
}

.exit-popup-btn.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.exit-popup-btn.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Trust */
.exit-popup-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.trust-stars {
  display: flex;
  gap: 2px;
}

.trust-stars i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.exit-popup-trust span {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Exit Popup Responsive */
@media (max-width: 767px) {
  .exit-popup-modal {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .offer-badge {
    padding: 4px 10px;
    font-size: 0.6rem;
  }

  .exit-popup-title {
    font-size: 1.6rem;
  }

  .exit-popup-subtitle {
    font-size: 1rem;
  }

  .offer-highlight {
    font-size: 1.3rem;
  }

  .exit-popup-actions {
    flex-direction: column;
  }

  .exit-popup-btn {
    padding: 14px 20px;
  }

  .exit-popup-trust {
    flex-direction: column;
    gap: 6px;
  }
}

/* ================================================
   PRICE CALCULATOR / MALER FORM STYLES
   WP-Forms compatible - Add wrapper class .maler-form
   to WPForms container for automatic styling
   ================================================ */

/* Form Section */
.price-form-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

/* Form Wrapper - Add .price-form-wrapper or .maler-form to form container */
.price-form-wrapper,
.maler-form {
  /* max-width: 800px; */
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.price-form-wrapper::before,
.maler-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Form Section Titles */
.form-section-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f4f8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title:first-of-type {
  margin-top: 0;
}

.form-section-title i {
  font-size: 1rem;
  opacity: 0.8;
}

/* Form Groups - Works with .form-group or WPForms .wpforms-field */
.price-form .form-group,
.maler-form .form-group,
.maler-form .wpforms-field {
  margin-bottom: 24px;
}

/* Form Labels */
.price-form label,
.maler-form label,
.maler-form .wpforms-field-label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Form Inputs, Selects, Textareas */
.price-form input[type="text"],
.price-form input[type="email"],
.price-form input[type="tel"],
.price-form input[type="number"],
.price-form select,
.price-form textarea,
.maler-form input[type="text"],
.maler-form input[type="email"],
.maler-form input[type="tel"],
.maler-form input[type="number"],
.maler-form select,
.maler-form textarea,
.maler-form .wpforms-field input,
.maler-form .wpforms-field select,
.maler-form .wpforms-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.price-form input:focus,
.price-form select:focus,
.price-form textarea:focus,
.maler-form input:focus,
.maler-form select:focus,
.maler-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 96, 151, 0.1);
}

.price-form textarea,
.maler-form textarea {
  min-height: 120px;
  resize: vertical;
}

.price-form select,
.maler-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231b6097' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group-options,
.maler-form .wpforms-field-radio ul,
.maler-form .wpforms-field-checkbox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  list-style: none;
  padding: 0;
}

/* Radio/Checkbox Options */
.radio-option,
.checkbox-option,
.maler-form .wpforms-field-radio li,
.maler-form .wpforms-field-checkbox li {
  position: relative;
}

.radio-option input,
.checkbox-option input,
.maler-form .wpforms-field-radio input,
.maler-form .wpforms-field-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: auto;
  padding: 0;
}

.radio-option label,
.checkbox-option label,
.maler-form .wpforms-field-radio label,
.maler-form .wpforms-field-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  background: #fff;
  margin-bottom: 0;
}

.radio-option label::before,
.maler-form .wpforms-field-radio label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-option label::before,
.maler-form .wpforms-field-checkbox label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.radio-option input:checked + label,
.checkbox-option input:checked + label,
.maler-form .wpforms-field-radio input:checked + label,
.maler-form .wpforms-field-checkbox input:checked + label {
  border-color: var(--primary);
  background: rgba(27, 96, 151, 0.05);
}

.radio-option input:checked + label::before,
.maler-form .wpforms-field-radio input:checked + label::before {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 4px #fff;
}

.checkbox-option input:checked + label::before,
.maler-form .wpforms-field-checkbox input:checked + label::before {
  border-color: var(--primary);
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.radio-option:hover label,
.checkbox-option:hover label,
.maler-form .wpforms-field-radio li:hover label,
.maler-form .wpforms-field-checkbox li:hover label {
  border-color: var(--primary);
}

/* Vertical layout - 2 items per row on desktop */
.radio-group.vertical,
.checkbox-group-options.vertical,
.maler-form .wpforms-field-radio.vertical ul,
.maler-form .wpforms-field-checkbox.vertical ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.radio-group.vertical .radio-option,
.checkbox-group-options.vertical .checkbox-option,
.radio-group.vertical .radio-option label,
.checkbox-group-options.vertical .checkbox-option label {
  width: 100%;
}

/* Two column layout for form fields */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Privacy Checkbox */
.privacy-checkbox,
.maler-form .wpforms-field-gdpr-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
}

.privacy-checkbox input[type="checkbox"],
.maler-form .wpforms-field-gdpr-checkbox input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
  position: relative;
  opacity: 1;
  padding: 0;
}

.privacy-checkbox label,
.maler-form .wpforms-field-gdpr-checkbox label {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.privacy-checkbox label::before,
.maler-form .wpforms-field-gdpr-checkbox label::before {
  display: none;
}

.privacy-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.price-form button:last-child {
  margin-top: 25px;
}

/* Info Box */
.form-info-box {
  background: linear-gradient(
    135deg,
    rgba(27, 96, 151, 0.08) 0%,
    rgba(52, 152, 219, 0.08) 100%
  );
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 30px;
}

.form-info-box p {
  margin: 0;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-info-box i {
  color: var(--primary);
  margin-right: 8px;
}

/* Price Form Responsive */
@media (max-width: 767px) {
  .price-form-wrapper,
  .maler-form {
    padding: 30px 20px;
    margin: 0 15px;
    border-radius: 16px;
  }

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

  .radio-group.vertical,
  .checkbox-group-options.vertical,
  .maler-form .wpforms-field-radio.vertical ul,
  .maler-form .wpforms-field-checkbox.vertical ul {
    grid-template-columns: 1fr;
  }

  .radio-group:not(.vertical),
  .checkbox-group-options:not(.vertical) {
    flex-direction: column;
  }

  .radio-group:not(.vertical) .radio-option,
  .checkbox-group-options:not(.vertical) .checkbox-option {
    width: 100%;
  }

  .radio-group:not(.vertical) .radio-option label,
  .checkbox-group-options:not(.vertical) .checkbox-option label {
    width: 100%;
  }

  .form-section-title {
    font-size: 1rem;
  }

  .price-form .submit-btn,
  .maler-form .wpforms-submit {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ================================================
   SERVICE DETAIL PAGE STYLES
   ================================================ */

/* CSS Variables for Service Detail */
.service-detail {
  --sd-primary: #1b6097;
  --sd-primary-light: #2d7ab8;
  --sd-primary-dark: #14486f;
  --sd-secondary: #e8a54b;
  --sd-accent-coral: #ff6b6b;
  --sd-accent-teal: #4ecdc4;
  --sd-accent-purple: #9b59b6;
  --sd-accent-green: #27ae60;
  --sd-accent-orange: #f39c12;
  --sd-accent-pink: #e91e63;
  --sd-cream: #fdf8f3;
  --sd-cream-dark: #f5ebe0;
  --sd-text: #2c3e50;
  --sd-text-light: #5a6c7d;
  --sd-white: #ffffff;
  --sd-shadow-soft: 0 4px 20px rgba(27, 96, 151, 0.08);
  --sd-shadow-medium: 0 8px 40px rgba(27, 96, 151, 0.12);
  --sd-shadow-strong: 0 15px 60px rgba(27, 96, 151, 0.18);
  --sd-radius: 20px;
  --sd-radius-lg: 30px;
}

/* Main Content Section */
.service-detail-main {
  padding: var(--section-padding) 0;
  background: var(--light);
  position: relative;
}

.service-detail-benefits-main {
  padding-bottom: var(--space-4xl);
  position: relative;
}

.service-detail-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.service-detail-content {
  position: relative;
}

.service-detail-content .section-header {
  margin-bottom: 20px;
}

.service-detail-content .section-header .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gray-700);
  text-decoration: none;
}

.service-detail-content .section-header .section-title span {
  color: var(--sd-primary);
}

.service-detail-intro-text {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 35px;
  padding-left: 20px;
  border-left: 4px solid var(--sd-accent-teal);
}

.service-detail-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.service-detail-highlight-box {
  padding-left: 1rem;
  border-left: 5px solid #ff6b6b;
  margin-bottom: var(--space-lg);
}

.service-detail-highlight-box h3 {
  text-align: left;
  font-size: 1.5rem;
  color: var(--gray-600);
  margin-bottom: 15px;
}

.service-detail-highlight-box p {
  margin-bottom: 0;
}

.service-detail-content h4 {
  margin: 20px 0 10px;
  font-size: var(--text-xl);
  color: var(--gray-600);
}

/* Process Steps List */
.service-detail-steps {
  margin: 10px 0 0;
  list-style: none;
  padding: 0;
}

.service-detail-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-detail-step-item:last-child {
  border-bottom: none;
}

.service-detail-step-item i {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sd-primary);
  font-size: 0.85rem;
  background: rgba(27, 96, 151, 0.1);
  border-radius: 50%;
}

.service-detail-step-item span {
  flex: 1;
  font-size: 1rem;
  color: var(--sd-text);
}

/* Animated Sidebar */
.service-detail-sidebar {
  position: sticky;
  top: 120px;
  overflow: visible !important;
}

/* ========================================
   VISUAL COMPOSITION FOR SIDEBAR IMAGES
   ======================================== */
.sd-visual-composition {
  position: relative;
  width: 100%;
}

.sd-visual-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  z-index: 2;
}

.sd-visual-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sd-visual-composition:hover .sd-visual-main {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.16);
}

.sd-visual-composition:hover .sd-visual-main img {
  transform: scale(1.03);
}

/* ========================================
   STYLE 1: Corner Frames with Dots
   ======================================== */
.sd-visual-composition.style-1 {
  padding: 25px;
}

.sd-visual-composition.style-1 .sd-visual-main {
  border: 4px solid #fff;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Corner Decorations */
.sd-deco-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--primary);
  z-index: 1;
  opacity: 0.6;
  transition: all 0.4s ease;
}

.sd-deco-corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 16px 0 0 0;
}

.sd-deco-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-radius: 0 0 16px 0;
}

.sd-visual-composition.style-1:hover .sd-deco-corner {
  opacity: 1;
}

.sd-visual-composition.style-1:hover .sd-deco-corner.top-left {
  transform: translate(-5px, -5px);
}

.sd-visual-composition.style-1:hover .sd-deco-corner.bottom-right {
  transform: translate(5px, 5px);
}

/* Dots Pattern */
.sd-deco-dots {
  position: absolute;
  width: 70px;
  height: 70px;
  bottom: 100px;
  right: -10px;
  background-image: radial-gradient(var(--accent) 2.5px, transparent 2.5px);
  background-size: 12px 12px;
  opacity: 0.4;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.sd-visual-composition.style-1:hover .sd-deco-dots {
  opacity: 0.6;
}

/* ========================================
   STYLE 2: Ring & Lines with Accent
   ======================================== */
.sd-visual-composition.style-2 {
  padding: 30px 20px 20px 30px;
}

.sd-visual-composition.style-2 .sd-visual-main {
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.13);
}

/* Decorative Ring */
.sd-deco-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -15px;
  left: -15px;
  border: 3px solid transparent;
  border-top-color: var(--accent);
  border-left-color: var(--accent);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.sd-visual-composition.style-2:hover .sd-deco-ring {
  opacity: 0.8;
  transform: rotate(45deg) scale(1.05);
}

/* Diagonal Lines */
.sd-deco-lines {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -5px;
  right: 40px;
  background: repeating-linear-gradient(
    -45deg,
    var(--primary) 0,
    var(--primary) 2px,
    transparent 2px,
    transparent 8px
  );
  opacity: 0.15;
  z-index: 1;
  border-radius: 8px;
  transition: opacity 0.4s ease;
}

.sd-visual-composition.style-2:hover .sd-deco-lines {
  opacity: 0.25;
}

/* Accent Bar */
.sd-deco-accent {
  position: absolute;
  width: 5px;
  height: 80px;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-accent);
  border-radius: 3px;
  z-index: 1;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.sd-visual-composition.style-2:hover .sd-deco-accent {
  height: 100px;
  opacity: 1;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 992px) {
  .sd-visual-composition {
    max-width: 480px;
    margin: 0 auto;
  }

  .sd-visual-composition.style-1 {
    padding: 20px;
  }

  .sd-deco-corner {
    width: 60px;
    height: 60px;
  }

  .sd-deco-dots {
    width: 55px;
    height: 55px;
  }

  .sd-visual-composition.style-2 {
    padding: 25px 15px 15px 25px;
  }

  .sd-deco-ring {
    width: 80px;
    height: 80px;
  }

  .sd-deco-lines {
    width: 50px;
    height: 50px;
  }

  .sd-deco-accent {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .sd-visual-main {
    border-radius: 16px;
  }

  .sd-visual-composition.style-1 {
    padding: 18px;
  }

  .sd-visual-composition.style-1 .sd-visual-main {
    border-width: 3px;
  }

  .sd-deco-corner {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }

  .sd-visual-composition.style-2 .sd-visual-main {
    border-radius: 18px;
  }

  .sd-deco-ring {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }
}

@media (max-width: 576px) {
  .sd-visual-composition {
    max-width: 100%;
  }

  .sd-visual-composition.style-1 {
    padding: 15px;
  }

  .sd-deco-corner {
    width: 40px;
    height: 40px;
    border-radius: 10px 0 0 0;
  }

  .sd-deco-corner.bottom-right {
    border-radius: 0 0 10px 0;
  }

  .sd-deco-dots {
    width: 45px;
    height: 45px;
    right: -5px;
    bottom: 50px;
  }

  .sd-visual-composition.style-2 {
    padding: 20px 12px 12px 20px;
  }

  .sd-deco-ring {
    width: 55px;
    height: 55px;
    top: -8px;
    left: -8px;
  }

  .sd-deco-lines {
    width: 40px;
    height: 40px;
    right: 25px;
  }

  .sd-deco-accent {
    height: 50px;
    width: 4px;
    right: 0;
  }

  .sd-visual-composition.style-2:hover .sd-deco-accent {
    height: 65px;
  }
}

/* Benefits Section with Contact Cards */
.service-detail-benefits {
  background: var(--white);
}

.service-detail-benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-detail-benefits-content .section-header {
  margin-bottom: 30px;
}

.service-detail-benefits-content > p {
  font-size: 1.1rem;
  color: var(--gray-600);
}

.service-detail-benefits-list {
  display: grid;
  gap: 20px;
}

.service-detail-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--light);
  border-radius: var(--sd-radius);
  transition: all 0.3s ease;
}

.service-detail-benefit-item:hover {
  transform: translateX(10px);
  box-shadow: var(--sd-shadow-soft);
}

.service-detail-benefit-icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: white;
}

.service-detail-benefit-item:nth-child(1) .service-detail-benefit-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}
.service-detail-benefit-item:nth-child(2) .service-detail-benefit-icon {
  background: linear-gradient(135deg, #4ecdc4, #3dbdb5);
}
.service-detail-benefit-item:nth-child(3) .service-detail-benefit-icon {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.service-detail-benefit-item:nth-child(4) .service-detail-benefit-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.service-detail-benefit-text h4 {
  font-size: 1.15rem;
  color: var(--sd-text);
  margin-bottom: 8px;
  font-weight: 700;
}

.service-detail-benefit-text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Contact Cards in Benefits Section */
.service-detail-contact-side {
  padding: 40px;
  background: var(--light);
  border: 1px solid #e6e6e6;
  border-radius: var(--sd-radius-lg);
  position: relative;
  overflow: hidden;
}

.service-detail-contact-side::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(78, 205, 196, 0.2),
    rgba(255, 107, 107, 0.2)
  );
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: sdFloat 8s ease-in-out infinite;
}

.service-detail-contact-side::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(155, 89, 182, 0.15),
    rgba(39, 174, 96, 0.15)
  );
  border-radius: 50%;
  bottom: -75px;
  left: -75px;
  animation: sdFloat 6s ease-in-out infinite reverse;
}

.service-detail-contact-side-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.service-detail-contact-side-header h3 {
  font-family: "Paytone One", sans-serif;
  font-size: 1.5rem;
  color: var(--sd-text);
  margin-bottom: 10px;
}

.service-detail-contact-side-header p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.service-detail-contact-cards {
  display: grid;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.service-detail-contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-detail-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(78, 205, 196, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-detail-contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-detail-contact-card:hover::before {
  opacity: 1;
}

.service-detail-contact-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.service-detail-contact-card.phone .service-detail-contact-card-icon {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.service-detail-contact-card.whatsapp .service-detail-contact-card-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.service-detail-contact-card.email .service-detail-contact-card-icon {
  background: linear-gradient(
    135deg,
    var(--sd-primary),
    var(--sd-primary-light)
  );
  color: white;
  box-shadow: 0 8px 20px rgba(27, 96, 151, 0.3);
}

.service-detail-contact-card-text {
  position: relative;
  z-index: 1;
}

.service-detail-contact-card-text h4 {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

.service-detail-contact-card-text p {
  font-size: 1.1rem;
  color: var(--sd-text);
  font-weight: 700;
  margin: 0;
}

/* Contact Form Section */
.service-detail-contact {
  background: var(--light);
  position: relative;
}

.service-detail-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.service-detail-contact-info {
  padding-right: 40px;
}

@media (min-width: 1025px) {
  .service-detail-contact-info {
    position: sticky;
    top: 120px;
  }
}

.service-detail-contact-info .section-header {
  margin-bottom: 25px;
}

.service-detail-contact-info > p {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.service-detail-contact-info > p:last-of-type {
  margin-bottom: var(--space-lg);
}

/* Responsive Styles for Service Detail */
@media (max-width: 1200px) {
  .service-detail-content-wrapper {
    gap: 50px;
  }
  .service-detail-benefits-wrapper {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .service-detail-content-wrapper,
  .service-detail-benefits-wrapper,
  .service-detail-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-sidebar {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }

  .service-detail-contact-info {
    padding-right: 0;
  }

  .service-detail-contact-side {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .service-detail-step-item {
    padding: 12px 0;
    gap: 12px;
  }

  .service-detail-contact-side {
    padding: 30px 25px;
  }

  .service-detail-benefits-main {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

/* Reverse Layout (Image Left, Content Right) */
.service-detail-content-wrapper.service-detail-reverse {
  grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 992px) {
  .service-detail-content-wrapper.service-detail-reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-content-wrapper.service-detail-reverse
    .service-detail-sidebar {
    order: -1;
  }
}

/* Full Width Content Section */
.service-detail-full-width {
  max-width: 1000px;
  margin: 0 auto;
}

.service-detail-full-width .section-header.center {
  text-align: center;
  margin-bottom: 40px;
}

.service-detail-full-width .section-header.center .section-tag {
  display: inline-flex;
  margin: 0 auto 20px;
}

.service-detail-full-content {
  text-align: center;
}

.service-detail-full-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   LOCATION PAGE VERSION 1 - SOOTHING THEME
   ======================================== */

/* Hero Section V1 */
.loc-v1-hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #fdf4ff 50%, #fff7ed 100%);
}

.loc-v1-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.loc-v1-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.loc-v1-gradient-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(78, 205, 196, 0.4) 0%,
    transparent 70%
  );
  top: -100px;
  left: -100px;
  animation: floatOrb1 20s ease-in-out infinite;
}

.loc-v1-gradient-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(155, 89, 182, 0.35) 0%,
    transparent 70%
  );
  top: 50%;
  right: -100px;
  animation: floatOrb2 25s ease-in-out infinite;
}

.loc-v1-gradient-orb.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.3) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: 30%;
  animation: floatOrb3 22s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 30px);
  }
}

@keyframes floatOrb2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-40px, -40px);
  }
}

@keyframes floatOrb3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.loc-v1-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.loc-v1-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.loc-v1-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.loc-v1-hero-badge i {
  color: var(--accent);
}

.loc-v1-hero-title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.loc-v1-hero-title span {
  color: var(--primary);
  position: relative;
}

.loc-v1-hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.loc-v1-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.loc-v1-hero-cta .btn-outline-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.loc-v1-hero-cta .btn-outline-light:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}

.loc-v1-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.loc-v1-hero-wave svg {
  width: 100%;
  height: 80px;
}

/* Content Section V1 - Content + Form Layout */
.loc-v1-content-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

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

.loc-v1-section-title {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 20px;
}

.loc-v1-section-title span {
  color: var(--secondary);
}

.loc-v1-text-content p {
  font-size: 1.1rem;
}

.loc-v1-text-content p:last-child,
.loc-v1-about-content p:last-child {
  margin-bottom: 0;
}

/* Form Wrapper */
.loc-v1-form-wrapper {
  position: sticky;
  top: 100px;
}

.loc-v1-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.loc-v1-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.loc-v1-form-header h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.loc-v1-form-header p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* About Section V1 */
.loc-v1-about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.loc-v1-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Visual Composition for About */
.loc-v1-about-visual {
  position: relative;
}

/* Premium Visual Composition - Clean Professional Design */
.loc-v1-visual-composition {
  position: relative;
  padding: 30px;
}

.loc-v1-visual-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 25px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.loc-v1-visual-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

.loc-v1-visual-main img {
  width: 100%;
  height: auto;
  display: block;
  /*   aspect-ratio: 1/1.2; */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.loc-v1-visual-composition:hover .loc-v1-visual-main img {
  transform: scale(1.03);
}

/* Floating Accent Element - Top Right Corner Dots */
.loc-v1-visual-accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: none;
  z-index: 1;
}

.loc-v1-visual-accent::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    var(--primary) 3px,
    transparent 3px
  );
  background-size: 14px 14px;
  opacity: 0.6;
  animation: floatDots 6s ease-in-out infinite;
}

.loc-v1-visual-accent::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  animation: pulseRing 3s ease-in-out infinite;
}

/* Floating Border Element - Offset Frame with Gradient */
.loc-v1-visual-border {
  position: absolute;
  top: 55px;
  left: 0;
  width: 90%;
  height: calc(100% - 55px);
  border: none;
  border-radius: 16px;
  background: #1b60975e;
  opacity: 0.15;
  z-index: 0;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
}

.loc-v1-visual-composition:hover .loc-v1-visual-border {
  transform: translate(-5px, 5px);
  opacity: 0.25;
}

@keyframes floatDots {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(20deg) translateY(-10px);
  }
}

@keyframes slideAccent {
  0%,
  100% {
    width: 40px;
    opacity: 0.8;
  }
  50% {
    width: 60px;
    opacity: 0.4;
  }
}

/* About Content */
.loc-v1-about-content {
  padding: 20px 0;
}

.loc-v1-about-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
}

.loc-v1-main-content .btn {
  margin-top: 25px;
}

/* CTA Section with Background Image */
.loc-v1-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.loc-v1-cta-bg {
  position: absolute;
  inset: 0;
}

.loc-v1-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-v1-cta-overlay {
  position: absolute;
  inset: 0;
  background: #0f2d44bf;
}

.loc-v1-cta-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.loc-v1-cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.loc-v1-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}

.loc-v1-cta-content .btn-primary.btn {
  color: var(--white);
  margin-top: 20px;
  background: linear-gradient(
    180deg,
    var(--primary-light) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  border: 2px solid var(--primary);
  box-shadow: none;
  transition: all var(--transition-smooth);
}

.loc-v1-cta-content .btn-primary.btn:hover {
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-light) 50%,
    var(--primary) 100%
  );
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(27, 96, 151, 0.4);
}

.loc-v1-cta-content .btn-primary.btn::after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .loc-v1-cta-content {
    max-width: 100%;
  }

  .loc-v1-form-wrapper {
    overflow: visible !important;
  }
}

/* Intro Section V1 */
.loc-v1-intro {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.loc-v1-intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.loc-v1-intro-content .section-title {
  margin-bottom: 24px;
}

.loc-v1-intro-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.loc-v1-intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.loc-v1-feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #fdf4ff 100%);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.loc-v1-feature-tag i {
  color: var(--accent);
}

.loc-v1-intro-visual {
  position: relative;
}

.loc-v1-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.loc-v1-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.loc-v1-image-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
}

.loc-v1-float-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.loc-v1-float-text .number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.loc-v1-float-text .label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Services Showcase V1 */
.loc-v1-services {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.loc-v1-services-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.loc-v1-services .container {
  position: relative;
  z-index: 2;
}

.loc-v1-services-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.loc-v1-service-tag {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 60px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.4s ease;
  cursor: pointer;
}

.loc-v1-tag-icon {
  width: 36px;
  height: 36px;
  background: var(--tag-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.loc-v1-service-tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--tag-color);
}

.loc-v1-service-tag:hover .loc-v1-tag-icon {
  transform: scale(1.1);
}

.loc-v1-services-cta {
  text-align: center;
  margin-top: 50px;
}

/* Benefits V1 */
.loc-v1-benefits {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.loc-v1-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.loc-v1-benefit-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.loc-v1-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.loc-v1-benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--icon-bg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 24px;
}

.loc-v1-benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.loc-v1-benefit-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Contact Section V1 */
.loc-v1-contact {
  padding: var(--section-padding) 0;
  position: relative;
  background: linear-gradient(135deg, #1b6097 0%, #0d3451 100%);
  overflow: hidden;
}

.loc-v1-contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loc-v1-contact-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.loc-v1-contact-shape.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.loc-v1-contact-shape.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}

.loc-v1-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.loc-v1-contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.loc-v1-contact-info h2 span {
  color: var(--accent);
}

.loc-v1-contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.loc-v1-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.loc-v1-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.loc-v1-info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.loc-v1-info-card.whatsapp {
  background: rgba(37, 211, 102, 0.2);
}

.loc-v1-info-card.whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
}

.loc-v1-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

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

.loc-v1-info-text .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.loc-v1-info-text .value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.loc-v1-address {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.loc-v1-contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Districts V1 */
.loc-v1-districts {
  padding: var(--section-padding) 0;
  background: var(--light);
}

.loc-v1-districts-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

/* ========================================
   RESPONSIVE STYLES FOR LOCATION PAGES V1
   ======================================== */
@media (max-width: 1200px) {
  .loc-v1-intro-wrapper,
  .loc-v1-contact-wrapper {
    gap: 60px;
  }

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

@media (max-width: 992px) {
  .loc-v1-intro-wrapper,
  .loc-v1-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .loc-v1-intro-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .loc-v1-hero {
    padding: 150px 0 100px;
  }

  .loc-v1-hero-title {
    font-size: 2.25rem;
  }

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

  .loc-v1-image-float {
    bottom: -15px;
    left: 15px;
    padding: 16px 20px;
  }

  .loc-v1-contact-form-wrapper {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .loc-v1-hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .loc-v1-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .loc-v1-feature-tag {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .loc-v1-service-tag {
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .loc-v1-tag-icon {
    width: 32px;
    height: 32px;
  }
}

/* ================================================
   CUSTOM SECTIONS STYLES - Optimized
   ================================================ */

/* ================================================
   COLORS SECTION - Two Column Layout
   ================================================ */
.colors-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #e8f4fd 100%);
  overflow: hidden;
}

.colors-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(27, 96, 151, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.colors-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(45, 122, 184, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.colors-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

/* Centered Vertical Partition */
.colors-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 70%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(27, 96, 151, 0.25) 15%,
    rgba(27, 96, 151, 0.25) 85%,
    transparent 100%
  );
  pointer-events: none;
}

/* Column Base Styles */
.colors-column {
  display: flex;
  flex-direction: column;
}

/* Colors Column (Left) */
.colors-content {
  height: 100%;
}

/* Colors Section Title Span Override */
.colors-section .section-title span {
  color: var(--secondary);
}

.colors-text {
  font-size: 1.05rem;
  line-height: 1.7;
}

.colors-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.color-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(27, 96, 151, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.color-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 96, 151, 0.1);
}

.color-feature i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
}

/* Colorful icon backgrounds */
.color-feature:nth-child(1) i {
  background: linear-gradient(135deg, #4ecdc4, #3dbdb5);
}

.color-feature:nth-child(2) i {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.color-feature:nth-child(3) i {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.color-feature span {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.malerarbeiten-column .content-section-lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.malerarbeiten-column .content-section-text {
  margin-bottom: var(--space-sm);
}

.malerarbeiten-column .content-section-text:last-of-type {
  margin-bottom: 0;
}

/* ================================================
   REMAINING CONTENT SECTIONS
   ================================================ */

/* Section: Malermeister Berlin */
.malermeister-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.malermeister-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.malermeister-visual {
  order: 1;
}

.malermeister-content {
  order: 2;
}

/* Section Title Span Override for content sections */
.malermeister-section .section-title span,
.einsatzgebiete-section .section-title span {
  color: var(--secondary);
}

.content-section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.content-section-text:last-of-type {
  margin-bottom: 0;
}

/* Image Frame Style */
.image-frame {
  position: relative;
}

.image-frame-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame-inner img {
  max-height: 420px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}

.image-frame-inner:hover img {
  transform: scale(1.03);
}

.image-frame-deco {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: var(--radius-xl);
  top: var(--space-md);
  right: var(--space-md);
  z-index: -1;
  opacity: 0.25;
}

/* Section: Einsatzgebiete */
.einsatzgebiete-section {
  padding-top: var(--space-xl);
  background: var(--white);
}

.einsatzgebiete-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.einsatzgebiete-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.einsatzgebiete-header .section-tag {
  display: inline-flex;
  margin-bottom: var(--space-md);
}

.einsatzgebiete-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.einsatzgebiet-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.einsatzgebiet-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.einsatzgebiet-item span:first-child {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Colorful icon backgrounds for Einsatzgebiete */
.einsatzgebiet-item:nth-child(1) span:first-child svg {
  fill:#FFF;
}
.einsatzgebiet-item:nth-child(1) span:first-child {
  background: linear-gradient(135deg, #4ecdc4, #3dbdb5);
}

.einsatzgebiet-item:nth-child(2) span:first-child  {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.einsatzgebiet-item:nth-child(3) span:first-child {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.einsatzgebiet-item:nth-child(4) span:first-child {
  background: linear-gradient(135deg, #27ae60, #229954);
}

.einsatzgebiet-item:nth-child(5) span:first-child {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

.einsatzgebiet-item span {
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.5;
}

.einsatzgebiete-footer {
  text-align: center;
}

.einsatzgebiete-footer p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Section: Erfahrener Maler + Vorteile */
.erfahrung-vorteile-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  position: relative;
  overflow: hidden;
}

.erfahrung-vorteile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.erfahrung-vorteile-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.erfahrung-content {
  color: var(--white);
}

/* Light section tag for dark background */
.erfahrung-content .section-tag {
  color: var(--white);
}

.erfahrung-content .section-tag::before {
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.5));
}

.erfahrung-content .section-title {
  color: var(--white);
}

.erfahrung-content .section-title span {
  color: var(--secondary);
}

.erfahrung-content .content-section-text {
  color: rgba(255, 255, 255, 0.9);
}

.erfahrung-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.erfahrung-cta .btn-primary {
  background: var(--white);
  color: var(--primary);
  border: none;
}

.erfahrung-cta .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.vorteile-content {
  color: var(--white);
}

.vorteile-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.vorteile-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.vorteile-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.vorteil-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-md);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.vorteil-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.vorteil-item i {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.vorteil-item span {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */
@media (max-width: 1024px) {
  .colors-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* Hide vertical partition, show horizontal */
  .colors-wrapper::before {
    left: 50%;
    top: auto;
    bottom: calc(50% - 0%);
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(27, 96, 151, 0.25) 15%,
      rgba(27, 96, 151, 0.25) 85%,
      transparent 100%
    );
  }

  .malerarbeiten-column {
    padding-top: var(--space-xl);
  }

  .malermeister-wrapper,
  .erfahrung-vorteile-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .malermeister-visual,
  .malermeister-content {
    order: unset;
  }

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

@media (max-width: 768px) {
  .color-feature {
    padding: 0.5rem 0.85rem;
  }

  .color-feature i {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .vorteile-title {
    font-size: 1.4rem;
  }

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

  .malerarbeiten-column {
    padding-top: 0 !important;
  }

  .colors-wrapper::before {
    display: none;
  }

  section.faq .faq-item.active {
    box-shadow: none !important;
  }
}

@media (max-width: 480px) {
  .colors-features {
    flex-direction: column;
  }

  .color-feature {
    width: fit-content;
    justify-content: flex-start;
  }

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

  .vorteil-item i {
    margin-top: 0;
  }
}

p > a {
  color: #f3ad41;
  font-weight: 600;
  transition: 0.4s all ease-in-out;
}

p > a:hover {
  color: #2d7ab8;
  font-weight: 600;
}

.loc-v1-cta-section p > a:hover {
  color: #fdf8f3;
  font-weight: 600;
}

.page-template-template-city strong {
  font-weight: 600;
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .nav-link {
    font-size: 0.9rem !important;
  }
  .nav-items {
    gap: 21px;
  }

  .p-tb-60 {
    padding: 60px 0 !important;
  }
}

/*--about-us-page-css-end-*/
@media (max-width: 1400px) {
}
/* Large devices (desktops, <1200px) */
@media (max-width: 1199.98px) {
}

/* Medium devices (tablets, <992px) */
@media (max-width: 991.98px) {
  .has-standorte-mega .standorte-mega {
    position: unset !important;
    padding: 5px 10px !important;
  }
  a.standorte-footer-btn {
    display: none;
  }
}

/* Small devices (landscape phones, <768px) */
@media (max-width: 767.98px) {
}

/* Extra small devices (phones, <576px) */
@media (max-width: 575.98px) {
}

#BorlabsCookieBox .brlbs-cmpnt-widget,
.brlbs-cmpnt-container .brlbs-cmpnt-widget {
  bottom: 0px !important;
}

@media only screen and (max-width: 1024px) {
  #BorlabsCookieBox .brlbs-cmpnt-widget,
  .brlbs-cmpnt-container .brlbs-cmpnt-widget {
    bottom: 100px !important;
    z-index: 9999 !important;
  }
}
.swiper-btn:hover svg g path {
    fill: #fff;
}