/* Genel Yapı ve Diğer Sınıflar Aynı Kalacak, Sadece İlgili Kısımlar Güncellendi */
/* Poppins Fontunu Google Fonts'tan Çekiyoruz */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
.premium-features-module {
  padding: 3px 20px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.module-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Sol Taraf - Görsel Düzeni Aynı Kalacak */
.module-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-backdrop {
  position: absolute;
  width: 90%;
  height: 90%;
  background: #fcfcfc;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  transform: rotate(-5deg);
}

.main-image {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

/* Sağ Taraf - Grid Düzeni Aynı Kalacak */
.module-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Kart Tasarımı Aynı Kalacak */
.grid-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.grid-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.card-purple::before { background-color: #8e44ad; }
.card-blue::before { background-color: #2980b9; }
.card-green::before { background-color: #27ae60; }
.card-orange::before { background-color: #d35400; }

/* === GÜNCELLENEN İKON STİLLERİ (DAHA KÜÇÜK) === */
.icon-circle {
  width: 32px;  /* 50px'den 32px'e düşürüldü */
  height: 32px; /* 50px'den 32px'e düşürüldü */
  border-radius: 50%;
  background-color: #f4f6f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; /* 24px'den 16px'e düşürüldü */
  margin-bottom: 12px; /* 20px'den 12px'e düşürüldü */
  flex-shrink: 0; /* Küçültmeyi zorla */
}

.grid-card h4 {
  font-size: 18px;
  color: #2c3e50;
  margin: 0 0 8px 0; /* Alt boşluk azaltıldı */
  font-weight: 700;
}

.grid-card p {
  font-size: 14px;
  color: #636e72;
  line-height: 1.6;
  margin: 0;
}

/* Mobil ve Tablet Uyumluluğu Aynı Kalacak */
@media (max-width: 991px) {
  .module-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .visual-backdrop {
    border-radius: 50%;
  }
}

@media (max-width: 600px) {
  .module-grid {
    grid-template-columns: 1fr;
  }
}

.premium-heading-wrapper {
  text-align: center;
  padding: 25px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Üstteki Şık Rozet Tasarımı */
.heading-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  color: #4f46e5; /* Rozet yazı rengi */
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* Ana Başlık */
.premium-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b; /* Koyu lacivert/gri tonu */
  line-height: 1.2;
  margin: 0;
  letter-spacing: -1px;
}

/* Vurgulu (Gradyan) Kelime ("Çok Çalışıyoruz!") */
.premium-heading .highlight {
  /* Kurumsal renklere göre buradaki gradient değiştirilebilir */
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

/* Başlık Altı Estetik Çizgi */
.heading-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #ec4899);
  margin: 30px auto 0;
  border-radius: 2px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .premium-heading {
    font-size: 34px;
  }
  .heading-badge {
    font-size: 12px;
  }
}

/* 1. Font ve Temel Ayarlar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.services-module {
    background-color: #f9fbff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

/* 2. Başlık Alanı (Hizmetlerimizi İnceleyin Kısmı) */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.services-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-header .highlight {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.services-header .highlight::after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 6px;
    height: 7px;
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

/* 3. Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 4. Kart Tasarımı (Bütünlük Sorununu Çözen Kısım) */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column; /* İçeriği dikey diz */
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.02);
    min-height: 280px; /* Kartların eşit boyda olması için */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 5. Kart İçi Üst Kısım (İkon ve Başlık) */
.card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px; /* Başlığa olan yakınlığı buradan kontrol edin */
}

.card-icon {
    font-size: 24px;
    color: #333;
    flex-shrink: 0;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 !important; /* Dış boşlukları sıfırlayarak bütünlüğü korur */
    line-height: 1.3;
}

/* 6. Açıklama Metni */
.card-desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin: 0 !important; /* Başlıkla birleşmesi için üst boşluğu sıfırladık */
    flex-grow: 1; /* Altındaki boşluğu doldurarak oku en alta iter */
}

/* 7. Kart Altı (Ok İşareti) */
.card-bottom {
    margin-top: 20px; /* Metin bittikten sonraki boşluk */
    text-align: right; /* Oku sağa yaslar */
}

.arrow-icon {
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* 8. Renk Varyasyonları */
.arrow-orange .arrow-icon { color: #e67e22; }
.arrow-yellow .arrow-icon { color: #f1c40f; }
.arrow-purple .arrow-icon { color: #d7bde2; }
.arrow-lightblue .arrow-icon { color: #aed6f1; }
.arrow-green .arrow-icon { color: #82e0aa; }
.arrow-pink .arrow-icon { color: #f5b7b1; }
.arrow-darkblue .arrow-icon { color: #2980b9; }
.arrow-cyan .arrow-icon { color: #76d7c4; }

/* 9. Mobil Uyumluluk */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-header h2 { font-size: 28px; }
}

/* Modül Genel Font Ayarı */
.teklif-form-section, 
.teklif-form-section * {
    font-family: 'Poppins', sans-serif !important;
    box-sizing: border-box;
}

/* Ana Kart Kapsayıcısı */
.softkrea-card-wrapper {
    display: flex;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

/* Sol Panel (Gri İç Kutu Efekti) */
.form-left-panel {
    flex: 0 0 40%;
    padding: 15px;
}

.left-inner-box {
    background-color: #f1f4f9;
    height: 100%;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px 0;
    text-align: center;
}

/* Başlık: Tam 48px */
.softkrea-main-title {
    font-size: 48px !important;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 10px;
}

.text-accent {
    color: #ad47b8;
}

.softkrea-sub-text {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 30px;
}

.softkrea-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.softkrea-statue-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}

/* Sağ Panel (Form Alanı) */
.form-right-panel {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.softkrea-grid-form {
    width: 100%;
}

.form-row-custom {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-field-half {
    flex: 1;
}

/* Input ve Textarea Stilleri */
.softkrea-grid-form input,
.softkrea-grid-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.softkrea-grid-form input:focus,
.softkrea-grid-form textarea:focus {
    border-color: #d35400;
    box-shadow: 0 0 0 4px rgba(211, 84, 0, 0.05);
}

.form-field-full {
    margin-bottom: 15px;
}

.softkrea-grid-form textarea {
    resize: none;
}

/* Gönder Butonu */
.softkrea-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.softkrea-submit-btn:hover {
    background-color: #ba4a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.2);
}

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 991px) {
    .softkrea-card-wrapper {
        flex-direction: column;
        border-radius: 20px;
    }
    .form-left-panel {
        flex: none;
    }
    .left-inner-box {
        padding: 40px 20px 0;
    }
    .softkrea-main-title {
        font-size: 34px !important;
    }
    .form-right-panel {
        padding: 40px 20px;
    }
    .form-row-custom {
        flex-direction: column;
        gap: 15px;
    }
}

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

  /* Sadece bu section'ı etkileyecek kapsayıcı ayarlar */
  .sk-compare-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 20px; /* Anasayfa section boşluklarına göre üst/alt padding */
    font-family: 'Inter', sans-serif;
    width: 100%;
  }

  /* Kapsayıcı içindeki tüm elemanlar için kutu modeli sıfırlaması */
  .sk-compare-section * {
    box-sizing: border-box;
  }

  .sk-compare-section p, 
  .sk-compare-section h2, 
  .sk-compare-section h3 {
    margin: 0;
    padding: 0;
  }

  /* Ana Taşıyıcı */
  .sk-compare-section .module-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
  }

  @media (min-width: 900px) {
    .sk-compare-section .module-container {
      flex-direction: row;
    }
  }

  /* Sol Karanlık Panel */
  .sk-compare-section .left-panel {
    background-color: #1e2638;
    color: white;
    padding: 40px;
    border-radius: 16px;
    border-bottom-left-radius: 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .sk-compare-section .left-panel h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .sk-compare-section .text-green {
    color: #ff68b9;
  }

  .sk-compare-section .left-panel p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
  }

  /* Buton Grubu */
  .sk-compare-section .button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .sk-compare-section .btn-custom {
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    letter-spacing: 0.5px;
    text-decoration: none; /* Link olarak kullanılacağı için eklendi */
    display: inline-block;
  }

  .sk-compare-section .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }

  /* Gradient Arka Planlı Buton */
  .sk-compare-section .btn-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
  }

  /* Gradient Çerçeveli Buton */
  .sk-compare-section .btn-outline {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #4f46e5 0%, #ec4899 100%) border-box;
    border: 2px solid transparent;
    color: #000;
    font-family: 'Poppins', sans-serif;
  }

  /* Sağ Karşılaştırma Paneli */
  .sk-compare-section .right-panel {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    flex: 1.5;
  }

  .sk-compare-section .compare-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .sk-compare-section .compare-header h3 {
    font-size: 18px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 48%;
  }

  .sk-compare-section .divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 25px;
  }

  .sk-compare-section .compare-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
  }

  .sk-compare-section .compare-box {
    width: 48%;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .sk-compare-section .sftkrea-box {
    background-color: #d1fadd;
    color: #166534;
    font-family: 'Poppins', sans-serif;
  }

  .sk-compare-section .other-box {
    background-color: #ff5a5a;
    color: white;
    font-family: 'Poppins', sans-serif;
  }

  @media (max-width: 600px) {
    .sk-compare-section .compare-header, 
    .sk-compare-section .compare-row {
      flex-direction: column;
    }
    .sk-compare-section .compare-header h3, 
    .sk-compare-section .compare-box {
      width: 100%;
    }
    .sk-compare-section .left-panel {
      border-bottom-left-radius: 16px;
    }
  }
  
  .sftbaslik-header {
    text-align: center;
    max-width: 800px;
    margin: 25px auto 50px auto;
}

.sftbaslik-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.sftbaslik-header .highlight {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.sftbaslik-header .highlight::after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 6px;
    height: 7px;
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}