/* ==========================================================================
   Q-DASH INTERACTIVE CONTACT EXPERIENCE STYLING (EXACT REFERENCE REPRODUCTION)
   Visual Hierarchy: Form on RIGHT, 3D Tilted Smartphone on LEFT, 4 Orbiting
   Channels with Glowing Edge-Nodes, 3D Pedestal with Energy Fibers & Paper Plane
   ========================================================================== */

:root {
  --qd-ct-navy: #0F2034;
  --qd-ct-navy-deep: #030712;
  --qd-ct-navy-light: #1E2D3D;
  --qd-ct-orange: #FF6A2A;
  --qd-ct-orange-glow: rgba(255, 106, 42, 0.5);
  --qd-ct-orange-soft: rgba(255, 106, 42, 0.1);
  --qd-ct-border: #E8EDF3;
  --qd-ct-border-soft: #F1F5F9;
  --qd-ct-tx-title: #0F2034;
  --qd-ct-tx-body: #475569;
  --qd-ct-tx-muted: #64748B;
  --qd-ct-radius-lg: 24px;
  --qd-ct-radius-md: 16px;
  --qd-ct-radius-sm: 10px;
}

/* ── Full-Width Section Environment ────────────────────────────────── */
#contact.qd-contact-section {
  width: 100% !important;
  max-width: 100% !important;
  background: radial-gradient(circle at 25% 40%, rgba(255, 106, 42, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.04) 0%, transparent 50%),
              linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 50%, #FFFFFF 100%) !important;
  padding: 80px 4% 90px !important;
  position: relative !important;
  overflow: hidden !important;
  color: var(--qd-ct-tx-title) !important;
  box-sizing: border-box !important;
  border-top: 1px solid #E8EDF3 !important;
}

.qd-contact-container {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ── Section Header ────────────────────────────────────────────────── */
.qd-contact-header {
  text-align: center;
  margin-bottom: 52px;
}

.qd-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF3EC;
  border: 1px solid rgba(255, 106, 42, 0.2);
  color: var(--qd-ct-orange);
  font-size: 13.5px;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.qd-contact-title {
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 900;
  color: var(--qd-ct-navy);
  margin: 0 0 12px;
  line-height: 1.25;
}

.qd-contact-title .hl-orange {
  color: var(--qd-ct-orange);
}

.qd-contact-subtitle {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--qd-ct-tx-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── MAIN 2-COLUMN LAYOUT ──────────────────────────────────────────── */
.qd-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

/* In English LTR: Visual on Left (Col 1), Form on Right (Col 2) */
html[dir="ltr"] .qd-contact-layout {
  grid-template-columns: 1.05fr 1fr;
}
html[dir="ltr"] .qd-contact-visual-col { order: 1; }
html[dir="ltr"] .qd-contact-form-col { order: 2; }

/* In Arabic RTL: Form in Col 1 (RIGHT), Visual in Col 2 (LEFT) */
html[dir="rtl"] .qd-contact-layout,
body.ar .qd-contact-layout {
  grid-template-columns: 1fr 1.05fr;
}

/* ══════════════════════════════════════════════════════════════════════
   VISUAL COLUMN: 3D INTERACTIVE SMARTPHONE & COMMUNICATION CENTER
   ══════════════════════════════════════════════════════════════════════ */
.qd-contact-visual-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qd-contact-stage-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background World Map & Faint Net Lines */
.qd-contact-world-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.22;
  z-index: 1;
}

/* ── 3D MODERN SMARTPHONE VISUAL (SLIM, MODERN IPHONE) ──────────────── */
.qd-contact-phone-wrap {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: qdPhoneFloat 5s ease-in-out infinite alternate;
}

.qd-contact-phone {
  width: 250px;
  height: 440px;
  background: #030712;
  border: 4px solid #1E293B;
  border-radius: 46px;
  position: relative;
  box-sizing: border-box;
  padding: 12px 10px 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45),
              inset 0 0 0 1.5px rgba(255, 255, 255, 0.2),
              0 0 35px rgba(255, 106, 42, 0.15);
  display: flex;
  flex-direction: column;
}

/* Dynamic Island Notch */
.qd-phone-notch {
  width: 68px;
  height: 16px;
  background: #000000;
  border-radius: 20px;
  margin: 2px auto 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.qd-phone-camera-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1E293B;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Phone Screen Internal UI */
.qd-phone-screen {
  flex: 1;
  background: radial-gradient(circle at 50% 25%, #101E2E 0%, #030712 100%);
  border-radius: 36px;
  padding: 18px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.8);
}

.qd-phone-brand {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.qd-phone-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 750;
  color: var(--qd-ct-orange);
  background: rgba(255, 106, 42, 0.12);
  padding: 3px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 42, 0.3);
}

.qd-phone-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--qd-ct-orange);
  box-shadow: 0 0 8px var(--qd-ct-orange);
  animation: qdPulseDot 1.6s infinite;
}

/* Center Document / Request Icon */
.qd-phone-icon-center {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 42, 0.18) 0%, rgba(15, 32, 52, 0.7) 100%);
  border: 1.5px solid rgba(255, 106, 42, 0.55);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 28px rgba(255, 106, 42, 0.35);
  margin: 4px 0;
  transition: all 0.4s ease;
}

.qd-phone-service-title {
  font-size: 14px;
  font-weight: 850;
  color: #FFFFFF;
  margin-bottom: 2px;
  min-height: 20px;
  transition: color 0.3s ease;
}

.qd-phone-receipt-msg {
  font-size: 11px;
  color: var(--qd-ct-orange);
  font-weight: 750;
  opacity: 0.95;
}

.qd-phone-bottom-status {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  color: #94A3B8;
}

.qd-phone-dots-anim span {
  display: inline-block;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: var(--qd-ct-orange);
  animation: qdTypingDots 1.4s infinite;
}
.qd-phone-dots-anim span:nth-child(2) { animation-delay: 0.2s; }
.qd-phone-dots-anim span:nth-child(3) { animation-delay: 0.4s; }

/* ── 4 GLOWING NODES ATTACHED DIRECTLY TO PHONE BEZEL ──────────────── */
.qd-phone-edge-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFA500;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 16px rgba(255, 106, 42, 1), 0 0 30px rgba(255, 165, 0, 0.85);
  z-index: 10;
  animation: qdNodeGlow 2s ease-in-out infinite alternate;
}

.qd-node-tl { top: 120px; left: -7px; }
.qd-node-bl { bottom: 120px; left: -7px; }
.qd-node-tr { top: 135px; right: -7px; }
.qd-node-br { bottom: 105px; right: -7px; }

/* ── 3D CIRCULAR PEDESTAL (CLEANLY SITUATED UNDER PHONE BASE) ──────── */
.qd-phone-platform {
  width: 340px;
  height: 80px;
  margin-top: -15px; /* Sits naturally right beneath the standing phone */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.qd-platform-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 15px 30px rgba(255, 106, 42, 0.4));
}

.qd-platform-glow-ring {
  animation: qdPlatformPulse 3s ease-in-out infinite alternate;
}

/* Flying Orange Origami Paper Plane on Platform */
.qd-paper-plane-floating {
  position: absolute;
  top: 10px;
  right: -10px;
  width: 48px;
  height: 48px;
  z-index: 6;
  animation: qdPlaneFloat 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 6px 14px rgba(255, 106, 42, 0.5));
}

/* ── 4 CIRCULAR COMMUNICATION CHANNELS ─────────────────────────────── */
.qd-contact-channel {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.qd-contact-channel:hover,
.qd-contact-channel.is-active {
  transform: translateY(-4px) scale(1.06);
}

.qd-channel-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(15, 32, 52, 0.08);
  margin-bottom: 6px;
  transition: transform 0.3s ease;
  background: #FFFFFF;
}

.qd-contact-channel:hover .qd-channel-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 106, 42, 0.25);
}

.qd-channel-whatsapp .qd-channel-icon-circle { color: #25D366; border: 1.5px solid #25D366; }
.qd-channel-email .qd-channel-icon-circle { color: #1E40AF; border: 1.5px solid #3B82F6; }
.qd-channel-phone .qd-channel-icon-circle { color: var(--qd-ct-orange); border: 1.5px solid var(--qd-ct-orange); }
.qd-channel-service .qd-channel-icon-circle { color: #8B5CF6; border: 1.5px solid #8B5CF6; }

.qd-channel-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qd-channel-title {
  font-size: 13.5px;
  font-weight: 900;
  color: var(--qd-ct-navy);
  margin-bottom: 2px;
}

.qd-channel-desc {
  font-size: 11px;
  color: var(--qd-ct-tx-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.qd-channel-desc::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.qd-channel-whatsapp .qd-channel-desc::before { background: #25D366; }
.qd-channel-email .qd-channel-desc::before { background: #3B82F6; }
.qd-channel-phone .qd-channel-desc::before { background: var(--qd-ct-orange); }
.qd-channel-service .qd-channel-desc::before { background: #8B5CF6; }

/* 4 Absolute Positions Around Phone matching Reference */
.qd-channel-pos-tl { top: 60px; left: 30px; }
.qd-channel-pos-bl { bottom: 120px; left: 35px; }
.qd-channel-pos-tr { top: 75px; right: 30px; }
.qd-channel-pos-br { bottom: 100px; right: 35px; }

/* ── CONNECTING SVG NETWORK PATHS ──────────────────────────────────── */
.qd-contact-paths-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.qd-signal-path {
  fill: none;
  stroke-width: 1.8;
  stroke-dasharray: 5 5;
  opacity: 0.7;
  transition: opacity 0.4s ease, stroke-width 0.4s ease;
}

.qd-signal-path.is-active {
  opacity: 1;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(255, 106, 42, 0.9));
}

/* ── SUB-MESSAGE & 3 BOTTOM BENEFITS ───────────────────────────────── */
.qd-contact-sub-msg {
  text-align: center;
  margin: 16px 0 24px;
}

.qd-contact-sub-hd {
  font-size: 17px;
  font-weight: 900;
  color: var(--qd-ct-navy);
  margin-bottom: 4px;
}

.qd-contact-sub-desc {
  font-size: 13.5px;
  color: var(--qd-ct-tx-muted);
  margin: 0;
}

/* 3 Clean Bottom Benefit Cards matching Reference */
.qd-contact-benefits-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 560px;
}

.qd-contact-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.qd-contact-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 4px;
  box-shadow: 0 6px 18px rgba(15, 32, 52, 0.06);
}

.qd-contact-benefit-icon.ic-orange {
  background: #FFF7ED;
  color: var(--qd-ct-orange);
  border: 1px solid rgba(255, 106, 42, 0.25);
}

.qd-contact-benefit-icon.ic-navy {
  background: #F1F5F9;
  color: var(--qd-ct-navy);
  border: 1px solid rgba(15, 32, 52, 0.2);
}

.qd-contact-benefit-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--qd-ct-navy);
  margin: 0;
}

.qd-contact-benefit-desc {
  font-size: 11.5px;
  color: var(--qd-ct-tx-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   FORM COLUMN: REDESIGNED CONTACT FORM (MATCHING REFERENCE EXACTLY)
   ══════════════════════════════════════════════════════════════════════ */
.qd-contact-form-col {
  width: 100%;
}

.qd-contact-form-shell {
  background: #FFFFFF;
  border: 1.5px solid var(--qd-ct-border);
  border-radius: var(--qd-ct-radius-lg);
  padding: 42px 40px;
  box-shadow: 0 20px 60px rgba(15, 32, 52, 0.05);
  position: relative;
}

/* Success Feedback Banner */
.qd-contact-ok-banner {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1.5px solid #10B981;
  color: #065F46;
  border-radius: var(--qd-ct-radius-md);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 800;
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
  animation: qdFadeIn 0.4s ease;
}

.qd-contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qd-contact-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qd-contact-label {
  font-size: 13.5px;
  font-weight: 850;
  color: var(--qd-ct-navy);
  text-align: start;
}

.qd-contact-label .req {
  color: var(--qd-ct-orange);
}

/* Input Shell: Matches Reference Exactly (Icon on LEFT, Text on RIGHT) */
.qd-contact-input-shell {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--qd-ct-radius-sm);
  transition: all 0.25s ease;
}

.qd-contact-input-shell:focus-within {
  border-color: var(--qd-ct-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 42, 0.15);
}

.qd-contact-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--qd-ct-navy);
  font-family: inherit;
  font-weight: 600;
  outline: none;
  text-align: start;
}

.qd-contact-input::placeholder {
  color: #94A3B8;
  font-weight: 500;
}

.qd-contact-field-icon {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 15px;
  transition: color 0.25s ease;
  flex-shrink: 0;
}

.qd-contact-input-shell:focus-within .qd-contact-field-icon {
  color: var(--qd-ct-orange);
}

/* Custom Select Field */
.qd-contact-select {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--qd-ct-navy);
  font-family: inherit;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-align: start;
}

.qd-contact-select-arrow {
  position: absolute;
  inset-inline-start: 16px;
  color: #94A3B8;
  font-size: 13px;
  pointer-events: none;
}

/* Textarea Field */
.qd-contact-textarea-shell {
  align-items: flex-start;
}

.qd-contact-textarea-shell .qd-contact-field-icon {
  padding-top: 14px;
}

.qd-contact-textarea {
  min-height: 115px;
  resize: vertical;
}

/* ── 3 COMPACT TRUST INDICATORS (MATCHING REFERENCE EXACTLY) ───────── */
.qd-contact-form-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.qd-form-trust-box {
  background: #F8FAFC;
  border: 1px solid var(--qd-ct-border-soft);
  border-radius: var(--qd-ct-radius-sm);
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: start;
}

.qd-form-trust-icon {
  font-size: 16px;
  flex-shrink: 0;
}
.qd-form-trust-box.box-green .qd-form-trust-icon { color: #10B981; }
.qd-form-trust-box.box-blue .qd-form-trust-icon { color: #3B82F6; }
.qd-form-trust-box.box-orange .qd-form-trust-icon { color: var(--qd-ct-orange); }

.qd-form-trust-text {
  display: flex;
  flex-direction: column;
}

.qd-form-trust-hd {
  font-size: 11.5px;
  font-weight: 900;
  color: var(--qd-ct-navy);
  line-height: 1.2;
}

.qd-form-trust-sub {
  font-size: 9.5px;
  color: var(--qd-ct-tx-muted);
  line-height: 1.2;
}

/* ── SUBMIT BUTTON ─────────────────────────────────────────────────── */
.qd-contact-submit-btn {
  width: 100%;
  background: var(--qd-ct-orange);
  color: #FFFFFF !important;
  border: none;
  border-radius: 40px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 850;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 106, 42, 0.35);
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}

.qd-contact-submit-btn:hover {
  background: #E05318;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 42, 0.45);
}

.qd-contact-submit-btn:active {
  transform: translateY(0);
}

.qd-contact-submit-btn i {
  transition: transform 0.25s ease;
}

.qd-contact-submit-btn:hover i {
  transform: translateX(-4px);
}

/* Privacy Guarantee Line */
.qd-contact-privacy-note {
  text-align: center;
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--qd-ct-tx-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Keyframe Animations ───────────────────────────────────────────── */
@keyframes qdPhoneFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

@keyframes qdPlaneFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-6px) rotate(-4deg); }
}

@keyframes qdPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes qdTypingDots {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.7); }
  40% { opacity: 1; transform: scale(1.15); }
}

@keyframes qdNodeGlow {
  0% { box-shadow: 0 0 10px rgba(255, 106, 42, 0.8), 0 0 20px rgba(255, 165, 0, 0.5); }
  100% { box-shadow: 0 0 20px rgba(255, 106, 42, 1), 0 0 35px rgba(255, 165, 0, 0.9); }
}

@keyframes qdPlatformPulse {
  0% { opacity: 0.6; filter: drop-shadow(0 10px 20px rgba(255, 106, 42, 0.2)); }
  100% { opacity: 1; filter: drop-shadow(0 15px 30px rgba(255, 106, 42, 0.45)); }
}

@keyframes qdFadeIn {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Responsive Adaptations ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .qd-contact-layout {
    grid-template-columns: 1fr !important;
    gap: 56px;
  }
  .qd-contact-form-col {
    order: 1 !important; /* Mobile priority: Form first */
  }
  .qd-contact-visual-col {
    order: 2 !important;
  }
  .qd-contact-stage-wrap {
    max-width: 520px;
    height: 480px;
  }
}

@media (max-width: 640px) {
  #contact.qd-contact-section {
    padding: 56px 4% 64px !important;
  }
  .qd-contact-form-shell {
    padding: 28px 20px;
  }
  .qd-contact-form-trust {
    grid-template-columns: 1fr;
  }
  .qd-contact-benefits-strip {
    grid-template-columns: 1fr;
  }
  .qd-contact-stage-wrap {
    height: 440px;
  }
  .qd-contact-phone {
    width: 225px;
    height: 395px;
  }
  .qd-channel-icon-circle {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .qd-channel-title {
    font-size: 12px;
  }
  .qd-channel-desc {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qd-contact-phone-wrap,
  .qd-paper-plane-floating,
  .qd-platform-glow-ring,
  .qd-phone-status-dot,
  .qd-phone-edge-node,
  .qd-phone-dots-anim span {
    animation: none !important;
    transition: none !important;
  }
}
