/* ============================================
   CONTACT PAGE — Complete Styles
   ============================================ */

/* ── Hero ── */
.contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Particles */
.contact-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.contact-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: cpFloat linear infinite;
}

@keyframes cpFloat {
  0%   { transform: translateY(100vh); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-50px); opacity: 0; }
}

/* Hero Content */
.contact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 28px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -2px;
  margin: 16px 0;
  line-height: 1;
}

.contact-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ── 3 Direct Contact Boxes ── */
.direct-contact-boxes {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  padding: 0 28px 60px;
  margin: 0 auto;
}

.direct-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: rgba(15,15,26,0.7);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

[data-theme="light"] .direct-box {
  background: rgba(255,255,255,0.8);
}

.direct-box:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 20px 60px rgba(139,92,246,0.15);
}

/* Animated glow behind each box */
.direct-box-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at center,
    rgba(139,92,246,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.whatsapp-glow {
  background: radial-gradient(circle at center,
    rgba(37,211,102,0.08), transparent 70%);
}

.avail-glow {
  background: radial-gradient(circle at center,
    rgba(34, 181, 197, 0.08), transparent 70%);
}

.direct-box:hover .direct-box-glow { opacity: 1; }

/* Icon with ping */
.direct-box-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.email-icon {
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  color: var(--accent-purple);
}

.whatsapp-icon {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25d366;
}

.avail-icon {
  background: #41d2fe1a;
  border: 1px solid #41d2fe2a;
  color: #41d2fe;
}

/* Ping animation */
.icon-ping {
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 2px solid var(--accent-purple);
  opacity: 0;
  animation: iconPing 2s ease-out infinite;
}

.whatsapp-ping { border-color: #25d366; animation-delay: 0.7s; }
.avail-ping    { border-color:#41d2fe; animation-delay: 1.4s; }

@keyframes iconPing {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.5);  opacity: 0; }
}

/* Info */
.direct-box-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.direct-box-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.direct-box-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.direct-box-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Arrow button */
.direct-box-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.direct-box:hover .direct-box-btn {
  background: var(--accent-purple);
  color: #fff;
  transform: translateX(3px);
}

/* Availability status */
.avail-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #22c55e;
  flex-shrink: 0;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: availBlink 2s ease-in-out infinite;
}

@keyframes availBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ============================================
   CONTACT MAIN SECTION
   ============================================ */
.contact-main-section {
  padding: 80px 28px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.contact-main-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* ── Left: Profile + Floating Icons ── */
.contact-profile-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Profile Frame */
.contact-profile-frame {
  position: relative;
  width: 260px;
  height: 320px;
  flex-shrink: 0;
}

.contact-profile-inner {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(15,15,26,0.8);
  border: 1px solid rgba(139,92,246,0.2);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 60px rgba(139,92,246,0.15),
    0 30px 80px rgba(0,0,0,0.3);
}

[data-theme="light"] .contact-profile-inner {
  background: rgba(240,235,255,0.9);
}

.contact-profile-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 1 !important;
}

.contact-profile-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(139,92,246,0.4);
}

.contact-profile-placeholder i { font-size: 4rem; }

/* Spinning gradient ring */
.profile-spin-ring {
  position: absolute;
  inset: -3px;
  border-radius: 31px;
  background: conic-gradient(
    var(--accent-purple) 0deg,
    var(--accent-cyan) 120deg,
    transparent 160deg,
    transparent 200deg,
    var(--accent-purple) 360deg
  );
  z-index: -1;
  animation: spinRing 6s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.profile-glow-ring {
  position: absolute;
  inset: -8px;
  border-radius: 36px;
  background: conic-gradient(
    var(--accent-purple) 0deg,
    var(--accent-cyan) 120deg,
    transparent 160deg,
    transparent 200deg,
    var(--accent-purple) 360deg
  );
  z-index: -2;
  filter: blur(12px);
  opacity: 0.3;
  animation: spinRing 6s linear infinite;
}

/* Floating icons around profile */
.profile-float {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15,15,26,0.85);
  border: 1px solid rgba(139,92,246,0.25);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-purple);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 3;
  cursor: pointer;
}

[data-theme="light"] .profile-float {
  background: rgba(255,255,255,0.9);
}

.profile-float:hover {
  transform: scale(1.2) !important;
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(139,92,246,0.4);
}

/* Positions + animations */
.pf-1 { top: 10px;  left: 10px;  animation: pf1 5s ease-in-out infinite 0s; }
.pf-2 { top: 0px;   right: 30px; animation: pf2 6s ease-in-out infinite 0.5s; }
.pf-3 { top: 40%;   left: -10px; animation: pf1 5.5s ease-in-out infinite 1s; }
.pf-4 { top: 35%;   right: -10px;animation: pf2 4.5s ease-in-out infinite 1.5s; }
.pf-5 { bottom: 30px; left: 15px; animation: pf1 6s ease-in-out infinite 0.8s; }
.pf-6 { bottom: 20px; right: 20px;animation: pf2 5s ease-in-out infinite 2s; }
.pf-7 { bottom: 45%; left: -5px;  animation: pf1 4.8s ease-in-out infinite 1.3s; }
.pf-8 { bottom: 50%; right: 0px;  animation: pf2 6.5s ease-in-out infinite 0.3s; }

@keyframes pf1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes pf2 {
  0%,100% { transform: translateY(0); }
  40%      { transform: translateY(-14px); }
  70%      { transform: translateY(-6px); }
}

/* Profile Info Card */
.profile-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 280px;
}

.pic-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
}

.pic-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: availBlink 2s ease-in-out infinite;
  flex-shrink: 0;
}

.pic-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
  flex-shrink: 0;
}

.pic-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.pic-location i { color: var(--accent-purple); }

/* ── Right: Contact Form ── */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 2px;
  background: linear-gradient(90deg,
    var(--accent-purple), var(--accent-cyan));
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.form-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-purple);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-4px) rotate(5deg); }
}

.form-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Form Groups */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Input Wrap */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 1;
}

.textarea-icon { top: 16px; align-self: flex-start; }

/* Inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
  line-height: 1.6;
}

/* Animated focus line */
.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg,
    var(--accent-purple), var(--accent-cyan));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.input-wrap:focus-within .input-focus-line {
  transform: scaleX(1);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-purple);
  background: rgba(139,92,246,0.04);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.08);
}

.input-wrap:focus-within .input-icon {
  color: var(--accent-purple);
}

/* Select */
.select-wrap select { cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 16px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  pointer-events: none;
}

/* Validation */
.field-error {
  font-size: 0.75rem;
  color: #f87171;
  min-height: 16px;
  display: block;
}

.char-count {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: right;
  display: block;
  margin-top: -4px;
}

.contact-form input.valid,
.contact-form textarea.valid { border-color: #22c55e; }
.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.08);
}

/* Submit Button */
.form-submit {
  width: 100%;
  padding: 15px 28px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg,
    var(--accent-purple), #7c3aed);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(139,92,246,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.submit-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.1), transparent 60%);
  pointer-events: none;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(139,92,246,0.55),
              0 8px 25px rgba(139,92,246,0.35);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.submit-text, .submit-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 20px;
  gap: 16px;
}

.form-success.show { display: flex; }

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 2px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #22c55e;
  animation: successPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.form-success h4 {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-success p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 300px;
}

/* ============================================
   SOCIAL + FAQ — Redesigned
   ============================================ */
.social-faq-section {
  padding: 80px 28px;
  border-top: 1px solid var(--border-color);
}

.social-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* ── Both columns same card style ── */
.social-col,
.faq-col {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.social-col::before,
.faq-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--accent-purple), var(--accent-cyan));
}

.social-col:hover,
.faq-col:hover {
  border-color: rgba(139,92,246,0.25);
}

/* Column label */
.col-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 10px;
}

.col-section-label i { font-size: 0.75rem; }

/* ── SOCIAL — Redesigned ── */
.social-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.social-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Hexagonal icon grid */
.social-hex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.social-hex-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}

.social-hex-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 18px;
}

/* Per platform gradient bg on hover */
.shc-github::after {
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.04), transparent 70%);
}
.shc-linkedin::after {
  background: radial-gradient(circle at center,
    rgba(0,119,181,0.08), transparent 70%);
}
.shc-twitter::after {
  background: radial-gradient(circle at center,
    rgba(29,161,242,0.08), transparent 70%);
}
.shc-instagram::after {
  background: radial-gradient(circle at center,
    rgba(225,48,108,0.08), transparent 70%);
}

.social-hex-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.social-hex-card:hover::after { opacity: 1; }

/* Platform border color on hover */
.shc-github:hover    { border-color: rgba(255,255,255,0.2); }
.shc-linkedin:hover  { border-color: rgba(0,119,181,0.4); }
.shc-twitter:hover   { border-color: rgba(29,161,242,0.4); }
.shc-instagram:hover { border-color: rgba(225,48,108,0.4); }

/* Icon circle with animated ring */
.shc-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  z-index: 1;
}

.shc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.social-hex-card:hover .shc-icon {
  transform: scale(1.1);
}

.shc-github   .shc-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}
.shc-linkedin .shc-icon {
  background: rgba(0,119,181,0.12);
  border: 1px solid rgba(0,119,181,0.2);
  color: #0077b5;
}
.shc-twitter  .shc-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}
.shc-instagram .shc-icon {
  background: rgba(225,48,108,0.12);
  border: 1px solid rgba(225,48,108,0.2);
  color: #e1306c;
}

/* Rotating ring around icon */
.shc-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px dashed transparent;
  animation: shcRingSpin 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shc-github   .shc-ring { border-color: rgba(255,255,255,0.2); }
.shc-linkedin .shc-ring { border-color: rgba(0,119,181,0.3); }
.shc-twitter  .shc-ring { border-color: rgba(29,161,242,0.3); }
.shc-instagram .shc-ring { border-color: rgba(225,48,108,0.3); }

.social-hex-card:hover .shc-ring { opacity: 1; }

@keyframes shcRingSpin {
  to { transform: rotate(360deg); }
}

.shc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  z-index: 1;
}

.shc-handle {
  font-size: 0.72rem;
  color: var(--text-secondary);
  z-index: 1;
}

.shc-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  color: var(--accent-purple);
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-hex-card:hover .shc-btn {
  background: var(--accent-purple);
  color: #fff;
  border-color: transparent;
}

/* ── FAQ — Timeline Style ── */
.faq-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical timeline line */
.faq-list::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,
    var(--accent-purple),
    var(--accent-cyan),
    transparent
  );
  opacity: 0.3;
}

.faq-item {
  position: relative;
  padding-left: 52px;
  margin-bottom: 4px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(139,92,246,0.03);
  border-color: rgba(139,92,246,0.1);
}

.faq-item.open {
  background: rgba(139,92,246,0.04);
  border-color: rgba(139,92,246,0.15);
}

/* Timeline dot/number */
.faq-item::before {
  content: attr(data-num);
  position: absolute;
  left: 6px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-purple);
  font-family: 'Orbitron', monospace;
  z-index: 1;
  transition: all 0.3s ease;
}

.faq-item.open::before {
  background: var(--accent-purple);
  color: #fff;
  border-color: var(--accent-purple);
  box-shadow: 0 0 12px rgba(139,92,246,0.4);
}

.faq-question {
  width: 100%;
  padding: 16px 16px 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-item.open .faq-question { color: var(--accent-purple); }
.faq-question:hover { color: var(--accent-purple); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent-purple);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  background: rgba(139,92,246,0.06);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-purple);
  color: #fff;
  border-color: var(--accent-purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 160px; }

.faq-answer p {
  padding: 0 16px 16px 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .social-faq-container { grid-template-columns: 1fr; }
  .social-col, .faq-col { padding: 28px 24px; }
}

@media (max-width: 560px) {
  .social-faq-section { padding: 60px 20px; }
  .social-hex-grid { grid-template-columns: 1fr 1fr; }
}