@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-primary: #F7F6F3;
  --bg-secondary: #EFECE6;
  --bg-white: #FFFFFF;
  --text-primary: #2A2D2B;
  --text-muted: #6A6D6B;
  --text-light: #8E928F;
  --accent-gold: #967E65;
  --accent-gold-hover: #7E674F;
  --accent-gold-light: #F0EDE8;
  --bg-footer: #182421;
  --text-footer: #ECEFEA;
  --text-footer-muted: #A3ACA7;
  --border-color: #E2DFD9;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-width: 1280px;
  --header-height: 100px;
}

/* --- AMBIENT BACKGROUND & DECORATIONS --- */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -99;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--bg-primary);
}

.bg-ambient-gradient {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 10% 20%, #F5F3EE 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, #ECEAE2 0%, transparent 45%),
              radial-gradient(circle at 50% 50%, #FBFBFA 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(150, 126, 101, 0.04) 0%, transparent 40%);
  filter: blur(40px);
  animation: bgGradientMove 30s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes bgGradientMove {
  0% { transform: scale(1) translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: scale(1.08) translate3d(2%, 1%, 0) rotate(2deg); }
  100% { transform: scale(1) translate3d(0, 0, 0) rotate(0deg); }
}

.light-beam {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 126, 101, 0.07) 0%, transparent 70%);
  filter: blur(100px);
  mix-blend-mode: multiply;
  animation: lightBeamMove 25s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -98;
}

.light-beam-1 {
  top: -15%;
  left: 15%;
  animation-duration: 28s;
}

.light-beam-2 {
  bottom: -10%;
  right: -5%;
  animation-duration: 22s;
  background: radial-gradient(circle, rgba(24, 36, 33, 0.03) 0%, transparent 70%);
}

@keyframes lightBeamMove {
  0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
  50% { transform: translate3d(-4%, 3%, 0) scale(1.1) rotate(5deg); }
  100% { transform: translate3d(2%, -2%, 0) scale(0.95) rotate(-3deg); }
}

.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -97;
  pointer-events: none;
}

.parallax-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -96;
  pointer-events: none;
}

.parallax-shape {
  position: absolute;
  opacity: 0.12;
  pointer-events: none;
  z-index: -96;
  transition: transform 0.1s ease-out;
}

.shape-circle-gold {
  width: 250px;
  height: 250px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  top: 15%;
  right: -50px;
}

.shape-ring-gold {
  width: 180px;
  height: 180px;
  border: 1px dashed var(--accent-gold);
  border-radius: 50%;
  top: 45%;
  left: -90px;
}

.shape-square-dark {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(24, 36, 33, 0.08);
  top: 75%;
  right: 10%;
  transform: rotate(45deg);
}

/* Spotlight card hover style */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(150, 126, 101, 0.08), transparent 70%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-card > * {
  position: relative;
  z-index: 1;
}

/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

main {
  flex-grow: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

p {
  font-weight: 300;
}

.text-italic {
  font-style: italic;
}

/* --- BUTTONS & INTERACTIVE --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

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

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-color: var(--accent-gold);
  filter: blur(12px);
  opacity: 0;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: inherit;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(150, 126, 101, 0.25);
}

.btn-primary:hover::after {
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(1.05);
}

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

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(150, 126, 101, 0.15);
}

.btn-outline:hover::after {
  left: 150%;
}

/* --- HEADER / NAVIGATION --- */
header {
  height: var(--header-height);
  background-color: rgba(247, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.logo-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s ease;
}

/* --- HERO SECTION --- */
.hero {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 80px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* --- HERO CONTACT & PHONE INTEGRATION --- */
.hero-contact-box {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #2e7d32;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2e7d32;
  border-radius: 50%;
  animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

.hero-contact-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-phone-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  flex: 1;
  min-width: 220px;
}

.hero-phone-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(150, 126, 101, 0.12);
  background: #FAFAF9;
}

.phone-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hero-phone-card:hover .phone-card-icon {
  background-color: var(--accent-gold);
  color: var(--bg-white);
}

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

.phone-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
}

.phone-number {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Floating badge over hero image */
.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 223, 217, 0.8);
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-floating-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(150, 126, 101, 0.18);
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(150, 126, 101, 0.3);
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.badge-phone {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.badge-phone:hover {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
}

.hero-title {
  margin-top: -10px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
}

.hero-image-container {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.hero-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* --- USP SECTION --- */
.usp-section {
  padding: 60px 40px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.usp-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.usp-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.usp-card:hover {
  transform: translateY(-8px) translate3d(0, 0, 0);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(150, 126, 101, 0.06);
}

.usp-icon {
  font-size: 2.2rem;
  color: var(--accent-gold);
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.usp-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.usp-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* --- SERVICES GRID SECTION --- */
.services-section {
  padding: 100px 40px;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 60px auto;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px) translate3d(0, 0, 0);
  border-color: var(--accent-gold);
  box-shadow: 0 30px 60px rgba(150, 126, 101, 0.08);
}

.service-card-img-wrapper {
  overflow: hidden;
  height: 240px;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-card-tag svg {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-card-tag svg {
  transform: scale(1.25) rotate(12deg);
  color: var(--accent-gold);
}

.service-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
}

.service-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card-title {
  font-size: 1.6rem;
  margin-top: -5px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.service-card-list li {
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
  color: var(--text-primary);
  font-weight: 300;
}

.service-card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

.service-card-btn {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
}

.service-card-btn:hover {
  color: var(--text-primary);
}

/* --- BEFORE/AFTER SLIDER SECTION --- */
.before-after-section {
  padding: 100px 40px;
  background-color: var(--bg-footer);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-footer);
}

.before-after-section h2 {
  color: var(--bg-white);
}

.before-after-section p {
  color: var(--text-footer-muted) !important;
}

.before-after-container {
  max-width: 900px;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border-radius: 4px;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.img-before {
  background-image: url('../nachher.png');
  z-index: 1;
}

.img-after {
  background-image: url('../vorher.png');
  z-index: 2;
  width: 100%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--bg-white);
  left: 50%;
  z-index: 25;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: none;
}

.slider-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  background-color: rgba(24, 36, 33, 0.7);
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
  border-radius: 2px;
}

.label-before {
  left: 20px;
}

.label-after {
  right: 20px;
}

.slider-control {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  z-index: 30;
  cursor: ew-resize;
}

.slider-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--bg-white);
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.slider-control::-moz-range-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--bg-white);
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* --- ABOUT US TEASER --- */
.about-teaser {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-teaser-img-container {
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.about-teaser-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* --- ABOUT US DETAILS --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

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

.pillar-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  transform: translateY(-8px) translate3d(0, 0, 0);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(150, 126, 101, 0.06);
}

.pillar-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.22) rotate(6deg);
}

/* --- FAQ ACCORDION STYLES --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-category {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-category-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(150, 126, 101, 0.04);
}

.faq-trigger {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: 20px;
}

.faq-trigger-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-trigger-text span {
  font-size: 1.25rem;
  opacity: 0.8;
}

.faq-icon-indicator {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-indicator {
  transform: rotate(135deg);
  color: var(--accent-gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-content {
  padding-bottom: 24px;
}

.faq-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* --- CONTACT & GENERAL PAGES --- */
.page-header {
  padding: 80px 40px 40px 40px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 10px;
}

.page-header .breadcrumbs {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.page-content {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- CONTACT LAYOUT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

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

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

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--bg-white);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.contact-icon {
  color: var(--accent-gold);
  font-size: 1.5rem;
  line-height: 1;
}

.contact-text h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.contact-text p, .contact-text a {
  color: var(--text-muted);
  font-weight: 300;
}

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

.contact-form-container {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 40px;
}

.contact-form-container h3 {
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 2px;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
}

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

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

/* --- LEGAL PAGES STYLING --- */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.legal-container h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.legal-container h3 {
  font-size: 1.3rem;
  margin: 24px 0 12px 0;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.legal-container p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.legal-container ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.legal-container li {
  margin-bottom: 8px;
}

/* --- SERVICES DETAIL PAGE --- */
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-item:nth-child(even) {
  direction: rtl;
}

.service-detail-item:nth-child(even) .service-detail-content {
  direction: ltr;
}

.service-detail-img-container {
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.service-detail-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail-title {
  font-size: 2.4rem;
}

.service-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.service-detail-features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-detail-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-footer);
  color: var(--text-footer);
  padding: 80px 40px 30px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-box {
  background-color: var(--bg-white);
  padding: 12px;
  border-radius: 2px;
  width: fit-content;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--bg-white);
  margin-top: -10px;
}

.footer-logo-text span {
  font-size: 0.9rem;
  color: var(--accent-gold);
  display: block;
  text-transform: uppercase;
  margin-top: -2px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-logo-desc {
  font-size: 0.9rem;
  color: var(--text-footer-muted);
  font-weight: 300;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-footer-muted);
  font-weight: 300;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-footer-muted);
  font-weight: 300;
}

.footer-contact-item a:hover {
  color: var(--bg-white);
}

.footer-contact-item .footer-icon {
  color: var(--accent-gold);
  margin-top: 3px;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-cta p {
  font-size: 0.95rem;
  color: var(--text-footer-muted);
  font-weight: 300;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-footer-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-credit {
  display: inline-block;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-credit a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-credit a:hover {
  color: var(--bg-white);
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: var(--text-footer-muted);
  font-weight: 300;
}

.footer-legal-links a:hover {
  color: var(--bg-white);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  max-width: 450px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}

.cookie-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.cookie-desc a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 8px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.cookie-btn-group .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* --- LOCATION & MAPS SECTION --- */
.location-section {
  padding: 100px 40px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.location-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.location-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.location-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-icon-badge {
  font-size: 2rem;
  line-height: 1;
}

.location-card-header h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.location-address {
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px dashed var(--border-color);
  border-bottom: 1px dashed var(--border-color);
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-icon {
  font-size: 1.2rem;
  line-height: 1.3;
}

.location-detail-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.location-detail-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 2px;
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  min-height: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.location-iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.cookie-settings {
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}

.cookie-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.cookie-setting-item label {
  font-weight: 500;
}

.cookie-setting-item input[type="checkbox"] {
  accent-color: var(--accent-gold);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }
  
  .nav-logo-img {
    height: 55px;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
    z-index: 999;
    border-top: 1px solid var(--border-color);
    pointer-events: none;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
  }
  
  .hero-contact-box {
    align-items: center;
  }
  
  .hero-contact-label {
    justify-content: center;
  }
  
  .hero-contact-cards {
    justify-content: center;
    width: 100%;
  }

  .hero-floating-badge {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 320px;
    justify-content: center;
  }

  .hero-floating-badge:hover {
    transform: translateX(-50%) translateY(-3px);
  }
  
  .hero-desc {
    margin: 0 auto;
  }
  
  .hero-image {
    height: 400px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-top {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
  
  .service-detail-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-detail-item:nth-child(even) {
    direction: ltr;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-card, .location-iframe {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .location-section {
    padding: 60px 20px;
  }

  .location-card {
    padding: 24px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
  
  .hero-contact-cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-phone-card {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .usp-grid {
    grid-template-columns: 1fr;
  }
  
  .pillars-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-bottom: 60px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) transparent;
  }
  
  .pillars-grid::-webkit-scrollbar {
    height: 4px;
  }
  
  .pillars-grid::-webkit-scrollbar-thumb {
    background-color: var(--accent-gold);
    border-radius: 4px;
  }
  
  .pillars-grid::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .pillars-grid > div,
  .pillar-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  }
  
  .before-after-section {
    padding: 60px 20px;
  }
  
  .slider-wrapper {
    height: 350px;
  }
  
  .about-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
  
  .about-teaser-img {
    height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
    gap: 16px;
  }

  .footer-credit {
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 8px;
  }
  
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .cookie-banner {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
  }
  
  .service-detail-img {
    height: 300px;
  }
  
  .service-detail-features {
    grid-template-columns: 1fr;
  }
}
