/* ══════════════════════════════════════════
   ElektroGH.wien – Contact Page Styles
   ══════════════════════════════════════════ */

.contact-hero {
  background: var(--black);
  padding: 48px 0;
  text-align: center;
}
.contact-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.contact-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.5); }

/* ──────────── CONTACT CARDS ──────────── */
.contact-cards {
  max-width: 1280px;
  margin: -40px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
  width: 52px; height: 52px;
  background: var(--yellow-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.contact-card-icon .lucide { width: 26px; height: 26px; color: var(--yellow-dark); }
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.contact-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.contact-card a { color: var(--yellow-dark); font-weight: 600; transition: color 0.15s; }
.contact-card a:hover { color: var(--black); }

/* ──────────── CONTACT LAYOUT ──────────── */
.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
}

/* ──────────── CONTACT FORM ──────────── */
.contact-form-panel {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .btn-primary { width: 100%; justify-content: center; }

.form-success {
  text-align: center;
  padding: 40px;
  display: none;
}
.form-success .lucide { width: 48px; height: 48px; color: var(--green); margin-bottom: 16px; }
.form-success h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.form-success p { font-size: 0.88rem; color: var(--muted); }

/* ──────────── SIDEBAR ──────────── */
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }

.sidebar-block {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-block-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-block-title .lucide { width: 20px; height: 20px; color: var(--yellow-dark); }

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.hours-list .day { color: var(--text); font-weight: 500; }
.hours-list .time { color: var(--muted); font-family: 'DM Mono', monospace; font-size: 0.82rem; }

.map-placeholder {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
}
.map-placeholder .lucide { width: 32px; height: 32px; }
.map-placeholder span { font-size: 0.82rem; font-weight: 600; }

.quick-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s;
}
.quick-contact-list a:hover { background: var(--border); }
.quick-contact-list .lucide { width: 18px; height: 18px; color: var(--muted); }

@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; padding: 0 16px; margin-top: -24px; }
  .contact-card { padding: 22px; }
  .contact-layout { grid-template-columns: 1fr; padding: 24px 16px 40px; gap: 20px; }
  .contact-form-panel { padding: 24px; }
  .sidebar-block { padding: 20px; }
  .contact-hero { padding: 28px 0; }
  .contact-hero-inner { padding: 0 16px; }
  .contact-hero h1 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .contact-cards { padding: 0 12px; }
  .contact-card { padding: 18px; }
  .contact-layout { padding: 16px 12px 32px; }
  .contact-form-panel { padding: 20px; }
  .sidebar-block { padding: 16px; }
  .contact-hero h1 { font-size: 1.3rem; }
}
