/* ── Contact Hero ── */
.contact-hero { position: relative; background: linear-gradient(135deg, #0f0c29 0%, #302b63 55%, #1a1a3e 100%); padding: 90px 0 70px; overflow: hidden; }
.contact-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.22; }
.orb-1 { width: 480px; height: 480px; background: #6366f1; top: -160px; right: -80px; }
.orb-2 { width: 320px; height: 320px; background: #7c3aed; bottom: -60px; left: -60px; }
.contact-hero-content { position: relative; z-index: 1; max-width: 680px; }
.contact-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.18); color: #c4b5fd; padding: 7px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 24px; }
.contact-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 56px); color: white; font-weight: 700; line-height: 1.2; margin-bottom: 18px; }
.contact-hero-content p { font-size: 17px; color: rgba(165,180,252,0.85); line-height: 1.7; max-width: 520px; }

/* ── Section helpers ── */
.section-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 800; color: #6366f1; background: #ede9fe; padding: 6px 14px; border-radius: 100px; margin-bottom: 14px; }
.section-heading-center { text-align: center; margin-bottom: 44px; }
.section-heading-center h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3.5vw, 36px); color: #1e1b4b; font-weight: 700; }

/* ── Contact Cards ── */
.contact-cards-section { padding: 72px 0; background: #f1f5f9; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-info-card { display: flex; flex-direction: column; background: white; border-radius: 18px; padding: 28px 22px; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,0.05); text-decoration: none; transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s; }
.contact-info-card:not(.no-link):hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(99,102,241,0.12); border-color: #c4b5fd; }
.contact-card-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, #6366f1, #8b5cf6); display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; margin-bottom: 16px; box-shadow: 0 4px 14px rgba(99,102,241,0.3); }
.contact-info-card h3 { font-size: 16px; font-weight: 700; color: #1e1b4b; margin-bottom: 8px; }
.contact-info-card p { font-size: 13.5px; color: #64748b; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.contact-email { font-size: 13px; font-weight: 700; color: #6366f1; font-family: 'Outfit', monospace; background: #f5f3ff; padding: 6px 12px; border-radius: 8px; border: 1px solid #e0e7ff; display: inline-block; }

/* ── Quick Actions ── */
.contact-actions-section { padding: 72px 0; background: white; }
.contact-action-grid { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
.contact-action-card { display: flex; align-items: center; gap: 20px; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 14px; padding: 20px 24px; text-decoration: none; transition: all 0.22s; }
.contact-action-card:hover { background: #faf5ff; border-color: #c4b5fd; transform: translateX(4px); }
.contact-action-card > sl-icon:first-child { font-size: 26px; color: #6366f1; flex-shrink: 0; }
.contact-action-card > div { flex: 1; }
.contact-action-card strong { display: block; font-size: 15px; color: #1e1b4b; margin-bottom: 3px; }
.contact-action-card span { font-size: 13.5px; color: #64748b; }
.arrow-icon { font-size: 18px; color: #94a3b8; transition: color 0.2s, transform 0.2s; }
.contact-action-card:hover .arrow-icon { color: #6366f1; transform: translateX(3px); }

/* ── FAQ ── */
.contact-faq-section { padding: 72px 0 80px; background: #f1f5f9; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.faq-item { background: white; border-radius: 14px; padding: 22px 20px; border: 1px solid #e2e8f0; display: flex; gap: 14px; align-items: flex-start; }
.faq-item > sl-icon { font-size: 18px; color: #6366f1; flex-shrink: 0; margin-top: 2px; }
.faq-item h4 { font-size: 15px; font-weight: 700; color: #1e1b4b; margin-bottom: 6px; }
.faq-item p { font-size: 13.5px; color: #64748b; line-height: 1.6; margin: 0; }

@media (max-width: 1024px) { .contact-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .contact-cards-grid { grid-template-columns: 1fr; } .faq-grid { grid-template-columns: 1fr; } }
