/* =============================================
   SAMEY IMMOBILIEN – Premium Seelagen Design
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #002244;
  --navy-light: #003366;
  --navy-medium: #004488;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dark: #a88a3a;
  --lake-blue: #1a5c8c;
  --lake-blue-light: #2d7ab8;
  --water-teal: #0d9488;
  --warm-white: #f8f6f0;
  --cream: #f0ebe0;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: rgba(255,255,255,0.85);
  --text-light-muted: rgba(255,255,255,0.5);
  --border-gold: rgba(201,168,76,0.3);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10,22,40,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.logo-text {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.logo-text span {
  color: var(--gold);
}

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

.main-nav a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
  color: var(--navy) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-3.png') center/cover no-repeat;
  opacity: 0.5;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.7) 40%,
    rgba(26,75,124,0.5) 100%
  );
}

/* Water wave effect at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f8f6f0' d='M0,40 C360,100 720,0 1080,50 C1260,75 1380,35 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 0 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 2s ease infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: white;
  margin-bottom: 20px;
  max-width: 50%;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 50%;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-stats {
  display: flex;
  gap: 60px;
  width: 100%;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.6s both;
}

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

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-top: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

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

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* --- Section Styling --- */
.section {
  padding: 100px 0;
}

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

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: left;
  margin-bottom: 60px;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-dark .section-header h2 { color: white; }

.section-header .desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0;
}

.section-dark .section-header .desc {
  color: var(--text-light-muted);
}

/* --- Seelagen Spotlight --- */
.seelagen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.see-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.see-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.see-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: var(--shadow-gold);
}

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

.see-card .see-map {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  pointer-events: none;
  position: relative;
}

.see-card .see-map iframe {
  display: block;
  width: 100%;
  height: 120px;
  filter: saturate(0.6) brightness(0.8);
  transition: filter 0.3s ease;
  transform: scale(2.5);
  transform-origin: center center;
}

.see-card:hover .see-map iframe {
  filter: saturate(1) brightness(1);
}

.see-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 8px;
}

.see-card p {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

.see-card .see-price {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(201,168,76,0.1);
  border-radius: 20px;
}

/* --- Services / USP --- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.usp-card .icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.usp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.usp-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Rechner Section --- */
.rechner-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rechner-tab {
  padding: 12px 28px;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.rechner-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.rechner-tab.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.rechner-panel {
  display: none;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.05);
  animation: fadeIn 0.4s ease;
}

.rechner-panel.active { display: block; }

.rechner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.rechner-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--warm-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

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

.rechner-result {
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  border-radius: var(--radius);
  padding: 36px;
  color: white;
  position: sticky;
  top: 100px;
}

.rechner-result h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--gold);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.result-row:last-child { border-bottom: none; }

.result-row .result-label {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.result-row .result-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.result-row .result-value.highlight {
  color: var(--gold);
  font-size: 1.4rem;
}

.result-total {
  margin-top: 20px;
  padding: 20px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  text-align: center;
}

.result-total .total-label {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.result-total .total-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
}

.btn-calculate {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-calculate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

/* --- Listings Section --- */
.listings-filter {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  color: var(--text-muted);
}

.filter-btn:hover { border-color: var(--gold); color: var(--gold); }

.filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.listing-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.listing-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.listing-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.listing-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 10px;
}

.listing-body {
  padding: 24px;
}

.listing-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.listing-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.listing-specs {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.listing-spec {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-spec strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 6rem;
  font-family: var(--font-heading);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.about-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.about-badge .badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.about-feature .check {
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--lake-blue));
  padding: 80px 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* --- FAQ --- */
.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(201,168,76,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: white;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--text-light-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail .detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail .detail-label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-bottom: 2px;
}

.contact-detail .detail-value {
  font-weight: 500;
  color: white;
  font-size: 0.95rem;
}

.contact-detail .detail-value a {
  color: var(--gold);
  transition: var(--transition);
}

.contact-detail .detail-value a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-form textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--warm-white);
  width: 100%;
  resize: vertical;
  color: var(--text-dark);
}

.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-light-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.footer-legal a {
  color: var(--text-light-muted);
  margin-left: 24px;
  transition: var(--transition);
}

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

/* --- About Photo --- */
.about-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

/* --- Trust Badges --- */
.trust-section {
  background: var(--warm-white);
  padding: 48px 0;
  margin-top: -1px;
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.7;
  transition: var(--transition);
}

.trust-badge:hover { opacity: 1; }

.trust-badge .trust-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* --- Floating Contact Button --- */
.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.float-btn-phone {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  animation: pulse-gold 2s ease-in-out infinite;
}

.float-btn-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.float-btn-top {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.float-btn-top.visible {
  opacity: 1;
  visibility: visible;
}

.float-btn-top:hover {
  transform: translateY(-3px);
  background: var(--navy-light);
}

/* --- Cookie Consent --- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 950;
  border-top: 1px solid var(--border-gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-consent p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 680px;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-light-muted);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.3);
  color: white;
}

/* --- Page Load --- */
.page-loaded .reveal {
  transition-delay: 0s;
}

/* --- Counter Animation --- */
.hero-stat .number {
  display: inline-block;
}

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
}

.process-step:last-child::after { display: none; }

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Förder-Rechner Section --- */
.foerder-section {
  background: linear-gradient(135deg, #070e1a 0%, var(--navy) 50%, #070e1a 100%);
}

.foerder-section .section-header h2 {
  color: white;
}

.foerder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.foerder-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.foerder-card:hover {
  transform: translateY(-6px);
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 16px 48px rgba(201,168,76,0.12);
}

.foerder-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.foerder-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.foerder-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.foerder-card p strong {
  color: white;
}

.foerder-highlight {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.foerder-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.foerder-card:hover .foerder-link {
  color: var(--gold-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .seelagen-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .foerder-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .container { padding: 0 32px; }
  .logo-img { height: 40px; }
  
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 25, 50, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
    padding: 0;
    overflow-y: auto;
  }
  .main-nav.open a { font-size: 1.3rem; color: white; text-decoration: none; }
  .main-nav.open .nav-cta {
    margin-top: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--navy) !important;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
  }
  .mobile-toggle { display: flex; z-index: 1001; }
  
  .hero-content { padding: 100px 0 80px; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; }
  .hero h1 { font-size: 3.2rem; line-height: 1.2; max-width: 100%; }
  .hero .subtitle { max-width: 100%; }
  .hero .desc { font-size: 0.95rem; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stat .number { font-size: 6rem; }
  .hero-stat .label { font-size: 1.1rem; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  
  .seelagen-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .see-card { padding: 16px; }
  .see-card h3 { font-size: 0.95rem; }
  .see-price { font-size: 0.75rem; padding: 4px 10px; }
  .usp-grid { grid-template-columns: 1fr; }
  
  .rechner-tabs { gap: 4px; }
  .rechner-tab { padding: 10px 14px; font-size: 0.8rem; }
  .rechner-grid { grid-template-columns: 1fr; }
  .rechner-panel { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  
  .listings-filter { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: 0.8rem; }
  .listings-grid { grid-template-columns: 1fr; }
  
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 16px; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 24px; }
  
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; font-size: 0.85rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal a { margin-left: 0; margin-right: 16px; }

  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.6rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .foerder-grid { grid-template-columns: 1fr; }
  .foerder-card { padding: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 16px; }
  .trust-badge span { display: block; font-size: 1rem; }
  .trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; justify-items: center; }
  .trust-badge { flex-direction: column; text-align: center; gap: 4px; }
  .cookie-consent { flex-direction: column; text-align: center; }
  .floating-contact { bottom: 90px; right: 16px; width: 48px; height: 48px; }

  .cta-banner { padding: 48px 24px; }
  .cta-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .seelagen-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
  .hero-stat .number { font-size: 1.3rem; }
  .rechner-panel { padding: 20px; }
  .rechner-result { padding: 20px; }
  .logo-img { height: 32px; }
  .container { padding: 0 32px; }
}
