/* /assets/css/style.css */
/* WEBLINE SOFT v3.2 - Mega Menü Stilleri Kaldırıldı. */
/* "Kurumsal" menüsü de artık standart dropdown. */
/* GÜNCELLEME: Statik sayfa ana görsel stili eklendi. */

/* --- 1. Temel Ayarlar ve Yeni Renk Paleti --- */
:root {
  --wl-teal: #1db990; 
  --wl-teal-dark: #179473; 
  --wl-teal-light: #f0fdf9; 
  --wl-dark: #2c3e50;   
  --wl-body-text: #566776; 
  --wl-light: #f8f9fa; 
  --wl-white: #ffffff;
  --wl-gray: #e9ecef; 
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--wl-body-text);
  line-height: 1.7;
  background-color: var(--wl-white);
}

/* --- 2. Genel Yardımcı Sınıflar ve Butonlar --- */
.bg-light-teal {
  background-color: var(--wl-teal-light);
}
.text-teal {
  color: var(--wl-teal);
}

.btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background-color: var(--wl-teal);
  border-color: var(--wl-teal);
}
.btn-primary:hover {
  background-color: var(--wl-teal-dark);
  border-color: var(--wl-teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(29, 185, 144, 0.25);
}

.btn-outline-primary {
  border-color: var(--wl-teal);
  color: var(--wl-teal);
}
.btn-outline-primary:hover {
  background-color: var(--wl-teal);
  color: var(--wl-white);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(29, 185, 144, 0.2);
}

.btn-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--wl-dark); 
    color: var(--wl-white) !important;
    border-radius: 50%; 
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem; 
    margin-left: 0;
}
@media (min-width: 992px) {
    .btn-cart-icon {
        margin-left: 10px; 
    }
}
.btn-cart-icon:hover {
    background-color: var(--wl-teal); 
    color: var(--wl-white) !important;
    box-shadow: 0 4px 15px rgba(29, 185, 144, 0.25);
    transform: scale(1.05);
}

/* --- 3. Preloader (Aynı) --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #ffffff; z-index: 99999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader-container { text-align: center; }
.loader-logo {
    width: 75px; margin-bottom: 20px;
    animation: pulse 1s infinite alternate; 
}
@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* --- 4. Bölüm Başlıkları (Aynı) --- */
.section-title {
  margin-bottom: 4rem;
  text-align: center;
}
.section-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--wl-dark);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 1rem;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: var(--wl-teal);
  border-radius: 2px;
}
.section-title p {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 650px;
  margin: 0 auto;
}

/* Section title with action button */
.section-title-with-action {
  text-align: left;
}
.section-title-with-action h2 {
  display: inline-block;
}
.section-title-with-action .text-center h2 {
  display: inline-block;
}

/* --- 5. Header / Navbar (Sadeleştirildi) --- */
.topbar {
    background-color: var(--wl-dark) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar .ticker-wrap { overflow: hidden; height: 1.5em; position: relative; }
.topbar .ticker-move { display: flex; width: max-content; animation: ticker 15s linear infinite; }
.topbar .ticker-item { padding: 0 2rem; white-space: nowrap; line-height: 1.5em; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.navbar-main {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--wl-white);
  transition: all 0.3s ease;
}
.navbar-main.sticky-top {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}
.navbar-main .navbar-brand img {
  max-height: 37.5px; 
  margin-right: 15px;
  transition: max-height 0.3s ease; 
}
.navbar-main.sticky-top .navbar-brand img {
  max-height: 30px; 
}
.navbar-main .navbar-nav .nav-link {
  font-weight: 600;
  color: var(--wl-dark);
  padding: 10px 18px; 
  transition: color 0.3s;
  font-size: 1.05rem;
}
.navbar-main .navbar-nav .nav-link:hover,
.navbar-main .navbar-nav .nav-link.active {
  color: var(--wl-teal);
}
.navbar-main .navbar-nav .dropdown-menu {
  border: 1px solid var(--wl-gray);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
}
.navbar-main .navbar-nav .dropdown-item {
  font-weight: 500;
  transition: all 0.2s;
  padding: 10px 20px;
}
.navbar-main .navbar-nav .dropdown-item:hover {
  background-color: var(--wl-teal-light);
  color: var(--wl-teal-dark);
  padding-left: 25px; 
}

.navbar-right-group {
    display: flex;
    align-items: center;
    gap: 10px; 
}
.navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === MEGA MENÜ STİLLERİ KALDIRILDI === */


/* --- 6. Hero Slider (Mobil Yükseklik Düzeltildi) --- */
.hero-slider .swiper-slide {
  height: 90vh; 
  min-height: 550px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  position: relative;
  aspect-ratio: 16 / 9; /* CLS önleme için */
}
.hero-slider .swiper-slide::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(75deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.hero-slider .slide-content {
  position: relative; z-index: 2;
  color: var(--wl-white);
  max-width: 700px;
}
.hero-slider .slide-content .ust-baslik {
  font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--wl-teal);
  padding: 7px 18px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.hero-slider .slide-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-slider .slide-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: var(--wl-white); opacity: 0.6; transition: opacity 0.3s;
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover { opacity: 1; }

/* --- 7. Hizmet Kutuları (Yenilendi - Modern ve Şık Tasarım) --- */
.services-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--wl-teal-light) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(29, 185, 144, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(29, 185, 144, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hizmet-kutu {
  background: var(--wl-white);
  padding: 45px 35px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(29, 185, 144, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hizmet-kutu::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(29, 185, 144, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hizmet-kutu:hover {
  transform: translateY(-12px);
  border-color: var(--wl-teal);
  box-shadow: 0 25px 60px rgba(29, 185, 144, 0.2),
              0 0 0 1px rgba(29, 185, 144, 0.1);
  background: var(--wl-white);
}

.hizmet-kutu:hover::before {
  opacity: 1;
}

.hizmet-kutu .ikon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--wl-teal-light) 0%, rgba(29, 185, 144, 0.1) 100%);
  border-radius: 25px;
  margin: 0 auto 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(29, 185, 144, 0.15);
}

.hizmet-kutu .ikon i {
  font-size: 4rem;
  color: var(--wl-teal);
  line-height: 1;
  transition: all 0.4s ease;
}

.hizmet-kutu:hover .ikon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
  box-shadow: 0 12px 35px rgba(29, 185, 144, 0.3);
}

.hizmet-kutu:hover .ikon i {
  color: var(--wl-white);
}

.hizmet-kutu h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wl-dark);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.hizmet-kutu:hover h4 {
  color: var(--wl-teal-dark);
}

.hizmet-kutu p {
  font-size: 1.05rem;
  color: var(--wl-body-text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.hizmet-kutu:hover p {
  color: var(--wl-dark);
}

/* Mobil Responsive */
@media (max-width: 991.98px) {
  .hizmet-kutu {
    padding: 35px 25px;
  }
  
  .hizmet-kutu .ikon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .hizmet-kutu .ikon i {
    font-size: 3rem;
  }
  
  .hizmet-kutu h4 {
    font-size: 1.3rem;
  }
  
  .hizmet-kutu p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hizmet-kutu {
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .hizmet-kutu .ikon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 18px;
  }
  
  .hizmet-kutu .ikon i {
    font-size: 2.5rem;
  }
  
  .hizmet-kutu h4 {
    font-size: 1.2rem;
  }
  
  .hizmet-kutu p {
    font-size: 0.95rem;
  }
}

/* --- 8. İstatistikler (Yenilendi - Modern ve Şık Tasarım) --- */
.stats-section {
    background: linear-gradient(135deg, var(--wl-dark) 0%, #1a252f 100%) !important;
    background-color: var(--wl-dark) !important;
    position: relative;
    overflow: hidden;
}

/* Bootstrap bg-dark class'ını override et */
.stats-section.bg-dark {
    background: linear-gradient(135deg, var(--wl-dark) 0%, #1a252f 100%) !important;
    background-color: var(--wl-dark) !important;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(29, 185, 144, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(29, 185, 144, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 185, 144, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--wl-teal);
    box-shadow: 0 20px 40px rgba(29, 185, 144, 0.2),
                0 0 0 1px rgba(29, 185, 144, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(29, 185, 144, 0.3);
}

.stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(29, 185, 144, 0.4);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stats-section .counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff; /* Fallback for browsers that don't support gradient text */
    line-height: 1.2;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, var(--wl-teal-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .stats-section .counter-number {
        color: var(--wl-teal);
        background: none;
        -webkit-text-fill-color: var(--wl-teal);
    }
}

.stat-card:hover .counter-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.stat-card:hover .stat-label {
    color: rgba(255, 255, 255, 1);
}

/* Mobil Responsive */
@media (max-width: 991.98px) {
    .stat-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .stat-icon {
        font-size: 2.2rem;
    }
    
    .stats-section .counter-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        border-radius: 15px;
    }
    
    .stat-icon {
        font-size: 1.8rem;
    }
    
    .stats-section .counter-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}

/* --- 9. YENİ: PROFESYONEL YAZILIM KARTI (TÜM KARTLAR İÇİN ORTAK) --- */

/* --- Yazılımlar Bölümü (Yenilendi - Modern ve Şık Tasarım) --- */
.yazilimlar-section {
  background: linear-gradient(180deg, var(--wl-teal-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.yazilimlar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(29, 185, 144, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(29, 185, 144, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.yazilimlar-section .swiper-slide {
    height: auto; /* Kartların eşit yüksekliğe sahip olmasını sağlar */
}

.yazilim-card-pro {
    background: var(--wl-white);
    border: 1px solid rgba(29, 185, 144, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    height: 100%; 
    display: flex;
    flex-direction: column;
    position: relative;
}

.yazilim-card-pro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 185, 144, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.yazilim-card-pro:hover {
    border-color: var(--wl-teal);
    box-shadow: 0 20px 50px rgba(29, 185, 144, 0.2),
                0 0 0 1px rgba(29, 185, 144, 0.1); 
    transform: translateY(-10px); 
}

.yazilim-card-pro:hover::before {
    opacity: 1;
}
.yazilim-pro-image { 
    position: relative;
    display: block;
    aspect-ratio: 16/9; 
    overflow: hidden;
}
.yazilim-pro-image .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid var(--wl-gray);
    transition: transform 0.4s ease;
}
.yazilim-card-pro:hover .card-img-top {
    transform: scale(1.05);
}
.yazilim-pro-image .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
    color: white;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 6px 15px rgba(29, 185, 144, 0.3);
    transition: all 0.3s ease;
}

.yazilim-card-pro:hover .product-badge {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(29, 185, 144, 0.4);
}
.yazilim-card-pro .card-body {
    padding: 25px 30px 30px 30px; 
    display: flex;
    flex-direction: column; 
    flex-grow: 1;
    position: relative;
    z-index: 1;
}
.yazilim-card-pro .card-kategoriler {
    margin-bottom: 12px;
    min-height: 25px; 
}
.yazilim-card-pro .card-kategoriler .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5em 0.9em;
    background: linear-gradient(135deg, var(--wl-teal-light) 0%, rgba(29, 185, 144, 0.1) 100%) !important;
    color: var(--wl-teal-dark) !important;
    border: 1px solid rgba(29, 185, 144, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.yazilim-card-pro:hover .card-kategoriler .badge {
    background: linear-gradient(135deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%) !important;
    color: var(--wl-white) !important;
    border-color: var(--wl-teal);
}

.yazilim-card-pro .card-title {
    font-size: 1.4rem; 
    font-weight: 700;
    color: var(--wl-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}
.yazilim-card-pro .card-title a {
    color: var(--wl-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
.yazilim-card-pro .card-title a:hover {
    color: var(--wl-teal);
}
.yazilim-card-pro .card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1; 
    min-height: 40px;
    color: var(--wl-body-text);
}
.kart-footer-aksiyon {
    margin-top: auto; 
    padding-top: 18px;
    border-top: 1px solid rgba(29, 185, 144, 0.1);
    position: relative;
    z-index: 1;
}
.fiyat-eski {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6c757d;
    height: 20px; 
    margin-bottom: 2px;
}
.fiyat-eski del {
    margin-left: 5px;
}
.fiyat-eski .discount-badge { 
    background-color: #dc3545; 
    color: #fff;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.fiyat-ve-ikonlar-satiri {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    flex-wrap: wrap; 
    gap: 10px; 
}
.fiyat-icerik {
    flex-shrink: 1;
}
.fiyat-yeni {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--wl-dark);
    line-height: 1.2;
    display: flex; 
    justify-content: flex-start; 
    align-items: baseline; 
    flex-wrap: nowrap; 
}
.kdv-badge-pro { 
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--wl-body-text);
    text-transform: uppercase;
    margin-left: 5px;
    white-space: nowrap;
}
.kart-ikonlari {
    display: flex;
    align-items: center;
    flex-shrink: 0; 
}
.kart-goruntulenme {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--wl-body-text);
    margin-right: 10px;
    white-space: nowrap;
}
.kart-goruntulenme i {
    color: var(--wl-teal);
    margin-right: 5px;
    font-size: 0.9rem;
}

.btn-icon-incele { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; 
    height: 42px;
    background: linear-gradient(135deg, var(--wl-light) 0%, rgba(29, 185, 144, 0.05) 100%);
    border: 1px solid rgba(29, 185, 144, 0.2);
    color: var(--wl-teal);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    font-size: 1.4rem; 
    transform: scale(0.95); 
    opacity: 0.9; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.yazilim-card-pro:hover .btn-icon-incele {
    background: linear-gradient(135deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
    border-color: var(--wl-teal);
    color: var(--wl-white);
    transform: scale(1.15) rotate(5deg); 
    opacity: 1; 
    box-shadow: 0 8px 20px rgba(29, 185, 144, 0.3);
}

@media (max-width: 480px) {
    .fiyat-ve-ikonlar-satiri {
        justify-content: center;
    }
    .fiyat-icerik {
        width: 100%; 
        justify-content: center;
        text-align: center;
    }
    .fiyat-yeni {
        justify-content: center; 
    }
    .kart-ikonlari {
        width: 100%;
        justify-content: center; 
    }
}
/* Eski stilleri temizle */
.yazilim-card { display: none; }
.yazilim-card-kurumsal { display: none; }
.kart-aksiyon-alt { display: none; }
.fiyat-bolumu .btn-sm { display: none; }


/* --- 10. Müşteri Yorumları (Aynı) --- */
.yorum-slider .swiper-slide { padding: 10px; }
.yorum-card {
  background: var(--wl-white); border: 1px solid var(--wl-gray);
  border-radius: 10px; padding: 40px 35px 35px 35px; 
  text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
  position: relative; transition: all 0.3s ease; height: 100%;
}
.yorum-card:hover { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); }
.yorum-card::before {
    content: "\f10d"; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: -15px; left: 50%;
    transform: translateX(-50%); font-size: 3rem;
    color: var(--wl-teal); opacity: 0.1; line-height: 1;
}
.yorum-card .yorum-puan { margin-bottom: 10px; }
.yorum-card .yorum-puan .fa-star { color: #ffc107; font-size: 1.1rem; }
.yorum-card .yorum-metni {
  font-style: normal; font-size: 1.05rem; font-weight: 500;
  margin: 20px 0; color: var(--wl-dark); min-height: 100px; 
}
.yorum-card .yorum-yapan img {
  width: 70px; height: 70px; border-radius: 50%;
  object-fit: cover; margin-bottom: 10px;
  border: 3px solid var(--wl-teal-dark); 
}
.yorum-card .yorum-yapan h5 { font-weight: 700; color: var(--wl-dark); margin-bottom: 2px; }
.yorum-card .yorum-yapan span { font-size: 0.9rem; color: var(--wl-body-text); }

/* --- 11. Referans Logoları (Aynı) --- */
/* --- Referanslar Bölümü (Yenilendi - Modern ve Şık Tasarım) --- */
.referans-section {
  background: linear-gradient(180deg, var(--wl-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.referans-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(29, 185, 144, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.referans-slider .swiper-slide { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  height: 120px;
  padding: 10px;
  transition: all 0.3s ease;
}

.referans-slider .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 15px;
  background: var(--wl-white);
  border-radius: 15px;
  border: 1px solid rgba(29, 185, 144, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  box-sizing: border-box;
}

.referans-slider .swiper-slide:hover a {
  transform: translateY(-5px);
  border-color: var(--wl-teal);
  box-shadow: 0 10px 30px rgba(29, 185, 144, 0.15);
  background: var(--wl-white);
}

.referans-slider img { 
  max-width: 100%;
  max-height: 70px;
  width: auto; 
  height: auto;
  opacity: 0.5; 
  filter: grayscale(100%); 
  transition: all 0.4s ease;
  object-fit: contain;
  display: block;
}

.referans-slider .swiper-slide:hover img { 
  opacity: 1; 
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* --- 12. Footer (Aynı) --- */
.site-footer {
  background-color: var(--wl-dark); color: #adb5bd;
  padding-top: 5rem; padding-bottom: 2rem;
}
.site-footer .footer-logo { max-width: 100px; margin-bottom: 1.5rem; }
.site-footer h5 { color: var(--wl-white); font-weight: 600; margin-bottom: 1.5rem; }
.site-footer ul { padding-left: 0; list-style: none; }
.site-footer ul li { margin-bottom: 0.75rem; }
.site-footer ul li a { color: #adb5bd; text-decoration: none; transition: all 0.3s ease; }
.site-footer ul li a:hover { color: var(--wl-white); padding-left: 5px; }
.site-footer .sosyal-medya a {
  display: inline-flex; justify-content: center; align-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1); color: var(--wl-white);
  text-decoration: none; margin-right: 10px; transition: all 0.3s ease;
}
.site-footer .sosyal-medya a:hover { background-color: var(--wl-teal); color: var(--wl-white); }
.site-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem; margin-top: 2rem;   
  text-align: center; font-size: 0.9rem;
}

/* --- YENİ: Footer E-Bülten (KURUMSAL KOYU TEMA) --- */
.footer-ebulten-box {
    background-color: rgba(255, 255, 255, 0.05); /* Koyu zemin üzerinde hafif vurgu */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none; /* Gölge kaldırıldı */
}
/* h5 ve p renkleri artık footer.php'deki text-white sınıflarından geliyor */
.footer-ebulten-box .form-control {
    background-color: rgba(255, 255, 255, 0.1); /* Koyu input */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff; /* Beyaz yazı */
    border-radius: 8px 0 0 8px !important;
}
.footer-ebulten-box .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: var(--wl-teal);
    box-shadow: none;
}
.footer-ebulten-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.footer-ebulten-box .btn-primary {
    border-radius: 0 8px 8px 0 !important;
    margin-left: -1px;
    background-color: var(--wl-teal); /* Ana Vurgu Rengi */
    border-color: var(--wl-teal);
    box-shadow: none; 
}
.footer-ebulten-box .btn-primary:hover {
    background-color: var(--wl-teal-dark); /* Koyu Vurgu Rengi */
    border-color: var(--wl-teal-dark);
}
/* Hata/Başarı mesajları (text-white div'i içinde) */
#ebultenMesajAlani .text-success {
    color: var(--wl-teal) !important;
}
#ebultenMesajAlani .text-danger {
    color: #ff8a8a !important; /* Koyu zeminde okunaklı kırmızı */
}
/* --- Bitiş: Footer E-Bülten --- */


/* --- 13. WhatsApp Float Buton (Aynı) --- */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px;
  width: 60px; height: 60px; background-color: #25D366; 
  color: #FFF; border-radius: 50%; text-align: center;
  font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100; display: flex; justify-content: center; align-items: center;
  text-decoration: none; transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #FFF; }


/* --- 14. Alt Sayfa Stilleri (Sticky Fiyat Kutusu ve Teknik Bilgi) --- */
.page-header-mini {
  background-color: var(--wl-dark); color: white;
  padding: 4rem 0; text-align: center;
}
.page-header-mini h1 { font-weight: 700; }
.page-header-mini .breadcrumb {
  background: none; padding: 0; margin: 0;
  justify-content: center;
}
.page-header-mini .breadcrumb-item a { color: var(--wl-teal); text-decoration: none; }
.page-header-mini .breadcrumb-item.active { color: var(--wl-gray); }

/* YENİ STİL: Fiyat ve Teknik Bilgiyi saran sticky sarmalayıcı */
.sticky-sidebar-wrapper {
    position: sticky; 
    top: 80px; /* Header'ın hemen altında başlasın */
}

.yazilim-fiyat-box {
  background: var(--wl-white); border: 1px solid var(--wl-gray);
  border-radius: 10px; padding: 30px;
  /* position: sticky: KALDIRILDI */
  margin-bottom: 20px; 
}
.teknik-bilgi-box {
  background: var(--wl-white); border: 1px solid var(--wl-gray);
  border-radius: 10px; padding: 20px 30px; margin-bottom: 20px;
}
.teknik-bilgi-box h5 {
    font-weight: 600; color: var(--wl-dark);
    border-bottom: 1px solid var(--wl-gray);
    padding-bottom: 10px; margin-bottom: 15px;
}
.teknik-bilgi-box ul { list-style: none; padding-left: 0; }
.teknik-bilgi-box ul li {
    padding: 5px 0; border-bottom: 1px dashed var(--wl-gray);
    font-size: 0.95rem;
}
.yazilim-fiyat-box .fiyat { font-size: 2.2rem; font-weight: 700; color: var(--wl-teal); }
.yazilim-fiyat-box .fiyat-container {
    display: flex; flex-direction: column;
    align-items: center; margin-bottom: 15px;
}
.yazilim-fiyat-box .fiyat-main-line {
    font-size: 3rem; /* Daha büyük ve virgülsüz görünüme uygun */
    font-weight: 800;
    color: var(--wl-dark); line-height: 1.1; margin-bottom: 5px;
}
.yazilim-fiyat-box .fiyat-eski-line {
    display: flex; align-items: center;
    font-size: 1rem; color: #999;
}
.yazilim-fiyat-box .fiyat-eski-line .eski-fiyat {
    text-decoration: line-through; margin-right: 10px; font-weight: 500;
}
.yazilim-fiyat-box .fiyat-eski-line .discount-percentage {
    background-color: #dc3545; color: #fff;
    padding: 2px 8px; border-radius: 4px;
    font-weight: 700; font-size: 0.8rem; margin-left: 5px; 
}
.yazilim-fiyat-box .kdv-badge {
    background-color: var(--wl-teal) !important; color: var(--wl-white) !important;
    font-weight: 700; font-size: 0.7rem;
    padding: 3px 6px; border-radius: 4px; margin-left: 5px;
}
.yazilim-fiyat-box .btn { border-radius: 10px; font-weight: 600; padding: 14px 30px; }
.yazilim-kategoriler .badge {
  font-size: 0.9rem; font-weight: 500; padding: 0.5em 1em;
  background-color: var(--wl-teal-light) !important;
  color: var(--wl-teal-dark) !important;
  border: 1px solid var(--wl-teal);
}
.yazilim-tabs .nav-link { font-size: 1.1rem; font-weight: 600; color: var(--wl-body-text); }
.yazilim-tabs .nav-link.active { color: var(--wl-teal); border-color: var(--wl-teal) var(--wl-teal) #fff; }
.sss-accordion .accordion-item { border-color: var(--wl-gray); }
.sss-accordion .accordion-button { font-weight: 600; font-size: 1.1rem; color: var(--wl-dark); }
.sss-accordion .accordion-button:not(.collapsed) {
  background-color: var(--wl-teal-light); color: var(--wl-dark); box-shadow: none;
}
.sss-accordion .accordion-button:focus { box-shadow: 0 0 0 0.25rem rgba(29, 185, 144, 0.25); }
.galeri-slider { border: 1px solid var(--wl-gray); border-radius: 10px; overflow: hidden; }
.galeri-slider .swiper-slide { aspect-ratio: 16 / 9; }
.galeri-slider .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.galeri-slider .swiper-pagination-bullet-active { background-color: var(--wl-teal); }

/* --- 15. Blog Sayfaları (Aynı) --- */
/* --- Blog Bölümü (Yenilendi - Modern ve Şık Tasarım) --- */
.blog-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--wl-light) 100%);
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(29, 185, 144, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.blog-card {
  border: none; 
  border-radius: 20px; 
  overflow: hidden;
  background: var(--wl-white); 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%; 
  display: flex; 
  flex-direction: column;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(29, 185, 144, 0.08);
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(29, 185, 144, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.blog-card:hover { 
  box-shadow: 0 20px 50px rgba(29, 185, 144, 0.15),
              0 0 0 1px rgba(29, 185, 144, 0.1); 
  transform: translateY(-10px); 
  border-color: var(--wl-teal);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card .card-img-container { 
  aspect-ratio: 16 / 9; 
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.blog-card .card-img-top {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .card-img-top { 
  transform: scale(1.08); 
}

.blog-card .card-body { 
  padding: 30px; 
  display: flex; 
  flex-direction: column; 
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.blog-card .card-meta { 
  font-size: 0.85rem; 
  color: #6c757d; 
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-card .card-meta span { 
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--wl-teal-light);
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-card:hover .card-meta span {
  background: rgba(29, 185, 144, 0.1);
  color: var(--wl-teal-dark);
}

.blog-card .card-meta i { 
  color: var(--wl-teal); 
  margin-right: 5px; 
  font-size: 0.9rem;
}

.blog-card .card-title { 
  font-size: 1.4rem; 
  font-weight: 700; 
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card .card-title a { 
  color: var(--wl-dark); 
  text-decoration: none; 
  transition: color 0.3s ease; 
}

.blog-card .card-title a:hover { 
  color: var(--wl-teal); 
}

.blog-card .card-text { 
  flex-grow: 1; 
  color: var(--wl-body-text);
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-card .btn-outline-primary {
  padding: 10px 24px; 
  font-size: 0.95rem;
  font-weight: 600;
  align-self: flex-start; 
  border-radius: 25px;
  border-width: 2px;
  transition: all 0.3s ease;
}

.blog-card .btn-outline-primary:hover { 
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(29, 185, 144, 0.2);
}

/* Blog/Yazılım Sidebar Filtreleri */
.sidebar-widget {
  background: var(--wl-white); border: 1px solid var(--wl-gray);
  border-radius: 10px; padding: 25px; margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}
.sidebar-widget.arama-widget {
    background-color: var(--wl-light); border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.sidebar-widget .sidebar-counts { font-size: 0.95rem; color: var(--wl-body-text); }
.sidebar-widget .sidebar-counts p { line-height: 1.4; }
.sidebar-widget h4 {
  font-size: 1.4rem; font-weight: 700; color: var(--wl-dark);
  margin-bottom: 1.5rem; border-bottom: 3px solid var(--wl-teal);
  padding-bottom: 10px; display: inline-block;
}
.sidebar-widget ul { list-style: none; padding-left: 0; }
.sidebar-widget ul li a {
  color: var(--wl-body-text); text-decoration: none;
  transition: all 0.3s; display: flex; justify-content: space-between; align-items: center; 
  padding: 10px 5px; border-bottom: 1px dashed var(--wl-gray);
  font-weight: 500; border-radius: 5px; 
}
.sidebar-widget ul li a:hover {
  color: var(--wl-teal); background-color: var(--wl-teal-light);
  border-color: transparent; transform: translateX(0);
}
.sidebar-widget ul li a .badge {
  background-color: var(--wl-gray); color: var(--wl-dark);
  border-radius: 5px;
}
.sidebar-widget ul li a:hover .badge { background-color: var(--wl-teal); color: var(--wl-white); }
.sidebar-widget.kategori-widget ul li.active-filter a {
    color: var(--wl-white) !important; background-color: var(--wl-teal) !important;
    border-color: var(--wl-teal) !important; border-radius: 5px; 
    font-weight: 600 !important;
}
.sidebar-widget.kategori-widget ul li.active-filter a .badge {
    background-color: var(--wl-teal-dark) !important; color: var(--wl-white) !important;
}

.sidebar-widget .tag-cloud a {
  display: inline-block; background-color: var(--wl-light);
  border: 1px solid var(--wl-gray); color: var(--wl-body-text);
  padding: 6px 14px; border-radius: 20px;
  margin: 5px; text-decoration: none;
  transition: all 0.3s; font-size: 0.9rem;
}
.sidebar-widget .tag-cloud a:hover {
  background-color: var(--wl-teal); color: var(--wl-white);
  border-color: var(--wl-teal);
}

/* Yazılım Detay Sayfası Etiket Bulutu */
.tag-cloud-detay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.tag-cloud-detay a {
  display: inline-block;
  background-color: var(--wl-teal-light);
  border: 1px solid var(--wl-teal);
  color: var(--wl-teal-dark);
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.tag-cloud-detay a:hover {
  background-color: var(--wl-teal);
  color: var(--wl-white);
  border-color: var(--wl-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 185, 144, 0.25);
}

.blog-detail-content img {
  max-width: 100%; height: auto; border-radius: 10px;
  margin: 1rem 0; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Blog Detay Meta Bilgileri */
.blog-detail-content .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
  padding: 20px;
  background: linear-gradient(135deg, rgba(29, 185, 144, 0.05) 0%, rgba(29, 185, 144, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(29, 185, 144, 0.1);
  position: relative;
  overflow: hidden;
}

.blog-detail-content .card-meta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
  border-radius: 0 4px 4px 0;
}

.blog-detail-content .card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--wl-white);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wl-dark);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(29, 185, 144, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.blog-detail-content .card-meta span:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(29, 185, 144, 0.2);
  border-color: var(--wl-teal);
  background: linear-gradient(135deg, rgba(29, 185, 144, 0.05) 0%, rgba(29, 185, 144, 0.02) 100%);
}

.blog-detail-content .card-meta span i {
  color: var(--wl-teal);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-detail-content .card-meta span:hover i {
  transform: scale(1.15);
  color: var(--wl-teal-dark);
}

@media (max-width: 576px) {
  .blog-detail-content .card-meta {
    padding: 15px;
    gap: 8px;
  }
  
  .blog-detail-content .card-meta span {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* --- İLETİŞİM SAYFASI STİLLERİ --- */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(29, 185, 144, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(29, 185, 144, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wl-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.contact-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
  border-radius: 2px;
}

.contact-section .lead {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* İletişim Formu */
.contact-section form {
  background: var(--wl-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
              0 0 0 1px rgba(29, 185, 144, 0.05);
  border: 1px solid rgba(29, 185, 144, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-section form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-section form:hover::before {
  opacity: 1;
}

.contact-section form:hover {
  box-shadow: 0 15px 50px rgba(29, 185, 144, 0.15),
              0 0 0 1px rgba(29, 185, 144, 0.15);
  transform: translateY(-5px);
}

.contact-section .form-label {
  font-weight: 600;
  color: var(--wl-dark);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.contact-section .form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.contact-section .form-control:focus {
  border-color: var(--wl-teal);
  background: var(--wl-white);
  box-shadow: 0 0 0 4px rgba(29, 185, 144, 0.1),
              0 5px 15px rgba(29, 185, 144, 0.1);
  transform: translateY(-2px);
}

.contact-section textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-section .btn-primary {
  background: linear-gradient(135deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 35px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(29, 185, 144, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-section .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.contact-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(29, 185, 144, 0.4);
}

.contact-section .btn-primary:active {
  transform: translateY(-1px);
}

/* İletişim Bilgileri Kartları */
.contact-info-card {
  background: var(--wl-white);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06),
              0 0 0 1px rgba(29, 185, 144, 0.05);
  border: 1px solid rgba(29, 185, 144, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--wl-teal) 0%, var(--wl-teal-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 35px rgba(29, 185, 144, 0.15),
              0 0 0 1px rgba(29, 185, 144, 0.2);
  border-color: rgba(29, 185, 144, 0.3);
}

.contact-info-card i {
  color: var(--wl-teal);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-info-card:hover i {
  transform: scale(1.15) rotate(5deg);
  color: var(--wl-teal-dark);
}

.contact-info-card h5 {
  font-weight: 700;
  color: var(--wl-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-info-card p {
  color: #6c757d;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--wl-dark);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--wl-teal);
  text-decoration: underline;
}

/* Harita Bölümü */
.contact-section .ratio {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(29, 185, 144, 0.1);
  transition: all 0.3s ease;
}

.contact-section .ratio:hover {
  box-shadow: 0 15px 40px rgba(29, 185, 144, 0.15);
  transform: translateY(-5px);
}

.contact-section .ratio iframe {
  border-radius: 16px;
}

/* Alert Mesajları */
.contact-section .alert {
  border-radius: 12px;
  border: none;
  padding: 15px 20px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section .alert-success {
  background: linear-gradient(135deg, rgba(29, 185, 144, 0.1) 0%, rgba(29, 185, 144, 0.05) 100%);
  color: #155724;
  border-left: 4px solid var(--wl-teal);
}

.contact-section .alert-danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
  color: #721c24;
  border-left: 4px solid #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section form {
    padding: 30px 20px;
  }
  
  .contact-section h3 {
    font-size: 1.75rem;
  }
  
  .contact-info-card {
    padding: 20px;
  }
}
.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
  font-weight: 700; color: var(--wl-dark);
  margin-top: 2rem; margin-bottom: 1rem;
}
.blog-detail-content blockquote {
  border-left: 4px solid var(--wl-teal); padding: 1rem 1.5rem;
  background-color: var(--wl-light); font-style: italic;
  font-size: 1.1rem; margin: 1.5rem 0;
}
.pagination {
  --bs-pagination-color: var(--wl-teal);
  --bs-pagination-hover-color: var(--wl-teal-dark);
  --bs-pagination-focus-color: var(--wl-teal);
  --bs-pagination-active-bg: var(--wl-teal);
  --bs-pagination-active-border-color: var(--wl-teal);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(29, 185, 144, 0.25);
}

/* --- 16. Müşteri Portalı (Aynı) --- */
.list-group-item-action {
    color: var(--wl-body-text); padding: 1rem 1rem;
    transition: all 0.2s; border-left: 5px solid transparent;
}
.list-group-item-action:hover {
    background-color: var(--wl-light) !important; color: var(--wl-dark) !important;
    border-left: 5px solid var(--wl-gray) !important;
}
.list-group-item-action.active,
.list-group-item-action.active:hover {
    background-color: var(--wl-teal-light) !important; color: var(--wl-dark) !important;
    border-left: 5px solid var(--wl-teal) !important; font-weight: 600;
}
.list-group-item-action i { color: var(--wl-teal); width: 20px; }

/* --- 17. YENİ PROFESYONEL GİRİŞ/KAYIT SAYFALARI --- */
body.auth-page-kurumsal {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 2rem;
  background-size: cover; background-position: center;
  background-repeat: no-repeat; position: relative;
}
body.auth-page-kurumsal::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(44, 62, 80, 0.7); /* --wl-dark %70 opacity */
  z-index: 0;
}
.auth-wrapper-kurumsal {
  position: relative; z-index: 1;
  width: 100%; max-width: 450px;
  display: flex; flex-direction: column;
  align-items: center;
}
.auth-logo-kurumsal { display: block; margin-bottom: 1.5rem; }
/* DÜZELTME: Logo filtresi (beyaz yapma) kaldırıldı. */
.auth-logo-kurumsal img { 
    max-height: 50px; 
    /* filter: brightness(0) invert(1); opacity: 0.9; <- BU SATIR SİLİNDİ */
}
.auth-box-kurumsal {
  width: 100%; background: var(--wl-white);
  border: 1px solid var(--wl-gray); border-radius: 0.75rem; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 2.5rem;
}
.auth-box-kurumsal .auth-title {
  font-size: 1.8rem; font-weight: 700; color: var(--wl-dark);
  text-align: center; margin-bottom: 0.5rem;
}
.auth-box-kurumsal .auth-subtitle {
  text-align: center; color: var(--wl-body-text);
  margin-bottom: 2rem;
}
.auth-box-kurumsal .form-control { border-radius: 0.5rem; }
.auth-box-kurumsal .form-floating > .form-control:focus ~ label { color: var(--wl-teal); }
.auth-box-kurumsal .form-control:focus {
  border-color: var(--wl-teal);
  box-shadow: 0 0 0 0.25rem rgba(29, 185, 144, 0.25);
}
.auth-box-kurumsal .btn-primary {
  padding: 0.75rem; font-size: 1rem; font-weight: 600;
  border-radius: 0.5rem; 
}
.auth-box-kurumsal .btn-primary:hover {
  background-color: var(--wl-teal-dark);
  border-color: var(--wl-teal-dark);
}
.auth-box-kurumsal .btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 185, 144, 0.5);
}
.auth-footer-links {
  text-align: center; margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.auth-footer-links a { color: var(--wl-white); text-decoration: none; }
.auth-footer-links a:hover { text-decoration: underline; }

/* --- 18. Sepet Sayfası Stilleri (Aynı) --- */
.sepet-gorsel {
    width: 80px; height: 60px; object-fit: cover;
    border-radius: 5px; border: 1px solid var(--wl-gray);
}
.sepet-adet-input { max-width: 70px; text-align: center; }
.sepet-adet-input[type='number'] { -moz-appearance: textfield; }
.sepet-adet-input::-webkit-outer-spin-button,
.sepet-adet-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

/* --- 19. Responsive Ayarlar (Mobil Butonlar Güncellendi) --- */
@media (max-width: 991.98px) {
  .navbar-main .navbar-collapse {
    background-color: var(--wl-white); padding: 15px; border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); margin-top: 10px;
  }
  .navbar-main .collapse .d-flex {
    flex-direction: column; align-items: stretch !important; 
    padding-top: 10px; border-top: 1px solid var(--wl-gray); 
    margin-top: 10px;
  }
  .navbar-main .collapse .d-flex a.btn {
    width: 100%; text-align: center; 
    padding: 10px 15px; font-size: 1rem; 
    margin-right: 0 !important; margin-bottom: 10px; 
    border-radius: 8px !important; 
  }
  .navbar-main .collapse .d-flex a.btn:last-child { margin-bottom: 0; }
  
  /* Mobil/Tablet görünümünde sticky özelliği kaldırılır */
  .sticky-sidebar-wrapper {
      position: static !important; 
      top: auto;
  }
}

@media (max-width: 767.98px) {
  .section-title h2 { font-size: 2.2rem; }
  .section-title p { font-size: 1.05rem; }
  .hero-slider .slide-content h1 { font-size: 2.5rem; }
  .hero-slider .slide-content p { font-size: 1.1rem; }
}
/* Kutu içi mobil responsive ayarı */
@media (max-width: 480px) {
    .fiyat-ve-ikonlar-satiri {
        /* Fiyat ve ikonlar mobilde sığmazsa, fiyatı üste al, ikonları alta ortala */
        justify-content: center;
    }
    .fiyat-icerik {
        width: 100%; /* Fiyat tam genişlik kaplasın */
        justify-content: center;
        text-align: center;
    }
    .fiyat-yeni {
        justify-content: center; /* Fiyatı ortala */
    }
    .kart-ikonlari {
        width: 100%;
        justify-content: center; /* İkonları ortala */
    }
	
	
}
/* --- GÜNCELLEME: Topbar Sağ Taraf İçerik Stilleri --- */
.topbar-right-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px; /* Öğeler arası boşluk */
}

.topbar-link {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem; /* Topbar font boyutuyla aynı */
  font-weight: 500;
}
.topbar-link:hover {
  color: var(--wl-white) !important;
}
.topbar-link i {
  color: var(--wl-teal);
  font-size: 0.8rem;
}

.topbar-divider {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 5px;
}

/* --- GÜNCELLEME: Mobil Menüdeki Giriş Butonları --- */
/* Topbar mobilde gizli olduğu için, giriş butonlarını mobil menüye (hamburger) ekliyoruz */
@media (max-width: 991.98px) {
  .navbar-main .collapse .d-flex {
    /* Giriş/Kayıt/Hesabım butonlarını sepet ikonundan ÖNCE göster */
    flex-direction: column-reverse; 
  }
  
  /* Mobildeki sepet ikonuna üst boşluk ver */
  .navbar-main .collapse .btn-cart-icon {
     margin-top: 10px;
     align-self: center;
  }
}
/* --- GÜNCELLEME: Navbar Sıkışma Sorunu Çözümü (Daha Az Padding) --- */

/* 1. Ana Menü Linklerini Hafifçe Küçült ve Sıkıştır */
.navbar-main .navbar-nav .nav-link {
    font-size: 1rem; /* 1.05rem'den küçültüldü */
    padding: 10px 14px; /* Yatayda 18px'den 14px'e düşürüldü */
}

/* 2. Sağ Taraftaki Buton Grubu (Giriş/Üye Ol) */
.navbar-main .d-flex .btn {
    padding: 10px 20px; /* 12px 30px'dan küçültüldü */
    font-size: 0.9rem; /* Font küçültüldü */
    font-weight: 600;
}

/* 3. Sepet İkonunu Butonlara Biraz Daha Yaklaştır */
@media (min-width: 992px) {
    .btn-cart-icon {
        margin-left: 5px; /* 10px'den düşürüldü */
    }
}

/* 4. Mobil menüdeki butonları da küçültelim */
.navbar-main .collapse .d-flex a.btn {
    padding: 10px 15px; /* Orijinalden küçültüldü */
    font-size: 0.95rem; /* Font küçültüldü */
}

/* 5. GEREKLİ: Topbar stillerini (varsa) temizle */
/* Bir önceki denemeden kalan .topbar-link stilleri varsa temizler */
.topbar-right-content { display: none; }


/* --- YENİ EKLENDİ (Kullanıcı Talebi): Statik Sayfa Ana Görsel Stili --- */
.sayfa-ana-gorsel-container {
    max-height: 450px; /* Görselin maksimum yüksekliğini sınırlar (Bu, %50 küçültme talebini karşılar) */
    overflow: hidden;
    border-radius: 0.75rem; /* Resme oval kenarlar verir */
    margin-bottom: 2.5rem; /* Görsel ile içerik arasına boşluk verir */
    background-color: var(--wl-light); /* Resim yüklenmezse arka plan */
}

.sayfa-ana-gorsel-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmin dikdörtgen alana sığmasını sağlar (bozulmayı engeller) */
    aspect-ratio: 16 / 9; /* Kullanıcının 'dikdörtgen' talebi için (16:9 oranı) */
}
/* --- YENİ EKLEME SONU --- */

/* --- YENİ EKLENDİ (Kullanıcı Talebi): Profesyonel Müşteri Portalı Stilleri --- */

/* Kartın kenarlığını ve gölgesini portal geneline yay */
.portal-container {
    border: 1px solid var(--wl-gray) !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07) !important;
}

/* Sidebar (Sol Menü) için sabit yükseklik ve hizalama */
.portal-sidebar .list-group-flush {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* İçerik (Sağ Taraf) için minimum yükseklik */
.portal-content {
    min-height: 70vh; /* İçerik az olsa bile panelin düzgün görünmesini sağlar */
}

/* Dashboard İstatistik Kartları (index.php) */
.card-stats {
    border: 1px solid var(--admin-border);
    transition: all 0.2s ease;
}
.card-stats:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}
.card-stats .card-title {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}
.card-stats .h2 {
    font-size: 1.75rem;
    line-height: 1.1;
    font-weight: 700;
}
.card-stats .icon-shape {
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
}
.card-stats .icon-shape.bg-soft-primary { background-color: var(--wl-teal); }
.card-stats .icon-shape.bg-soft-info { background-color: #0dcaf0; }
.card-stats .icon-shape.bg-soft-warning { background-color: #ffc107; }
.card-stats .icon-shape.bg-soft-danger { background-color: #dc3545; }


/* Mobil cihazlar için portal görünümü */
@media (max-width: 767.98px) {
    
    /* === SORUNU ÇÖZEN DÜZELTME === */
    /* Menüyü yatay yapan (flex-direction: row) ve 
       açılır menü (collapse) ile çakışan eski kodlar SİLİNDİ. */
    /* Artık burası boş, böylece portal-sidebar collapse olduğunda dikey açılacak. */

}
/* --- Portal Stilleri Sonu --- */