/* ============================================
   CONTACT — right panel layout
   Used by: contact.html
   ============================================ */

.contact-panel {
  flex: 1;
  height: 100vh;
  background: linear-gradient(100deg,
      #12112a 0%, #0c0b1e 10%, #080714 50%, #03020a 75%, #000 100%);
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 72px;
  box-sizing: border-box;
}

/* Tagline */
.contact-tagline {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.4), 0 2px 8px rgba(255, 255, 255, 0.1);
  margin-bottom: 52px;
}

/* Email */
.contact-email {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-block;
  padding: 16px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  margin-bottom: 56px;
  align-self: flex-start;
}

.contact-email:hover {
  background: #fff;
  color: #050510;
  border-color: #fff;
}

/* Divider */
.contact-divider {
  width: 48px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
}

/* Social links */
.contact-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.social-btn:hover {
  color: #050510;
  background: #fff;
  border-color: #fff;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 20px;
  width: fit-content;
  /* ← this is the fix */
}



.status-text {
  font-size: 15px;
  letter-spacing: 0.08em;
  /* ← reduced from 0.16em */
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  font-weight: bold;
  margin-top: 4px;
}


.status-dot {
  width: 12px;
  /* ← bigger dot */
  height: 12px;
  border-radius: 50%;
  background: #4fff91;
  /* ← green */
  box-shadow:
    0 0 8px rgba(79, 255, 145, 0.8),
    0 0 18px rgba(79, 255, 145, 0.4);
}


/* Responsive */
@media (max-width: 768px) {
  .contact-panel {
    height: auto;
    min-height: 50vh;
  }

  .contact-wrap {
    height: auto;
    padding: 48px 24px;
    justify-content: flex-start;
  }

  .contact-tagline {
    font-size: 28px;
  }

  .contact-email {
    font-size: 18px;
  }
}