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

:root {
  --color-bg: #050505;
  --color-surface: rgba(15, 15, 15, 0.85);
  --color-muted: rgba(246, 231, 193, 0.7);
  --color-heading: #f5e3a7;
  --color-primary: #d4af37;
  --color-secondary: #f0d98a;
  --color-gold-light: #f5e3a7;
  --color-gold-dark: #b8860b;
  --color-gold-gradient-start: #f0d98a;
  --color-gold-gradient-end: #d4af37;
  --color-border: rgba(212, 175, 55, 0.4);
  --color-soft-border: rgba(212, 175, 55, 0.2);
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 12px 30px rgba(212, 175, 55, 0.35);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 50px;
  --max-width: 1200px;
  --font-heading: "Urbanist", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: #050505;
  background-image: linear-gradient(120deg, rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.75)), url("../assets/hero-main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #f6e7c1;
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-gold-light);
}

a[href^="tel"],
a[href^="mailto"] {
  color: var(--color-gold-light);
}

a[href^="tel"]:hover,
a[href^="mailto"]:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--color-gold-light);
  margin: 0 0 1rem;
  line-height: 1.15;
}

/* Verbessertes Spacing für Überschriften nach Badges */
.badge+h1,
.badge+h2,
.badge+h3 {
  margin-top: 0.5rem;
}

p {
  margin: 0 0 1.2rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 0px !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav .btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 500;
  color: rgba(246, 231, 193, 0.8);
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold-light);
}

.nav-links .btn.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-gradient-start), var(--color-gold-gradient-end));
  color: #0b0904;
  box-shadow: var(--shadow-gold);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  color: var(--color-gold-light);
  padding: 0.45rem 0.8rem;
  font-size: 1.2rem;
}

main {
  padding: 4rem 5vw 5rem;
}

.section {
  max-width: 1400px;
  margin: 0 auto 4rem;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-soft),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 3.5rem;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-soft),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  position: relative;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.hero-home {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding: 3.5rem clamp(1.2rem, 4.5vw, 4.5rem);
  margin: 0 auto 4rem;
  width: 100%;
  max-width: 1400px;
  border-radius: 56px;
  background-image: url("../assets/hero-main.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f6e7c1;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: none;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  pointer-events: none;
  z-index: 2;
}

.hero-panel {
  position: relative;
  z-index: 3;
  max-width: 520px;
  background: rgb(26 15 15 / 50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2.4rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  border: 1px solid var(--color-border);
  color: #f6e7c1;
}

.hero-panel p {
  color: #f6e7c1;
}

.hero-panel h1 {
  color: var(--color-gold-light);
}

.hero-panel .stats {
  color: var(--color-gold-light);
}

.hero-panel .usp-list {
  color: #f6e7c1;
}

.hero-panel .usp-list li {
  color: #f6e7c1;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.9rem;
  background: var(--color-surface);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}

.filter-bar div,
.filter-bar input,
.filter-bar select {
  flex: 1;
  min-width: 140px;
}

.filter-bar input,
.filter-bar select {
  border: 1px solid var(--color-border);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(15, 15, 15, 0.6);
  color: #f6e7c1;
  font-family: inherit;
}

.filter-bar input::placeholder {
  color: rgba(246, 231, 193, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-gradient-start), var(--color-gold-gradient-end));
  color: #0b0904;
  padding: 0.95rem 1.6rem;
  box-shadow: var(--shadow-gold);
  font-weight: 600;
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold-light);
  border: 1px solid var(--color-border);
  padding: 0.9rem 1.4rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-gold-light);
  padding: 0.85rem 1.3rem;
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, #caa755, #f0e6c1);
  color: #111111;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  margin-top: 0;
}

/* Spezifisches Spacing für Badges in Sections */
.section .badge,
.hero .badge {
  margin-bottom: 1.5rem;
  display: block;
  width: fit-content;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.card {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 1.8rem;
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-soft),
    0 0 20px rgba(212, 175, 55, 0.15),
    inset 0 0 15px rgba(212, 175, 55, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: #f6e7c1;
  position: relative;
}

a.card,
a.reference-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.card:hover,
a.reference-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-gold-light);
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  font-weight: 600;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(246, 231, 193, 0.7);
}

.chip-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chip {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(15, 15, 15, 0.6);
  color: rgba(246, 231, 193, 0.8);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip.active {
  background: linear-gradient(135deg, var(--color-gold-gradient-start), var(--color-gold-gradient-end));
  color: #0b0904;
  border-color: var(--color-primary);
}

.usp-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.9rem;
  color: var(--color-gold-light);
  font-weight: 600;
}

.usp-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.usp-list span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold-gradient-start), var(--color-gold-gradient-end));
  color: #0b0904;
  font-size: 1rem;
  font-weight: 700;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 32px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.5);
  padding: 2rem;
  box-shadow: var(--shadow-soft),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  color: #f6e7c1;
  position: relative;
}

.cta-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-soft),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  color: #f6e7c1;
  position: relative;
}

.map-embed {
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.5);
  min-height: 320px;
  height: 360px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-soft),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: calc(28px - 2px);
}

.map-embed.leaflet-container {
  border: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filters input,
.filters select {
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(15, 15, 15, 0.6);
  color: #f6e7c1;
  min-width: 180px;
}

.filters input::placeholder {
  color: rgba(246, 231, 193, 0.5);
}

.list-toggle {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  padding: 0.3rem;
  gap: 0.3rem;
}

.list-toggle button {
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  color: rgba(246, 231, 193, 0.8);
  cursor: pointer;
}

.list-toggle button.active {
  background: linear-gradient(135deg, var(--color-gold-gradient-start), var(--color-gold-gradient-end));
  color: #0b0904;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* Scroll hint for tables on mobile */
@media (max-width: 900px) {
  div[style*="overflow-x: auto"] {
    position: relative;
  }

  div[style*="overflow-x: auto"]::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
    border-top-right-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
  }
}

td,
th {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
  color: rgba(246, 231, 193, 0.8);
}

/* Ausnahme für Tabellen-Header mit weißer Schrift (z.B. in Objektübersichten) */
thead th {
  color: inherit;
}

/* Abgerundete Ecken für Tabellen-Header */
thead th:first-child {
  border-top-left-radius: var(--radius-md);
}

thead th:last-child {
  border-top-right-radius: var(--radius-md);
}

form {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: rgba(246, 231, 193, 0.9);
}

.contact-form label.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.contact-form .form-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.contact-form .form-row>label {
  flex: 1;
}

.contact-form .form-row.align-center {
  align-items: center;
  justify-content: space-between;
}

.contact-form button {
  align-self: flex-end;
  padding-inline: 2.6rem;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-section {
  padding: 0 !important;
  border: none;
  box-shadow: none;
  background: transparent;
}

.contact-form-embed {
  width: 100%;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-soft),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  padding: 2px;
}

.contact-form-embed iframe {
  width: 100%;
  min-height: 600px;
  border: 0;
  display: block;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 2px);
}

.form-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-message-success {
  background-color: rgba(40, 80, 40, 0.3);
  color: #90ee90;
  border: 1px solid rgba(144, 238, 144, 0.5);
  backdrop-filter: blur(10px);
}

.form-message-error {
  background-color: rgba(80, 40, 40, 0.3);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.5);
  backdrop-filter: blur(10px);
}

.btn-pill {
  border-radius: 999px;
  padding: 1rem 2.7rem;
  font-size: 1rem;
  display: inline-flex;
  gap: 0.6rem;
}

.btn-dark {
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-gold-light);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

form input,
form textarea,
form select {
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: rgba(15, 15, 15, 0.6);
  color: #f6e7c1;
  font-family: inherit;
  font-size: 1rem;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(246, 231, 193, 0.5);
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

label {
  font-size: 0.95rem;
  color: rgba(246, 231, 193, 0.9);
  font-weight: 500;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.contact-card {
  border: 2px solid rgba(212, 175, 55, 0.5);
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft),
    0 0 30px rgba(212, 175, 55, 0.2),
    inset 0 0 20px rgba(212, 175, 55, 0.05);
  color: #f6e7c1;
  position: relative;
}

.contact-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

footer {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem 5vw;
  border-top: 1px solid var(--color-border);
  color: rgba(246, 231, 193, 0.8);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  color: rgba(246, 231, 193, 0.6);
  font-size: 0.85rem;
}

.layout-split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tab {
  border: 1px solid var(--color-border);
  background: rgba(15, 15, 15, 0.6);
  color: rgba(246, 231, 193, 0.8);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: linear-gradient(135deg, var(--color-gold-gradient-start), var(--color-gold-gradient-end));
  color: #0b0904;
  border-color: var(--color-primary);
}

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

.lightbox img {
  height: 170px;
  object-fit: cover;
}

.legal-text {
  color: rgba(246, 231, 193, 0.8);
  font-size: 1rem;
}

.legal-text h1 {
  margin-bottom: 1.5rem;
}

.legal-text h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.legal-text p {
  margin-bottom: 1rem;
}

.reference-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 28px;
  padding: 1.5rem;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft),
    0 0 20px rgba(212, 175, 55, 0.15),
    inset 0 0 15px rgba(212, 175, 55, 0.05);
  color: #f6e7c1;
  position: relative;
}

.reference-card img {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  object-fit: cover;
}

.status-pill {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.35rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .nav {
    padding: 0.875rem 1.25rem;
  }

  .logo img {
    height: 32px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile */
    max-width: none;
    margin: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    padding-top: calc(env(safe-area-inset-top) + 5rem);
    padding-bottom: calc(env(safe-area-inset-bottom) + 2rem);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 102;
    gap: 0.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    border-radius: 12px;
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    margin-top: 0.5rem;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-surface);
    color: var(--color-gold-light);
    padding: 0.5rem 0.75rem;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 103;
    position: relative;
  }

  .mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
  }

  main {
    padding: 1.5rem 1.25rem 3rem;
  }

  .section {
    padding: 1.75rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 24px;
  }

  .hero-home {
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    padding: 2rem 1.5rem;
    margin: 0 auto 2rem;
    min-height: auto;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-soft),
      0 0 30px rgba(212, 175, 55, 0.1),
      inset 0 0 20px rgba(212, 175, 55, 0.05);
    display: block;
    position: relative;
    overflow: hidden;
  }

  /* Add a subtle pattern overlay for mobile hero */
  .hero-home::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 25%),
      radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 25%);
    pointer-events: none;
  }

  .hero-home::before {
    display: none;
  }

  .hero-panel {
    padding: 0;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    background: transparent;
    background-image: none;
    position: relative;
    margin: 0;
    border: none;
    box-shadow: none;
    min-height: auto;
    display: block;
  }

  .hero-panel::before {
    display: none;
  }

  .hero-panel>* {
    position: relative;
    z-index: auto;
  }

  .hero-panel h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 0.875rem;
  }

  .hero-panel p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-panel .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-panel .usp-list {
    margin-top: 1.25rem;
    gap: 0.75rem;
  }

  .hero-panel .usp-list li {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .hero-panel .usp-list span {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.2;
  }

  h2 {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    line-height: 1.25;
    margin-bottom: 0.875rem;
  }

  h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 0.75rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
  }

  .badge+h1,
  .badge+h2,
  .badge+h3 {
    margin-top: 0.5rem;
  }

  .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 0.9rem 1.5rem;
  }

  .btn-secondary {
    padding: 0.85rem 1.3rem;
  }

  .btn-ghost {
    padding: 0.8rem 1.2rem;
  }

  .chip-row {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .chip {
    padding: 0.4rem 0.9rem;
    font-size: 0.875rem;
    border-radius: 50px;
  }

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

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

  .card {
    padding: 1.5rem;
    border-radius: 20px;
  }

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

  .card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .card p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .facts {
    font-size: 0.85rem;
    gap: 0.6rem;
  }

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

  .contact-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .contact-card p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .testimonial {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .cta-banner {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .btn-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  .map-embed {
    min-height: 280px;
    height: 300px;
    border-radius: 20px;
    margin-top: 1rem;
  }

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

  footer {
    padding: 2rem 1.25rem;
  }

  .footer-grid h3,
  .footer-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 0.9rem;
  }

  .footer-grid ul {
    gap: 0.5rem;
  }

  .footer-grid ul li {
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .filter-bar {
    flex-direction: column;
    padding: 1rem;
  }

  .filter-bar div,
  .filter-bar input,
  .filter-bar select {
    width: 100%;
    min-width: 100%;
  }

  form input,
  form textarea,
  form select {
    font-size: 16px;
    /* Prevent zoom on iOS */
    padding: 0.85rem 1rem;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form .form-row>label {
    width: 100%;
  }

  .contact-form button {
    align-self: stretch;
    width: 100%;
    padding-inline: 1.5rem;
  }

  .image-slider {
    border-radius: 16px;
  }

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

  .lightbox img {
    height: 150px;
  }

  .reference-card {
    flex-direction: column;
    align-items: stretch;
  }

  .reference-card img {
    width: 100%;
    height: 180px;
  }

  .tabs {
    gap: 0.5rem;
  }

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

/* Extra small mobile devices */
@media (max-width: 480px) {
  main {
    padding: 1rem 1rem 2.5rem;
  }

  .section {
    padding: 1.25rem 1rem;
    border-radius: 20px;
  }

  .hero-home {
    padding: 1.5rem 1rem;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: block;
  }

  .hero-home::before {
    display: none;
  }

  .hero-panel {
    padding: 0;
    border-radius: 0;
    background: transparent;
    background-image: none;
    border: none;
    box-shadow: none;
    min-height: auto;
    display: block;
  }

  .hero-panel::before {
    display: none;
  }

  .hero-panel h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  h2 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .chip-row {
    gap: 0.4rem;
  }

  .chip {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
  }

  .card {
    padding: 1.25rem;
  }

  .card-image img {
    height: 180px;
  }

  .btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .testimonial {
    padding: 1.25rem;
  }

  .cta-banner {
    padding: 1.5rem 1.25rem;
  }

  footer {
    padding: 1.75rem 1rem;
  }

  .nav {
    padding: 0.75rem 1rem;
  }

  .logo img {
    height: 28px;
  }
}

/* Image Slider Styles */
.image-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.image-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.image-slider-slide.active {
  opacity: 1;
  z-index: 1;
}

.image-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.image-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  color: var(--color-gold-light);
}

.image-slider-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.image-slider-nav.prev {
  left: 1rem;
}

.image-slider-nav.next {
  right: 1rem;
}

.image-slider-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold-light);
}

.image-slider-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.image-slider-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.5);
  border: 2px solid rgba(212, 175, 55, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-slider-indicator.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .image-slider-nav {
    width: 40px;
    height: 40px;
  }

  .image-slider-nav.prev {
    left: 0.5rem;
  }

  .image-slider-nav.next {
    right: 0.5rem;
  }

  .image-slider-indicators {
    bottom: 1rem;
  }
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  color: var(--color-gold-light);
}

.lightbox-modal-close:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.lightbox-modal-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold-light);
}

.lightbox-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  color: var(--color-gold-light);
}

.lightbox-modal-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-modal-nav.prev {
  left: 2rem;
}

.lightbox-modal-nav.next {
  right: 2rem;
}

.lightbox-modal-nav svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold-light);
}

.image-slider-slide {
  cursor: pointer;
}

.image-slider-slide img {
  transition: transform 0.3s ease;
}

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

/* Collapsible Table Styles */
#units-table-wrapper {
  transition: all 0.3s ease;
}

#units-table-toggle svg {
  transition: transform 0.3s ease;
}

#units-table-toggle.active svg {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  #units-table-wrapper {
    display: block;
    max-height: 300px;
    /* Show approx 3-4 rows */
    overflow: hidden;
    position: relative;
  }

  #units-table-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0), rgba(15, 15, 15, 1));
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #units-table-wrapper.expanded {
    max-height: none;
    animation: none;
  }

  #units-table-wrapper.expanded::after {
    opacity: 0;
  }

  #units-table-toggle {
    display: inline-flex !important;
    margin-top: 1rem;
  }
}

/* ============================================
   ANIMATIONS & KEYFRAMES - Premium Wow Effect
   ============================================ */

/* Scroll-reveal animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

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

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

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

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

@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: var(--shadow-soft), 0 0 20px rgba(212, 175, 55, 0.2);
  }

  50% {
    box-shadow: var(--shadow-soft), 0 0 40px rgba(212, 175, 55, 0.4);
  }
}

@keyframes float {

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

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

@keyframes pulse {

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

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

/* Apply animations to elements */

/* Hero section entrance */
.hero {
  animation: fadeInUp 0.8s ease-out;
}

.hero-home {
  animation: scaleIn 0.9s ease-out;
}

.hero-panel {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

/* Sections scroll reveal */
.section {
  animation: fadeInUp 0.7s ease-out;
}

.section:nth-child(even) {
  animation: fadeInLeft 0.7s ease-out;
}

.section:nth-child(odd) {
  animation: fadeInRight 0.7s ease-out;
}

/* Badge shimmer effect */
.badge {
  position: relative;
  overflow: hidden;
  animation: fadeInDown 0.6s ease-out;
}

.badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  background-size: 200% 100%;
  animation: goldShimmer 3s ease-in-out infinite;
}

/* Card entrance and hover effects */
.card {
  animation: slideInUp 0.6s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-soft),
    0 0 40px rgba(212, 175, 55, 0.35),
    inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.grid .card:nth-child(1) {
  animation-delay: 0s;
}

.grid .card:nth-child(2) {
  animation-delay: 0.1s;
}

.grid .card:nth-child(3) {
  animation-delay: 0.2s;
}

.grid .card:nth-child(4) {
  animation-delay: 0.3s;
}

.grid .card:nth-child(5) {
  animation-delay: 0.4s;
}

.grid .card:nth-child(6) {
  animation-delay: 0.5s;
}

/* Button effects */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--color-primary);
}

/* Contact card hover */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInRight 0.8s ease-out;
}

.contact-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-soft),
    0 0 50px rgba(212, 175, 55, 0.4),
    inset 0 0 30px rgba(212, 175, 55, 0.1);
}

/* USP list items stagger */
.usp-list li {
  animation: fadeInLeft 0.5s ease-out both;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usp-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.usp-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.usp-list li:nth-child(3) {
  animation-delay: 0.3s;
}

.usp-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.usp-list li:nth-child(5) {
  animation-delay: 0.5s;
}

.usp-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.usp-list span {
  animation: pulse 2s ease-in-out infinite;
}

/* Facts animation */
.facts span {
  animation: fadeInUp 0.5s ease-out both;
}

.facts span:nth-child(1) {
  animation-delay: 0.1s;
}

.facts span:nth-child(2) {
  animation-delay: 0.2s;
}

.facts span:nth-child(3) {
  animation-delay: 0.3s;
}

/* Chip hover effects */
.chip {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chip:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Navigation link effects */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
  width: 80%;
  left: 10%;
}

/* Logo hover */
.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Image hover effects */
.card-image {
  overflow: hidden;
}

.card-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Status pill glow */
.status {
  animation: fadeInDown 0.6s ease-out;
  transition: box-shadow 0.3s ease;
}

.status:hover {
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

/* Footer animation */
footer {
  animation: fadeInUp 0.8s ease-out;
}

/* Form input focus effects */
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

/* Table row hover */
tbody tr {
  transition: background 0.2s ease;
}

tbody tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* CTA Banner pulse */
.cta-banner {
  animation: fadeInUp 0.8s ease-out;
}

/* Reference card hover */
.reference-card {
  animation: slideInUp 0.7s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft),
    0 0 40px rgba(212, 175, 55, 0.3),
    inset 0 0 20px rgba(212, 175, 55, 0.08);
}

/* Tab active transition */
.tab {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Testimonial card */
.testimonial {
  animation: scaleIn 0.8s ease-out;
}

/* Map embed entrance */
.map-embed {
  animation: fadeInUp 0.7s ease-out;
}

/* Lightbox image hover */
.lightbox img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  cursor: pointer;
}

.lightbox img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Mobile toggle animation */
.mobile-toggle {
  transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-toggle:hover {
  transform: rotate(90deg);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .lightbox-modal {
    padding: 1rem;
  }

  .lightbox-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-modal-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-modal-nav.prev {
    left: 0.5rem;
  }

  .lightbox-modal-nav.next {
    right: 0.5rem;
  }
}

/* Status Colors */
.status.vergeben,
.badge.vergeben {
  color: #ff8c00 !important;
  /* Orange */
}

.status.vermarktung,
.badge.vermarktung {
  color: #2ecc71 !important;
  /* Green */
}