/* ── ALT CTA ── */
.srv-cta-section {
    position: relative;
    padding: 120px 5vw;
    text-align: center;
    background: #111;
    overflow: hidden;
  }
  
  .srv-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(60%);
    transition: opacity 0.5s ease;
  }
  
  .srv-cta-section:hover .srv-cta-bg { opacity: 0.6; filter: grayscale(20%); }
  
  .srv-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  }
  
  .srv-cta-body {
    position: relative;
    z-index: 5;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .srv-cta-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    font-weight: 300;
    margin-bottom: 15px;
  }
  
  .srv-cta-body h2 em { color: var(--teal); font-style: italic; }
  
  .srv-cta-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
  }
  
  .srv-cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--teal);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    border-radius: 40px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  
  .srv-cta-btn:hover {
    background: var(--coral);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231,111,81,0.4);
  }