.contact__section-container {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  padding: 80px 0;
}

.section__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at top center,
    rgba(70, 130, 180, 0.5),
    transparent 70%
  );
  filter: blur(80px);
}

.section__dark-pattern {
  display: none;
}

body.neon-purple-tech .section__dark-pattern {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--bg-primary);
  background-image: 
    linear-gradient(to right, rgba(71,85,105,0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(71,85,105,0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 60%, rgba(14,165,233,0.1) 0%, rgba(45,212,191,0.05) 40%, transparent 70%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}

body.neon-purple-tech .contact__section-container {
  background-color: transparent;
}

body.neon-purple-tech .section__glow {
  display: none;
}

.business-card__section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.bizcard__wrapper {
  perspective: 1000px;
  width: 100%;
  max-width: 700px;
}

/* The Card Itself */
.bizcard {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--p-200);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bizcard:hover {
  transform: translateY(-8px);
}

/* Header & Pattern */
.bizcard__header {
  height: 140px;
  position: relative;
  background: linear-gradient(135deg, var(--p-300), var(--p-500));
}

.bizcard__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.6;
}

/* Avatar */
.bizcard__avatar {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 80px;
  height: 80px;
  background-color: var(--p-50);
  border: 4px solid var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.bizcard__initials {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--p-600);
}

.bizcard__avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Body Content */
.bizcard__body {
  padding: 56px 40px 40px 40px;
}

.bizcard__name {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bizcard__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--n-500);
  margin-bottom: 16px;
}

.bizcard__actions-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.bizcard__badge {
  margin-bottom: 0 !important;
  background-color: var(--p-100);
  border-color: transparent;
}

.bizcard__cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 9999px;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.bizcard__cv-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 15px rgba(139, 92, 246, 0.3);
}

/* Divider */
.bizcard__divider {
  width: 100%;
  height: 1px;
  background-color: var(--p-200);
  margin: 28px 0;
}

/* Subtitle */
.bizcard__subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--n-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Social Grid Links */
.bizcard__social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.bizcard__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: var(--foreground-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

/* Brand Colors on Hover */
.bizcard__btn.fb:hover {
  background-color: #1877F2;
  color: #fff;
  border-color: #1877F2;
}

.bizcard__btn.gh:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.bizcard__btn.in:hover {
  background-color: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
}

.bizcard__btn.yt:hover {
  background-color: #FF0000;
  color: #fff;
  border-color: #FF0000;
}

.bizcard__btn.tk:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.bizcard__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Direct Contacts */
.bizcard__direct {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.bizcard__action {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--p-50);
  border: 1px solid var(--p-200);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.bizcard__action:hover {
  background: var(--p-100);
  border-color: var(--p-300);
  transform: translateX(4px);
}

.action-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--foreground-color);
  border-radius: 12px;
  color: var(--accent-color);
  margin-right: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.action-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.action-text small {
  font-size: 0.8rem;
  color: var(--n-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.action-text strong {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2px;
}

.bizcard__action.email:hover .action-text strong,
.bizcard__action.phone:hover .action-text strong {
  color: var(--accent-color);
}

.action-arrow {
  color: var(--n-400);
  transition: transform 0.3s ease;
}

.bizcard__action:hover .action-arrow {
  color: var(--accent-color);
  transform: translateX(4px);
}

/* Dark Mode Overrides (Neon Tech) */
body.neon-purple-tech .bizcard {
  background-color: rgba(30, 41, 59, 0.85);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.6);
}

body.neon-purple-tech .bizcard__header {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.6), rgba(45, 212, 191, 0.6));
}

body.neon-purple-tech .bizcard__avatar {
  background-color: #1E293B;
  border-color: #1E293B;
}

body.neon-purple-tech .bizcard__initials {
  color: #38BDF8;
}

body.neon-purple-tech .bizcard__divider {
  background-color: rgba(14, 165, 233, 0.2);
}

body.neon-purple-tech .bizcard__btn {
  background-color: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

body.neon-purple-tech .bizcard__action {
  background: rgba(14, 165, 233, 0.05);
  border-color: rgba(14, 165, 233, 0.15);
}

body.neon-purple-tech .bizcard__action:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}

body.neon-purple-tech .action-icon {
  background-color: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

/* Responsive */
@media (max-width: 480px) {
  .bizcard__body {
    padding: 48px 24px 24px 24px;
  }

  .bizcard__avatar {
    left: 24px;
  }

  .bizcard__name {
    font-size: 2rem;
  }

  .bizcard__social-grid,
  .bizcard__connect-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .action-text strong {
    font-size: 0.95rem;
  }
}