/* ===================================================
   REMOTE SUPPORT SECTION — PREMIUM CSS
   =================================================== */

.remote-support-section {
  padding: 5rem 0;
  background: linear-gradient(155deg, #eef3f8 0%, #e7eef6 50%, #eef3f8 100%);
  border-bottom: 1px solid rgba(29, 124, 191, 0.12);
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow — center */
.remote-support-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(29, 124, 191, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative arc lines — top left & bottom right */
.remote-support-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 15%, transparent 0%, transparent 35%, rgba(29, 124, 191, 0.05) 36%, transparent 37%),
    radial-gradient(circle at 90% 85%, transparent 0%, transparent 42%, rgba(29, 124, 191, 0.04) 43%, transparent 44%);
  pointer-events: none;
}

.remote-support-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.remote-support-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Decorative accent line above title */
.remote-support-content::before {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #1d7cbf, #3b9edd);
  border-radius: 9999px;
  margin: 0 auto 2rem;
  animation: lineGrow 0.8s cubic-bezier(0.34, 1.4, 0.64, 1) 0.2s backwards;
}

@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to { width: 50px; opacity: 1; }
}

/* Title */
.remote-support-content h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #0d1b2a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .remote-support-content h2 {
    font-size: 2.35rem;
  }
}

/* Rich text / paragraph */
.remote-support-richtext,
.remote-support-content p {
  font-size: 1rem;
  font-weight: 500;
  color: #3d5166;
  margin-bottom: 2.25rem;
  line-height: 1.75;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.remote-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 2.75rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #1d7cbf 0%, #145d96 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  /* Premium shadow stack */
  box-shadow:
    0 4px 12px rgba(29, 124, 191, 0.35),
    0 1px 3px rgba(29, 124, 191, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  transition: all 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* Shimmer effect */
.remote-support-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.remote-support-btn:hover {
  background: linear-gradient(135deg, #1d7cbf 0%, #0d4d7a 100%);
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(29, 124, 191, 0.45),
    0 2px 6px rgba(29, 124, 191, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.remote-support-btn:hover::before {
  left: 100%;
}

.remote-support-btn:active {
  transform: translateY(-1px);
  box-shadow:
    0 4px 14px rgba(29, 124, 191, 0.4),
    0 1px 4px rgba(29, 124, 191, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.remote-support-btn:focus-visible {
  outline: none;
  box-shadow:
    0 8px 24px rgba(29, 124, 191, 0.45),
    0 2px 6px rgba(29, 124, 191, 0.3),
    0 0 0 3px rgba(29, 124, 191, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 640px) {
  .remote-support-section {
    padding: 4rem 0;
  }

  .remote-support-content h2 {
    font-size: 1.65rem;
  }

  .remote-support-btn {
    width: 100%;
    max-width: 320px;
  }

  .remote-support-content::before {
    animation: none;
  }
}

@supports (content-visibility: auto) {
  @media (max-width: 991px) {
    .remote-support-section {
      content-visibility: auto;
      contain-intrinsic-size: 1px 620px;
    }
  }
}
