/* =========================================================
   PAGE SERVICES CTA — PREMIUM PROFESSIONAL VERSION
   ========================================================= */

   .cta-section {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 6vw, 7rem) 0;
    background: linear-gradient(135deg,#203040,#0f172a);
    isolation: isolate;
  }
  
  /* subtle lighting layer */
  .cta-section::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
      radial-gradient(circle at 20% 30%, rgba(0,198,255,0.18), transparent 45%),
      radial-gradient(circle at 80% 70%, rgba(28,163,199,0.16), transparent 50%);
    z-index: -1;
    pointer-events: none;
  }
  
  .cta-container {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--space-2);
  }
  
  .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  
  .cta-subtitle {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: clamp(1rem,2vw,1.2rem);
    line-height: 1.65;
    opacity: .92;
  }
  
  /* =========================================================
     CTA BUTTON ROW
     ========================================================= */
  
  .cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* shared premium button base */
  .cta-actions a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
  
    min-height: 56px;
    padding: 0 1.8rem;
  
    border-radius: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none;
  
    transition:
      transform .35s cubic-bezier(.25,.8,.25,1),
      box-shadow .35s ease,
      background .35s ease,
      opacity .25s ease;
  }
  
  /* =========================================================
     PHONE BUTTON — STRONG PRIMARY
     ========================================================= */
  
  .btn-cta-phone {
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    color: #fff;
    box-shadow:
      0 8px 24px rgba(0,114,255,.35),
      inset 0 1px 0 rgba(255,255,255,.25);
  }
  
  .btn-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow:
      0 14px 32px rgba(0,114,255,.45);
  }
  
  .btn-cta-phone:active {
    transform: translateY(-1px);
  }
  
  /* =========================================================
     ✨ EMAIL BUTTON — FULL PREMIUM REDESIGN
     ========================================================= */
  
  .btn-accent {
    color: #fff;
    background:
      linear-gradient(135deg,
        rgba(255,255,255,.14),
        rgba(255,255,255,.08));
  
    border: 1px solid rgba(255,255,255,.35);
  
    box-shadow:
      0 8px 22px rgba(0,0,0,.22),
      inset 0 1px 0 rgba(255,255,255,.25);
  
    backdrop-filter: blur(6px);
  }
  
  .btn-accent::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg,
      rgba(255,255,255,.25),
      transparent 55%);
    opacity: 0;
    transition: opacity .35s ease;
  }
  
  .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow:
      0 14px 30px rgba(0,0,0,.35),
      inset 0 1px 0 rgba(255,255,255,.3);
  }
  
  .btn-accent:hover::before {
    opacity: 1;
  }
  
  .btn-accent:active {
    transform: translateY(-1px);
  }
  
  /* =========================================================
     ICONS (SUBTLE MOTION)
     ========================================================= */
  
  .cta-actions .icon {
    font-size: 1.15rem;
    display: inline-flex;
    transition: transform .35s ease;
  }
  
  .cta-actions a:hover .icon {
    transform: translateX(3px);
  }
  
  /* =========================================================
     ACCESSIBILITY
     ========================================================= */
  
  .cta-actions a:focus-visible {
    outline: none;
    box-shadow:
      0 0 0 3px rgba(255,255,255,.25),
      0 0 0 6px rgba(0,198,255,.45);
  }
  
  /* =========================================================
     MOBILE
     ========================================================= */
  
  @media (max-width:768px){
  
    .cta-actions {
      flex-direction: column;
      align-items: stretch;
    }
  
    .cta-actions a {
      width: 100%;
    }
  
  }