/* =========================================================
   CONTACTS PAGE — DARK / BUBBLE STYLE
   ========================================================= */

:root {
  --bg: #0b0b0c;
  --surface: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --shadow: 0 14px 34px rgba(0,0,0,0.35);
  --radius: 18px;
}

body.theme-dark {
  margin: 0;
  min-height: 100vh;

  background: linear-gradient(
    180deg,
    #1a1a1d 0%,
    #121214 50%,
    #0b0b0c 100%
  );

  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Bubble */
.bubble {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* Main card */
.contact-card {
  padding: 28px 26px;
  margin-top: 10rem;
}

.contact-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header */
.contact-head {
  max-width: 640px;
  margin-bottom: 26px;
}

.contact-title {
  margin: 0 0 8px 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.contact-sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  font-size: 20px;
}

.contact-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-value {
  font-weight: 800;
}

.contact-link {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* CTA */
.contact-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
  width: fit-content;
  transition: transform .15s ease, opacity .15s ease;
}

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

.contact-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Social icons */
.contact-socials {
  margin-top: 24px;
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);

  font-size: 20px;
  text-decoration: none;

  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.social-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  opacity: 0.95;
}


/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}