/* ── ANA BÖLÜM VE ORTAK KARTLAR ── */
.srv-main {
    background: var(--bg);
  }
  
  .srv-section {
    display: none;
    opacity: 0;
    animation: srvFadeIn 0.55s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }
  
  .srv-section.active {
    display: block;
  }
  
  @keyframes srvFadeIn {
    to { opacity: 1; transform: translateY(0); }
    from { opacity: 0; transform: translateY(24px); }
  }
  
  .srv-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5vw;
  }
  
  .srv-section-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .srv-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300;
    color: var(--text);
    margin: 14px 0 20px;
    line-height: 1.15;
  }
  
  .srv-section-header h2 em {
    color: var(--teal);
    font-style: italic;
  }
  
  .srv-sec-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
  }
  
  /* ── İKİLİ KART DÜZENİ ── */
  .srv-card-duo {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
  }
  
  .srv-card-duo--reverse {
    flex-direction: row-reverse;
  }
  
  .srv-card-visual {
    flex: 1;
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  
  .srv-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  .srv-card-visual:hover img {
    transform: scale(1.05);
  }
  
  .srv-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--teal);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    z-index: 2;
  }
  
  .srv-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .srv-card-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--text);
    margin: 14px 0 22px;
    line-height: 1.2;
  }
  
  .srv-card-text h3 em {
    color: var(--teal);
    font-style: italic;
  }
  
  .srv-card-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.03rem;
    color: var(--text-2);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 25px;
  }
  
  .sec-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--teal);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
  }
  
  .srv-list {
    list-style: none;
    margin-bottom: 28px;
  }
  
  .srv-list li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
  }
  
  .srv-list li:last-child { border-bottom: none; }
  
  .srv-list li i {
    color: var(--teal);
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  
  .srv-cta-link {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid var(--teal);
    padding-bottom: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
  
  .srv-cta-link:hover {
    color: var(--coral);
    border-color: var(--coral);
  }