﻿:root {
  --blue: #0A3B5C;
  --primary: #2C2E31;


  --brown: #96684a;
  --ink: #B0B5BA;

  --muted: rgba(49, 49, 49, 0.7);
  --soft: #f7f2ed;
  --line: #3131311A;
  --footer: #414141;
  --radius: 14px;
  --whitish: #F9F9FB;
  --white: #fff;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  color: var(--primary);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  background: #575656;

}

img {
  max-width: 100%;
}

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

.page-shell {
  max-width: 1320px;
  padding-left: 0;
  padding-right: 0;
  width: calc(100% - 40px);
}

.site-header {
  background: #575656;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1040;
}

.site-header.is-condensed {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.navbar {
  min-height: 80px;
  padding: 0;
}

.navbar-brand img {
  display: block;
  /* height: 46px;
  width: 183px; */
}

.navbar-nav {
  gap: 20px;
}

.nav-link {
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  padding: 28px 0;
  position: relative;
  transition: color 0.25s ease;
}

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

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

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

.header-actions .form-group {
  position: relative;
  margin: 0;
}

.header-actions .form-group .form-control {
  border: 1px solid #FFFFFF1A;
  padding: 8px 30px 8px 8px;
  border-radius: 14px;
  background: transparent;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: var(--whitish);
  -moz-appearance: window;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url(../assets/images/down-arrow.png) no-repeat 80% center !important;

}

.btn {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  padding: 12px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgb(10 59 92 / 24%);
}

.btn-gold:hover {
  background: transparent;
  border-color: #0a3b5c;
}

.btn-gold:hover svg path {
  stroke: var(--primary);
}

.btn-glass {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--blue);
  color: #fff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
}

.btn-outline-gold:hover {
  background: var(--blue);
  color: #fff;
}

.btn-outline-gold:hover svg path {
  fill: var(--soft);
}

.round-action,
.floating-whatsapp,
.back-to-top,
.social-link {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
}

.round-action {
  background: #20b15a;
  color: #fff;
  font-size: 22px;
  height: 46px;
  width: 46px;
}

.btn-txt {
  color: #F5F5F7;
  display: flex;
  align-items: center;
  grid-gap: 6px;

}

.hero {
  min-height: 800px;
  overflow: hidden;
  padding-top: 80px;
  position: relative;
}

.sub-hero,
.page-title-band {
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}

.sub-hero {
  align-items: center;
  display: flex;
  min-height: 520px;
  padding: 110px 0;
}

.sub-hero::after {
  background: rgba(49, 49, 49, 0.68);
  content: "";
  inset: 0;
  position: absolute;
}

.sub-hero>img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.sub-hero-content {
  color: #fff;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.sub-hero-content p:not(.eyebrow),
.page-title-band p:not(.eyebrow) {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 880px;
}

.page-title-band {
  background: linear-gradient(135deg, #faf7f3 0%, #fff 68%);
  border-bottom: 1px solid var(--line);
  padding: 118px 0 72px;
}

.hero-bg {
  inset: 0 0 0;
  position: absolute;
}

.hero-bg::after {
  background: rgba(49, 49, 49, 0.7);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero_video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-content {
  color: #fff;
  margin: 0 auto;
  max-width: 1520px;
  padding-top: 205px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  color: var(--brown);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(35px, 5vw, 76px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(35px, 3.2vw, 56px);
  line-height: 1.41;
}

.o-letter {
  color: var(--blue);

}

h2 {
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1.36;
  margin-bottom: 20px;
}

h3 {
  color: #2b2b2b;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
}

.hero-lead {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.8;
  margin: 0 auto 24px;
  max-width: 1180px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stats-wrap {
  margin-top: -78px;
  position: relative;
  z-index: 2;
}

.stats-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px #00000026;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 60px;
}

.home-page .stats-card {
  /* min-height: 154px; */
}

.stats-card article {
  align-items: center;
  display: flex;
  gap: 30px;
  min-width: 0;
}

.stats-card img {
  height: 74px;
  width: 74px;
}

.stats-card strong {
  color: #2b2b2b;
  display: block;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
}

.stats-card span {
  color: rgba(0, 14, 39, 0.8);
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.section-pad {
  padding: 100px 0;
}

.section-heading {
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--primary);
}

.trust-section {
  padding-bottom: 90px;
  padding-top: 100px;
}

.trust-section .image-stack img {
  aspect-ratio: 692 / 723;
}

.image-stack {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.image-stack::before {
  background: rgba(214, 169, 91, 0.2);
  border-radius: 10px;
  content: "";
  inset: 28px -22px -22px 28px;
  position: absolute;
  z-index: -1;
}

.image-stack img {
  aspect-ratio: 1.36;
  object-fit: cover;
  width: 100%;
}

.trust-section p,
.family-section p,
.service-area p,
.lead-copy {
  color: var(--muted);
  max-width: 700px;
}

.check-list {
  display: grid;
  gap: 13px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.kuche-list {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 !important;
}

.kuche-list li {
  width: 48%;
}

.kuche-list li::before,
.conte-list li::before {
  display: none;
}

.feature-list {
  padding: 0;
}

.conte-list {
  padding: 0;
  display: block;
}

.conte-list li {
  list-style: none;
  display: flex;
  align-items: center;
  grid-gap: 8px;
  color: #F9F9FB;
  margin-bottom: 8px;
}

.conte-list li svg {
  width: 20px;
  height: 20px;
}

.check-list span,
.feature-list li {
  align-items: center;
  color: var(--ink);
  /* display: flex; */
  gap: 10px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  top: 13px;
  left: -15px;
  bottom: 0;
  background: var(--ink);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.check-list i,
.feature-list svg {
  color: var(--blue);
  width: 17px;
  height: 17px;
}

.figma-mini-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.figma-mini-cards-3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.figma-mini-cards-3 article {
  height: 100%;
}

.figma-mini-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 100%;
  padding: 12px;
}

.figma-mini-cards h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.figma-mini-cards p {
  color: rgba(49, 49, 49, 0.8);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.soft-band {
  background: var(--soft);
}

.home-page .soft-band {
  padding-bottom: 90px;
  padding-top: 90px;
}

.process-section,
.family-section,
.team-section {
  padding-bottom: 96px;
  padding-top: 96px;
}

.family-section .gallery-mosaic {
  margin-left: auto;
  max-width: 650px;
}

.service-card {
  background: #fff;
  border: 1px solid #3131311A;
  border-radius: 10px;
  height: 100%;
  padding: 72px 30px 30px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-text {
  font-weight: 400;
  font-size: 19px;
  color: var(--primary);
  opacity: 0.6;
  line-height: 36px;

}

.soft-band .service-card {
  margin-top: 60px;
  min-height: 372px;
  position: relative;
}

.service-card:hover,
.team-card:hover {
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.service-icon {
  align-items: center;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex;
  width: 110px;
  height: 110px;
  border: 10px solid #B0B5BA;
  justify-content: center;
  left: 50%;
  margin-bottom: 6px;
  position: absolute;
  top: -60px;
  transform: translateX(-50%);
}

.service-icon img {
  display: block;
  height: 120px;
  object-fit: contain;
  width: 120px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}



.work_flx {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}

.work_item {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(250, 250, 250, 0.2) 100%);
  padding: 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.work_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.icon_flx {
  display: flex;
  align-items: center;
  grid-gap: 12px;
  margin-bottom: 20px;
  transition: transform 0.35s ease;
}

.work_item:hover .icon_flx {
  transform: translateY(-4px);
}

.work_item h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}

.work_item p {
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  opacity: 0.8;
}

.brand-strip {
  padding: 50px 0;
  background: #F9F9FB1A;
}

.refer-section p {
  color: var(--ink);
}

.partner_slider {
  margin-top: 40px;
  /* overflow: hidden; */
  position: relative;
}

.partner_track {
  display: flex;
  align-items: center;
  gap: 100px;
  animation: partner-slide 32s linear infinite;
  will-change: transform;
}

.partner_item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner_item:hover {
  transform: translateY(-3px);
}

.partner_item img {
  max-width: 100%;
  height: auto;
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner_item:hover img {
  transform: scale(1.07);
  opacity: 1;
}

.partner_track:hover {
  animation-play-state: paused;
}

@keyframes partner-slide {
  0% {
    transform: translateX(0);
  }

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

.feature-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 26px 0 28px;
  padding-left: 1.4rem;
}

.gallery-mosaic img {
  /* aspect-ratio: 1; */
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}

.team-section {}

.team-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 20px;
  height: 100%;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card img {
  aspect-ratio: 0.9;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  box-shadow: 2px 6px 9px rgba(0, 0, 0, 0.5);
}

.team-card h3 {
  font-size: 30px;
  margin: 20px 0 6px;
}

.team-card p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.owl-team button.owl-dot {
  background: rgb(176 181 186 / 20%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.owl-team .owl-dots {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  justify-content: center;
  margin: 40px auto 0;
}

.owl-team button.owl-dot.active {
  background: #fff;
  width: 80px;
  border-radius: 40px;
}

.references-section {
  overflow: hidden;
  padding-bottom: 90px;
  padding-top: 96px;
}

.owl-refer .item {
  height: 100%;
}

.owl-refer .item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.owl-bx {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}

.owl-bx img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.owl-txt {
  padding: 16px;
}

.owl-txt h3 {
  color: var(--primary);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0px;
  margin-bottom: 6px;

}

.owl-txt p {
  font-weight: 400;
  font-size: 17px;
  line-height: 29px;
  color: var(--primary);
  opacity: 0.8;

}

.references-section .btn-gold {
  margin: 50px auto 0;
  text-align: center;
  display: block;
  width: fit-content;
}

.owl-refer .owl-stage-outer {
  overflow: visible;
}

.owl-refer .owl-item {
  opacity: 0.8;
}

.owl-refer .owl-item.active,
.owl-refer .owl-item.active.center {
  opacity: 1;
}

.owl-refer .owl-item.active.center {
  box-shadow: 0px 7px 14px 0px rgb(49 49 49 / 60%);
  border-radius: 10px;
}

.home-page .cta-section {
  padding-top: 34px;
}

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

  100% {
    transform: translateX(-490px);
  }
}

.service-area {
  background: #faf7f3;
  padding-bottom: 96px;
  padding-top: 96px;
}

.map-card {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.map-txt {
  color: rgb(245 245 247 / 80%);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0px;
  margin: 30px auto 0;
  text-align: center;


}

.area-tags {
  display: flex;
  gap: 14px 28px;
  padding: 0;
  margin: 0 auto 30px;
  list-style: none;
  flex-wrap: wrap;
}

.area-tags li {
  position: relative;
  padding-left: 14px;
  color: rgb(0 14 39 / 90%);
  font-size: 18px;

  font-weight: 500;
  line-height: 1.4;
}

.area-tags li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgb(0 14 39 / 90%);
}

.faq-section {
  padding-bottom: 80px;
  padding-top: 96px;
}

.faq-accordion {
  max-width: 1520px;
  margin: 0 auto;
}

.accordion-item {
  background: rgba(250, 250, 250, 0.76);
  border: 1px solid var(--line);
  border-radius: 10px !important;
  margin-bottom: 18px;
  overflow: hidden;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--line);
}

.accordion-button {
  background: transparent;
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: #2b2b2b;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: rgba(49, 49, 49, 0.6);
  padding: 0 20px 20px;
}

.cta-section {
  padding: 40px 0 100px;
}

.cta-panel {
  align-items: center;
  border-radius: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 366px;
  overflow: hidden;
  padding: 60px 80px;
  position: relative;
  text-align: center;
}

.cta-panel::after {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  inset: 0;
  position: absolute;
}

.cta-panel>img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.cta-panel>div {
  max-width: 1080px;
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-panel p {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 60px 0 36px;
}

.footer-logo {
  /* height: 60px; */
  margin-bottom: 20px;
  width: auto;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  font-weight: 400;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-footer ul li a {
  width: 60%;
}

.site-footer h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 22px;
}

.address li a {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  width: 100%;
  /* word-break: break-all; */
}

.address li a svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.site-footer a:hover {
  color: #fff;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  height: 52px;
  width: 52px;
  min-width: 52px;
  border-radius: 50%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 28px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
}

.floating-whatsapp,
.back-to-top {
  border: 0;
  bottom: 24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  color: #fff;
  height: 54px;
  position: fixed;
  right: 24px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 54px;
  z-index: 1030;
}

.floating-whatsapp {
  background: #20b15a;
  font-size: 28px;
}

.back-to-top {
  background: var(--blue);
  bottom: 90px;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover,
.back-to-top:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible,
.reveal-section.is-visible,
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.72s ease var(--reveal-delay, 0ms), transform 0.72s ease var(--reveal-delay, 0ms), box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero .hero-content,
.page-hero h1,
.sub-hero-content {
  animation: heroReveal 0.9s cubic-bezier(.2, .75, .2, 1) both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.hero-bg img,
.page-hero img {
  animation: slowImageScale 12s ease-out both;
}

@keyframes slowImageScale {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.btn,
.nav-link,
.round-action,
.social-link,
.area-tags span,
.faq-tabs span {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.service-card:hover,
.team-card:hover,
.process-step:hover,
.icon-card:hover,
.contact-info-card:hover,
.icon-card-2:hover {
  border-color: rgb(76 131 176 / 45%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.gallery-grid img,
.gallery-mosaic img,
.intro-photo,
.contact-hero-image,
.map-card {
  transition: transform 0.55s ease, filter 0.55s ease, box-shadow 0.35s ease;
}

.gallery-grid img:hover,
.gallery-mosaic img:hover,
.intro-photo:hover,
.contact-hero-image:hover,
.map-card:hover {
  filter: saturate(1.05);
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.metric-strip.is-visible article {
  animation: metricPop 0.7s ease both;
}

.metric-strip.is-visible article:nth-child(2) {
  animation-delay: 0.08s;
}

.metric-strip.is-visible article:nth-child(3) {
  animation-delay: 0.16s;
}

.metric-strip.is-visible article:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes metricPop {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.cta-panel.is-visible {
  animation: ctaLift 0.8s ease both;
}

@keyframes ctaLift {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

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

.contact-form,
.sub-hero-content {
  animation: pageRise 0.75s ease both;
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

.split-feature {
  padding-top: 70px;
}

.contact-page {
  background: #fff;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  height: 100%;
  padding: 36px;
}

.contact-card h2 {
  font-size: 34px;
}

.contact-card p {
  color: var(--muted);
}

.contact-card i {
  color: var(--blue);
  margin-right: 8px;
}

.contact-form {
  background: #faf7f3;
  border: 1px solid rgba(214, 169, 91, 0.2);
  border-radius: 16px;
  padding: 36px;
}

.contact-form label {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  min-height: 52px;
  padding: 12px 14px;
}

.contact-form textarea.form-control {
  min-height: 150px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.2rem rgba(214, 169, 91, 0.18);
}

.contact-page .hero-buttons {
  margin-top: 22px;
}

.contact-page .hero-buttons .btn {
  min-width: 130px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
  padding: clamp(16px, 2vw, 20px);
  border-top: 6px solid var(--blue);
}

.legal-card h2 {
  /* border-bottom: 1px solid var(--line); */
  /* margin-top: 36px;
  padding-bottom: 14px; */
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 28px;
}

.legal-card p {
  color: var(--muted);
}

/* Exact Figma export presentation layer.
   Used when the source of truth is a full exported frame and MCP access is unavailable. */
.figma-exact-body {
  background: #fff;
  margin: 0;
}

.figma-exact-page {
  background: #fff;
  margin: 0 auto;
  max-width: 1920px;
  position: relative;
  width: 100%;
}

.figma-exact-page img.figma-frame-image {
  display: block;
  height: auto;
  width: 100%;
}

.figma-hotspot {
  display: block;
  position: absolute;
  top: 0;
  height: 4.1667vw;
  max-height: 80px;
  min-height: 24px;
  z-index: 5;
}

.figma-hotspot.home-link {
  left: 31.3%;
  width: 4.4%;
}

.figma-hotspot.kitchen-link {
  left: 36.4%;
  width: 6.6%;
}

.figma-hotspot.bath-link {
  left: 43.7%;
  width: 5.9%;
}

.figma-hotspot.area-link {
  left: 50.2%;
  width: 5.9%;
}

.figma-hotspot.about-link {
  left: 56.7%;
  width: 4.7%;
}

.figma-hotspot.faq-link {
  left: 62.0%;
  width: 3.0%;
}

.figma-hotspot.contact-link {
  left: 65.3%;
  width: 4.3%;
}

.figma-hotspot.appointment-link {
  left: 72.7%;
  width: 12.1%;
}

.figma-hotspot.whatsapp-link {
  left: 85.2%;
  width: 3.3%;
}

.figma-exact-page {
  animation: figmaFrameIn 0.45s ease both;
}

@keyframes figmaFrameIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (min-width: 1921px) {
  .figma-hotspot {
    height: 80px;
  }
}

/* Section-built website pages */
.built-page .site-header {
  position: sticky;
  top: 0;
}

.built-page main {
  overflow: hidden;
}

.page-hero {
  align-items: center;
  background: #2f2f2f;
  display: flex;
  min-height: 300px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.page-hero::before {
  background: rgba(35, 35, 35, 0.85);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.page-hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

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

.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 50px);
  margin: 0;
}

.intro-split {
  padding: 80px 0 60px;
}

.intro-photo {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}

.section-label {
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.jahre-section .section-label {
  color: var(--ink);
}

.jahre-section h2 {
  color: var(--whitish) !important;
}

.jahre-section>p {
  color: var(--ink);
}

.jahre-para {
  color: var(--ink);
}

.intro-split h2 {
  color: #000e27;
  font-size: clamp(34px, 3.2vw, 45px);
  line-height: 1.25;
}

/* .intro-split p {
  color: rgba(49, 49, 49, 0.65);
} */

.metric-strip {
  background: #120f0c;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .82)), url("../assets/images/metric-bg.png");
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px 40px;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 80px;
  overflow: hidden;
}

.metric-strip-2 {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .82)), url("../assets/images/serv-bg.png");
  background-position: center;
  background-size: cover;

}

.metric-strip-3 {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .82)), url("../assets/images/metric-bg2.png");
  background-position: center;
  background-size: cover;
}

.metric-strip article {
  align-items: center;
  display: flex;
  gap: 18px;
}

.metric-strip svg,
.metric-strip i {
  color: var(--blue);
  height: 50px;
  object-fit: contain;
  width: 50px;
}

.metric-strip strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
}

.metric-strip span {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.soft-section {
  background: #B0B5BA;

  padding: 50px 0;
}

.soft-section .section-heading {
  margin: 0 auto 80px;
}

.plain-section {
  padding: 50px 0;
}

.icon-card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}

.icon-card-grid.six {
  grid-template-columns: repeat(6, 1fr);
}

.icon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 150px;
  padding: 24px;
}

.icon-card-2 {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FAFAFA 100%);
  border-radius: 12px;
  padding: 24px;
}

.icon-card i {
  color: var(--brown);
  font-size: 30px;
  margin-bottom: 18px;
}

.icon-card h3,
.icon-card-2 {
  color: #000e27;
  font-size: 20px;
  margin: 10px 0 0;
}

.icon-card p,
.icon-card-2 {
  color: rgba(49, 49, 49, .7);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.icon-card-2 svg {
  margin-bottom: 10px;
}

.bes-list {
  padding: 0;
}

.bes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.bes-list li::before {
  display: none;
}

.bes-txt h3 {
  font-weight: 500;
  font-size: 20px;
  color: #F9F9FB;
  margin-bottom: 2px;
}

.bes-txt p {
  font-weight: 400;
  font-size: 16px;
  color: rgb(249 249 251 / 80%);


}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
  aspect-ratio: 1.4;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.gallery-grid .wide {
  aspect-ratio: 1.8;
  grid-column: span 2;
  grid-row: span 2;
}

.price-band {
  background: #222;
  border-radius: 14px;
  color: #fff;
  overflow: hidden;
  padding: 44px;
  position: relative;
}

.price-band::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .38)), url("../assets/images/preis-bg.png");
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
}

.price-band>* {
  position: relative;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.price-pill {
  background: rgba(255, 255, 255, .88);
  border-radius: 8px;
  color: #2C2E31;

  min-width: 130px;
  padding: 12px;
  text-align: center;
}

.price-pill strong {
  color: var(--blue);
  display: block;
  font-size: 24px;
  font-weight: 400;
}

.price-pill p {
  margin-bottom: 0;
}

.active-pill {
  background: #FFFFFF66;
  border: 1px solid var(--blue);
  backdrop-filter: blur(24px);

}

.active-pill b,
.active-pill p {
  color: #fff;
}

.ab-txt {
  color: rgb(44 46 49 / 70%);
  margin-bottom: 0;

}

.table-title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 26px;
  color: #F9F9FB;
}

.region-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.region-table table {
  margin: 0;
}

.region-table th {
  background: rgb(10 59 92 / 10%);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: rgb(195 195 195 / 10%);
}

.table>:not(caption)>*>* {
  color: #313131;
  font-size: 16px;
}

.form-bx {
  background: #FAFAFA80;
  border: 1px solid #3131311A;
  border-radius: 14px;
  box-shadow: 0px 4px 4px 0px #0000001F;
  height: 100%;
  padding: 30px;
}

.form-panel h2 {
  color: rgb(44 46 49 / 80%);
  margin-bottom: 5px;
}

.form-panel .form-group {
  position: relative;
}

.form-panel .form-group label {
  font-weight: 400;
  font-size: 15px;
  color: rgb(44 46 49 / 50%);
  display: block;
  margin-bottom: 5px;

}

.form-panel .form-control {
  background: #FAFAFA;
  border: 1px solid #3131311A;
  padding: 12px 40px 12px 10px;
  font-weight: 300;
  font-size: 14px;
  border-radius: 10px;

}

.form-panel .form-select {

  border: 1px solid #3131311A;
  padding: 12px 40px 12px 15px;
  font-weight: 300;
  font-size: 14px;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom Arrow */
  background: #FAFAFA url("assets/images/down-arrow");

  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
  color: rgb(44 46 49 / 50%);
}

.form-panel .form-control::placeholder,
.form-panel .form-select::placeholder {
  color: rgb(44 46 49 / 50%);
}

.form-icon {
  position: absolute;
  top: 40px;
  right: 10px;
  bottom: 0;
}

.form-icon svg path {
  opacity: 0.5;
}

.contact-info-card {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.01) 0%, rgb(250 250 250 / 20%) 100%);
  border-radius: 12px;
  height: 100%;
  padding: 22px;
}

.contact-info-card h3 {
  color: #F9F9FB;
  font-weight: 600;

}

.contact-info-card p {
  color: #F9F9FB;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;

}

.contact-info-card i,
.contact-info-card svg {
  color: var(--brown);
  font-size: 34px;
  margin-bottom: 24px;
}

.text-muted {
  color: rgb(44 46 49 / 50%) !important;
}

.contact-hero-image {
  /* aspect-ratio: 1.35; */
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 28px 0 40px;
}

.faq-tabs span {
  background: #f7f7f7;
  border-radius: 4px;
  color: rgba(49, 49, 49, .7);
  padding: 10px 28px;
}

.faq-tabs span:first-child {
  background: var(--blue);
  color: #fff;
}

.built-page .site-footer {
  margin-top: 0;
}

.service-card.is-hovered,
.team-card.is-hovered,
.process-step.is-hovered {
  outline: 1px solid rgba(214, 169, 91, 0.38);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/*  */
.trans-section .section-heading {
  margin-bottom: 100px;
}

.trans-section .service-card {
  background: #FAFAFA;
  border: 0;
  box-shadow: 0px 4px 14px 0px #0000000F;


}

.trans-section .service-icon {
  border: 10px solid #575656;
}

.alles-bx {
  /* border: 1px solid #3131311A; */
  box-shadow: 0px 4px 4px 0px #00000017;
  background: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 24px;

}

.alles-bx img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.alles-bx h3 {
  padding: 16px;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0px;
  text-align: center;
  color: #313131;
  margin-bottom: 0;
}

/* Gallery Section Styles */
.gallery-section {
  padding: 80px 0;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0 50px;
}

.gallery-tab {
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(49, 49, 49, 0.7);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 32px;
  transition: all 0.3s ease;
}

.gallery-tab:hover {
  background: #f0f0f0;
  border-color: var(--blue);
  color: var(--ink);
}

.gallery-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.custom-gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 200px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.gallery-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Large featured image - Left side, spans 2 columns and 2 rows */
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Medium square images - Right side 2x2 grid, each spans 1 column and 1 row */
.gallery-item.medium-square {
  grid-column: span 1;
  grid-row: span 1;
}

/* Small images - Bottom row, each spans 1 column and 1 row */
.gallery-item.small {
  grid-column: span 1;
  grid-row: span 1;
}

/* ── Overlay ── */
.termin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 16px;
}

.termin-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Popup ── */
.termin-popup {
  background: #fff;
  border-radius: 16px;
  display: flex;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
  position: relative;
  transform: translateY(20px) scale(.98);
  transition: transform .3s ease;
}

.termin-overlay.open .termin-popup {
  transform: translateY(0) scale(1);
}

/* ── Left panel ── */
.termin-left {
  width: 280px;
  flex-shrink: 0;
  background: #faf7f3;
  border-right: 1px solid #e8e0d5;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.termin-back {
  background: none;
  border: 1.5px solid #d0c8be;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  margin-bottom: 24px;
  transition: border-color .2s, background .2s;
}

.termin-back:hover {
  background: #fff;
  border-color: var(--blue, var(--blue));
  color: var(--blue, var(--blue));
}

.termin-logo-wrap {
  margin-bottom: 14px;
}

.termin-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.termin-studio {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}

.termin-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.termin-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.termin-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.termin-meta-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #555;
}

/* ── Right panel ── */
.termin-right {
  flex: 1;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
}

.termin-step {
  display: none;
}

.termin-step.active {
  display: block;
}

.termin-step-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 22px;
}

/* ── Close X ── */
.termin-close-x {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  z-index: 10;
}

.termin-close-x:hover {
  background: #f0ebe4;
  color: #333;
}

.legal-page .legal-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  margin-top: 0;
}

.legal-page .legal-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page .legal-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-top: 18px;
  margin-bottom: 8px;
}

.legal-page .legal-card p,
.legal-page .legal-card li {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-page .legal-card ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.legal-page .legal-card a {
  color: var(--blue);
  text-decoration: none;
}

.legal-page .legal-card a:hover {
  text-decoration: underline;
}

.legal-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
  margin-bottom: 32px;
}

.brown-txt {
  color: #96684A !important;

}

/* ── Calendar ── */
.termin-calendar {
  margin-bottom: 18px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-month-label {
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
}

.cal-nav {
  background: #f4f0ea;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #444;
  line-height: 1;
  transition: background .2s;
}

.cal-nav:hover {
  background: var(--blue);
  color: #fff;
}

.cal-nav:disabled {
  opacity: .35;
  cursor: default;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-days-header span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  padding: 4px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background: none;
  color: #1a1a1a;
  transition: background .15s, color .15s;
  font-family: inherit;
}

.cal-day:hover:not(.past):not(.empty) {
  background: #f0ebe4;
}

.cal-day.past {
  color: #ccc;
  cursor: default;
}

.cal-day.weekend {
  color: #bbb;
  cursor: not-allowed;
}

.cal-day.weekend:hover {
  background: none;
}

.cal-day.empty {
  visibility: hidden;
  pointer-events: none;
}

.cal-day.has-slots {
  font-weight: 600;
  color: #1a5cb5;
}

.cal-day.has-slots:hover {
  background: #e8f0fb;
}

.cal-day.today {
  border: 2px solid var(--blue);
}

.cal-day.selected {
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 700;
}

.cal-day.today.selected {
  border-color: transparent;
}

/* ── Time slots ── */
.time-slots {
  margin-top: 14px;
}

.time-slots.hidden {
  display: none;
}

.time-slots-label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

.time-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-slot {
  padding: 8px 18px;
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  background: none;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
  font-family: inherit;
}

.time-slot:hover,
.time-slot.selected {
  background: var(--blue);
  color: #fff;
}

/* ── Timezone ── */
.termin-tz {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
  margin-top: 14px;
}

.termin-tz strong {
  color: #666;
}

/* ── Form ── */
.termin-back-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 18px;
  font-family: inherit;
  transition: color .2s;
}

.termin-back-inline:hover {
  color: var(--blue);
}

.termin-selected-info {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
  background: #faf7f3;
  border-radius: 8px;
  padding: 10px 14px;
  border-left: 3px solid var(--blue);
}

.termin-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.termin-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.termin-field label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.termin-field input {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a1a;
  outline: none;
  transition: border-color .2s;
}

.termin-field input:focus {
  border-color: var(--blue);
}

.termin-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 14px;
  font-size: 15px;
}

/* ── Success ── */
.termin-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  animation: pop .4s ease;
}

@keyframes pop {
  from {
    transform: scale(.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.termin-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.termin-success p {
  font-size: 15px;
  color: #666;
  max-width: 300px;
}

/* -------------COntact */
.contact-info {
  border-radius: 20px;
  background: #FAFAFA80;

}

.bad-cards article {
  background: #FAFAFA80;

  border: 1px solid #3131311A;
}

.bad-cards article div {
  background: #FAFAFA80;
}

.contact-info iframe {
  border-radius: 20px
}

.contact-info h2,
.contact-info p {
  color: var(--primary);
}

.bad-icon-card article {
  background: #FAFAFAB2;
  border-radius: 20px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.bad-icon-card h3 {
  font-weight: 400;
  font-size: 18px;
}

.warum-list {
  padding-left: 0;
}

.warum-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.warum-list li span {
  background: rgb(214 169 91 / 30%);
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warum-txt h3 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0px;

}

.warum-txt p {
  font-weight: 400;
  font-size: 16px;
  color: rgb(0 14 39 / 80%);
  margin-bottom: 0;

}

.mater-txt h3 {
  font-weight: 500;
  font-size: 18px;
  color: #000E27;
  margin-bottom: 2px;
}

.mater-txt p {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
  color: rgb(0 14 39 / 80%);
  margin-bottom: 0;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li::before {
  display: none;
}

.serv-flx {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.serv-flx .serv-item {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: #313131;
  display: flex;
  align-items: center;
  grid-gap: 6px;


}

.text-light {
  color: #F9F9FB;

}

.text-light-6 {
  color: var(--ink);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.grid-item {
  border: 1px solid #575656;
  background: #B0B5BA;
  border-radius: 20px;
  padding: 30px;
  margin: 0 auto;
  width: 100%;
}

.grid-item span {
  margin: 0 auto 15px;
  text-align: center;
  display: block;
}

.grid-item span svg {
  width: 60px;
  height: 60px;
}

.grid-item h3 {
  font-weight: 400;
  font-size: 19px;
  text-align: center;
  color: #2C2E31;
  margin-bottom: 0;
}

.kunden-list {
  padding: 0;
}

.kunden-list li {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 20px;
}

.kunden-list li span {
  background: rgb(176 181 186 / 10%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kunden-txt h3 {
  font-weight: 500;
  font-size: 22px;
  color: #F9F9FB;
  margin-bottom: 4px;
}

.kunden-txt p {
  font-weight: 400;
  font-size: 18px;
  color: rgb(249 249 251 / 80%);
  margin-bottom: 0;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Responsive ── */

/* Responsive adjustments */





.sm-txt {
  color: #F9F9FB;
  font-weight: 400;
  opacity: 0.6;

}

.lg-txt {
  font-weight: 500;
  color: #F9F9FB;

}