/* ===================================
   KONTAKT PAGE STYLES
   =================================== */

/* Reuse the ueber-hero layout from style.css */
.hero-title-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  line-height: 1.3;
  margin: 8px 0 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-intro-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ===================================
   KONTAKT CHANNELS GRID
   =================================== */
.kontakt-section {
  background: var(--cream);
  padding: 80px 0 72px;
}

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

.kontakt-channel-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 28px 28px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,148,58,0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}

.kontakt-channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: rgba(201,148,58,0.25);
}

.kcc-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}

.kcc-icon svg { width: 26px; height: 26px; }

.kcc-icon--form     { background: rgba(14,165,233,0.12); color: #0ea5e9; }
.kcc-icon--email    { background: rgba(14,165,233,0.12); color: #0ea5e9; }
.kcc-icon--whatsapp { background: rgba(37,211,102,0.12); color: #25d366; }
.kcc-icon--messenger {
  background: rgba(139,69,201,0.12);
  color: #8b45c9;
}

.kcc-body { flex: 1; min-width: 0; }

.kcc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.kcc-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.kcc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 16px rgba(201,148,58,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.kontakt-channel-card:hover .kcc-cta {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,148,58,0.4);
}

/* ===================================
   CHECKLIST SECTION
   =================================== */
.checklist-section {
  background: #fff;
  padding: 72px 0 80px;
  border-top: 3px solid var(--cream);
}

.checklist-intro-text {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 48px;
}

.checklist-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream);
  position: relative;
}

.checklist-group-title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* 2-column checklist grid */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.checklist-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  transition: background var(--transition);
}

.checklist-item:hover {
  background: #f0ead9;
}

.cl-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.cl-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cl-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cl-examples {
  color: var(--text-muted);
  font-style: italic;
}

/* Extra groups (Kreuzfahrten / Rundreisen) */
.checklist-extra-group {
  margin-bottom: 40px;
}

.checklist-extra-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.checklist-extra-item em {
  color: var(--text-muted);
}

.checklist-extra-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  margin-top: 7px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  .kontakt-channels-grid {
    grid-template-columns: 1fr;
  }

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

  .kontakt-channel-card {
    gap: 16px;
    padding: 20px;
  }
}
