/* 
 * Sport- und Golf-Resort Gut Wissmannshof (SGR) - InfoPage Landingpage
 * Custom CSS Design System - Modern, light, friendly, and sporty.
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors (CI Compliant) */
  --brg-dark: #1B4332;
  --brg-medium: #2D6A4F;
  --brg-light: #52B788;
  --gold: #B8963E;
  --gold-light: #D4AF6A;
  --cream: #F5F0E8;
  --cream-light: #FAF8F5;
  --near-black: #1C1C1C;
  --warm-gray: #8B8680;
  --border: #C8BCA8;
  
  /* UI Colors */
  --bg-app: #FFFFFF;
  --bg-section-alt: #FAF8F5;
  --text-primary: #1C1C1C;
  --text-secondary: #4A4A4A;
  --text-muted: #8B8680;
  --white: #FFFFFF;
  
  /* Fonts */
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Grid/Spacing/Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(27, 67, 50, 0.04);
  --shadow-md: 0 8px 16px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 16px 32px rgba(27, 67, 50, 0.12);
  --shadow-gold: 0 8px 24px rgba(184, 150, 62, 0.15);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --max-width: 1280px;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-app);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--brg-dark);
  line-height: 1.25;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

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

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

ul {
  list-style: none;
}

/* App Header & Navigation */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 188, 168, 0.3);
  transition: var(--transition-normal);
}

.header-nav.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.95);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brg-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item-highlight {
  color: var(--gold) !important;
  font-weight: 700;
  border: 1.5px solid var(--gold);
  padding: 0.4rem 1rem !important;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.nav-item-highlight:hover {
  background-color: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

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

.mobile-only {
  display: none !important;
}

.nav-cta {
  background-color: var(--brg-dark);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.nav-cta:hover {
  background-color: var(--brg-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brg-dark);
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

.mobile-menu-btn span:last-child {
  margin-bottom: 0;
}

/* Sections Base */
section {
  padding: 6rem 1.5rem;
  max-width: 100%;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  position: relative;
}

.section-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--brg-light);
  margin-top: 4px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 3.5rem;
}

/* Buttons and Micro-interactions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.btn-primary {
  background-color: var(--brg-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--brg-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--cream);
  color: var(--brg-dark);
  border: 1px solid var(--border);
}

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

.btn-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(184, 150, 62, 0.25);
}

.icon-arrow {
  transition: transform var(--transition-fast);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(82, 183, 136, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(245, 240, 232, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  padding: 8rem 1.5rem 5rem 1.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-tagline {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--brg-light);
  border-radius: 50%;
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--brg-medium);
  background: linear-gradient(120deg, var(--brg-dark) 0%, var(--brg-medium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-badges {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(200, 188, 168, 0.4);
  padding-top: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-headings);
}

.badge-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder-card {
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 420px;
  background: linear-gradient(135deg, var(--brg-dark) 0%, var(--brg-medium) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(2deg);
  transition: var(--transition-slow);
}

.hero-placeholder-card:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-placeholder-card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(184, 150, 62, 0.2) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

.card-svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
}

.card-tag {
  background-color: var(--gold);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.card-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.card-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

.card-metric-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  font-family: var(--font-headings);
}

.card-metric-lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Action Center (Quick-Access Panel) */
.action-center {
  background-color: var(--bg-section-alt);
  border-top: 1px solid rgba(200, 188, 168, 0.3);
  border-bottom: 1px solid rgba(200, 188, 168, 0.3);
  padding: 5rem 1.5rem;
}

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

.action-card {
  background-color: var(--white);
  border: 1px solid rgba(200, 188, 168, 0.4);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brg-medium);
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--brg-dark);
  transform: scaleY(0);
  transition: var(--transition-fast);
}

.action-card:hover::before {
  transform: scaleY(1);
}

.action-icon {
  width: 48px;
  height: 48px;
  background-color: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brg-dark);
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.action-card:hover .action-icon {
  background-color: var(--brg-dark);
  color: var(--white);
}

.action-card-title {
  font-size: 1.25rem;
  color: var(--brg-dark);
}

.action-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-grow: 1;
}

.action-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}

.action-card:hover .action-card-link {
  color: var(--brg-medium);
}

/* SGR Experience Worlds (Tabs Section) */
.worlds-section {
  padding-bottom: 8rem;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  border-bottom: 2px solid var(--cream);
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--brg-dark);
}

.tab-btn.active {
  color: var(--brg-dark);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--brg-dark);
  border-radius: var(--radius-full);
}

.tab-panel {
  display: none;
  animation: fadeIn var(--transition-normal);
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.panel-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel-title {
  font-size: 2rem;
  color: var(--brg-dark);
  position: relative;
}

.panel-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1rem 0 2rem 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.highlight-check {
  color: var(--brg-light);
  font-weight: 800;
  font-size: 1.1rem;
}

.highlight-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.panel-visual {
  position: relative;
}

.panel-placeholder-card {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  gap: 1rem;
  overflow: hidden;
  position: relative;
  transition: var(--transition-normal);
}

.panel-placeholder-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brg-light);
}

.panel-placeholder-card svg {
  width: 64px;
  height: 64px;
  color: var(--brg-medium);
  opacity: 0.4;
  transition: var(--transition-fast);
}

.panel-placeholder-card:hover svg {
  transform: scale(1.1);
  opacity: 0.7;
}

.panel-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--brg-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* Membership Catalog */
.membership-section {
  background-color: var(--cream-light);
  border-top: 1px solid rgba(200, 188, 168, 0.3);
  border-bottom: 1px solid rgba(200, 188, 168, 0.3);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.member-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

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

.member-card.featured {
  border-color: var(--brg-dark);
  border-width: 2px;
}

.member-card.featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brg-dark);
  color: var(--white);
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
}

.member-name {
  font-size: 1.4rem;
  color: var(--brg-dark);
  margin-bottom: 0.5rem;
}

.member-price-box {
  display: flex;
  align-items: baseline;
  margin: 1.5rem 0 2rem 0;
  border-bottom: 1px solid rgba(200, 188, 168, 0.3);
  padding-bottom: 1.5rem;
}

.member-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brg-dark);
  font-family: var(--font-headings);
}

.member-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brg-dark);
  line-height: 1;
  font-family: var(--font-headings);
}

.member-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

.member-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.member-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.member-feature-icon {
  color: var(--gold);
  font-weight: 700;
}

/* Region / Discovery Section */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.region-card {
  background-color: var(--white);
  border: 1px solid rgba(200, 188, 168, 0.4);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brg-light);
}

.region-visual-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.region-distance {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(27, 67, 50, 0.9);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.region-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.region-card-title {
  font-size: 1.3rem;
  color: var(--brg-dark);
}

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

/* Meet Lina chatbot UI */
.lina-section {
  background: radial-gradient(circle at 10% 20%, rgba(245, 240, 232, 0.4) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 90% 80%, rgba(82, 183, 136, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
}

.lina-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.lina-intro-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lina-avatar-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.lina-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brg-dark) 0%, var(--brg-medium) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold);
}

.lina-status {
  display: flex;
  flex-direction: column;
}

.lina-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brg-dark);
}

.lina-badge {
  font-size: 0.75rem;
  color: var(--brg-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lina-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--brg-light);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.lina-phone-box {
  display: flex;
  gap: 1rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: -1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.lina-phone-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--gold);
}

.lina-phone-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.phone-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--cream);
  color: var(--brg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.lina-phone-box:hover .phone-icon-wrapper {
  background-color: var(--brg-dark);
  color: var(--white);
  transform: scale(1.05);
}

.phone-box-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.phone-box-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  color: var(--brg-dark);
  font-weight: 700;
  margin: 0;
}

.phone-box-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0 0 0.25rem 0;
}

.phone-box-number {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  align-self: flex-start;
}

.phone-box-number:hover {
  color: var(--brg-medium);
}

.lina-chat-console {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background-color: var(--brg-dark);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
}

.chat-header-actions {
  display: flex;
  gap: 0.75rem;
}

.chat-action-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}

.chat-action-dot.green { background-color: var(--brg-light); }

.chat-body {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--cream-light);
}

.msg {
  max-width: 80%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
  animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-lina {
  background-color: var(--white);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  border-left: 3px solid var(--gold);
}

.msg-user {
  background-color: var(--brg-medium);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-suggested {
  padding: 1rem 1.5rem;
  background-color: var(--white);
  border-top: 1px solid rgba(200, 188, 168, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.suggested-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suggested-buttons-container {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.suggested-btn {
  background-color: var(--cream-light);
  border: 1px solid var(--border);
  color: var(--brg-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
}

.suggested-btn:hover {
  background-color: var(--brg-dark);
  color: var(--white);
  border-color: var(--brg-dark);
}

.chat-wip-info {
  padding: 1.25rem 1.5rem;
  background-color: var(--cream-light);
  border-top: 1px solid rgba(200, 188, 168, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.wip-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: wipPulse 2s infinite ease-in-out;
}

.wip-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@keyframes wipPulse {
  0% {
    transform: scale(0.85);
    box-shadow: 0 0 0 0 rgba(184, 150, 62, 0.5);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(184, 150, 62, 0);
  }
  100% {
    transform: scale(0.85);
    box-shadow: 0 0 0 0 rgba(184, 150, 62, 0);
  }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 67, 50, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 720px;
  max-height: 85vh;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-normal);
  border: 1px solid var(--border);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  background-color: var(--brg-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.modal-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-wochenkarte-item {
  border-bottom: 1px solid rgba(200, 188, 168, 0.3);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.modal-wochenkarte-item:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

.wochenkarte-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.wochenkarte-title {
  font-size: 1.1rem;
  color: var(--brg-dark);
  font-weight: 700;
}

.wochenkarte-price {
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-headings);
}

.wochenkarte-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(200, 188, 168, 0.3);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  background-color: var(--cream-light);
}

/* Footer Section */
.footer {
  background-color: var(--brg-dark);
  color: var(--white);
  padding: 5rem 1.5rem 2rem 1.5rem;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  align-self: flex-start;
}

.footer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-subtitle {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-info-label {
  color: var(--gold-light);
  font-weight: 700;
  min-width: 70px;
}

.footer-info-value {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Loading dots for chatbot typing simulation */
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Accordion Section */
.accordion-section {
  background-color: var(--white);
  border-top: 1px solid rgba(200, 188, 168, 0.3);
  padding: 6rem 1.5rem;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  transition: var(--transition-normal);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brg-dark);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: var(--transition-fast);
}

.accordion-header:hover {
  color: var(--brg-medium);
}

.accordion-header span:first-child {
  padding-right: 2rem;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  transition: transform var(--transition-normal);
  display: inline-block;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
  overflow: hidden;
}

.accordion-content-inner {
  min-height: 0;
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--brg-medium);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .panel-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .panel-visual {
    order: -1;
  }
  
  .lina-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Trigger hamburger navigation menu at tablet width to prevent cramping */
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 188, 168, 0.3);
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: 99;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-item {
    font-size: 1.15rem;
    padding: 0.5rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(200, 188, 168, 0.15);
  }
  
  .nav-item::after {
    display: none !important;
  }
  
  .nav-item-highlight {
    text-align: center;
    margin-top: 0.5rem;
    border-width: 1.5px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .logo-img {
    height: 38px;
  }

  .hero-placeholder-card {
    transform: rotate(0);
  }

  /* Hide the header CTA only on mobile screens (keep on tablets) */
  .header-actions > .nav-cta {
    display: none !important;
  }

  /* Show the mobile CTA in the dropdown only on mobile screens */
  .mobile-only {
    display: flex !important;
  }
  
  .tabs-nav {
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }
  
  .highlights-list {
    grid-template-columns: 1fr;
  }
}

/* Language Switcher & Header Actions Styling */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: var(--cream);
  color: var(--brg-dark);
  border: 1px solid var(--border);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  background-color: var(--white);
  border-color: var(--brg-light);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: var(--transition-normal);
  z-index: 1000;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.active .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  padding: 0.5rem 0.75rem;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.lang-option:hover {
  background-color: var(--cream);
  color: var(--brg-dark);
}

.lang-option.active {
  background-color: rgba(45, 106, 79, 0.1);
  color: var(--brg-dark);
  font-weight: 700;
}

.lang-flag {
  font-size: 1.1rem;
}
