/* Modern Tasarım ve Tam Ekran Kart Stilleri */
    .services-modern {
      padding: 60px 5%;
      width: 100%;
      box-sizing: border-box;
    }

    .services-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .services-header h1 {
      font-size: 38px;
      color: #1e7f7f;
      font-family: 'Playfair Display', serif;
      margin-bottom: 15px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
    }

    .photo-service-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      border-bottom: 4px solid #227a7a;
    }

    .photo-service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(34, 122, 122, 0.15);
    }

    .service-img-wrapper {
      width: 100%;
      height: 280px; /* Dikey fotoğraflar için çerçeveyi biraz daha genişlettik */
      overflow: hidden; 
      position: relative;
    }

    .service-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover; 
      object-position: center 20%; /* Varsayılan odak noktası: Ayakta durulan fotolar için üst-orta */
      transition: transform 0.5s ease;
    }

    /* FOTOĞRAFLARI KURTARAN ÖZEL ODAK SINIFLARI */
    .img-center {
      object-position: center center !important; /* Oturulan fotoğraflar için tam orta */
    }
    .img-bottom {
      object-position: center bottom !important; /* Yerdeki hareketler için en alt */
    }

    .photo-service-card:hover .service-img-wrapper img {
      transform: scale(1.05);
    }

    .service-content {
      padding: 35px 25px 25px 25px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      position: relative; 
    }

    /* İkon Stilleri */
    .service-icon-badge {
      position: absolute;
      top: -25px; 
      right: 25px;
      width: 50px;
      height: 50px;
      background: #227a7a;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      z-index: 3; 
    }

    .service-content h3 {
      font-size: 22px;
      color: #1e7f7f;
      margin-bottom: 15px;
      font-family: 'Playfair Display', serif;
    }

    .summary {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      font-weight: 500;
    }

    .details {
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #eee;
      font-size: 14.5px;
      color: #666;
      line-height: 1.6;
    }

    .read-more-btn {
      background: none;
      border: none;
      color: #227a7a;
      font-weight: bold;
      cursor: pointer;
      margin-top: 15px;
      font-size: 15px;
      padding: 0;
      text-align: left;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      align-self: flex-start;
    }

    .read-more-btn:hover {
      color: #145b5b;
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .services-modern {
        padding: 40px 16px;
      }

      .services-header {
        margin-bottom: 30px;
      }

      .services-header h1 {
        font-size: 30px;
      }

      .services-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
      }

      .photo-service-card {
        min-width: 0;
      }

      .service-img-wrapper {
        height: 220px;
      }

      .service-content {
        padding: 32px 18px 20px;
      }

      .read-more-btn {
        min-height: 44px;
        padding: 10px 0;
      }
    }

    @media (max-width: 480px) {
      .services-header h1 {
        font-size: 27px;
      }

      .service-img-wrapper {
        height: 200px;
      }

      .service-content h3 {
        font-size: 20px;
      }
    }
