/* =================================================================== */
/* === YENİ ÜRÜN LİSTE GÖRÜNÜMÜ STİLLERİ (SUNUCU VB.) === */
/* =================================================================== */

.product-list-item {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background-color: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    transition: all 0.3s ease;
    flex-wrap: wrap; /* Mobil için */
}

.product-list-item:hover {
    border-color: var(--datakale-orange, #f39200);
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

/* Ürün İkonu */
.product-list-item .product-icon {
    font-size: 2rem;
    color: var(--bs-secondary);
    margin-right: 20px;
    flex-shrink: 0;
}

/* Her bir özellik bloğu */
.product-list-item .product-spec {
    flex: 1; /* Eşit alan kapla */
    min-width: 150px; /* Sıkışmayı önle */
    padding: 0 15px;
}

.product-list-item .product-spec small {
    display: block;
    font-size: 0.8rem;
    color: var(--bs-secondary);
    margin-bottom: 2px;
    text-transform: uppercase;
}

.product-list-item .product-spec h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--bs-body-color);
}

/* Fiyat ve Buton Alanı */
.product-list-item .product-price-action {
    flex-shrink: 0;
    padding-left: 20px;
    margin-left: auto; /* Sağa yaslamak için */
    display: flex;
    align-items: center;
    gap: 25px;
}

.product-list-item .product-price-action .price-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-body-color);
}

.product-list-item .product-price-action .price-info .price-term {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    margin-left: 5px;
}
.product-list-item .product-price-action .price-info small {
    font-size: 0.8rem;
    color: #aab2bd;
    display: block;
    margin-top: -2px;
}

.product-list-item .product-price-action .btn-buy {
    background-color: var(--datakale-orange, #f39200);
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: var(--bs-border-radius);
}
.product-list-item .product-price-action .btn-buy:hover {
    background-color: #d17d00;
    color: #fff;
}


/* =================================================================== */
/* === MOBİL UYUMLULUK (RESPONSIVE) === */
/* =================================================================== */
@media (max-width: 991.98px) {
    .product-list-item {
        flex-direction: column;
        align-items: flex-start; /* Sola hizala */
        padding: 25px;
    }

    .product-list-item .product-spec {
        min-width: 100%;
        padding: 0;
        margin-bottom: 20px;
        border-bottom: 1px dashed var(--bs-border-color);
        padding-bottom: 20px;
    }
    
    .product-list-item .product-icon {
        display: none; /* Mobilde ikonu gizle, yer kazanalım */
    }

    .product-list-item .product-price-action {
        width: 100%;
        padding: 0;
        margin-top: 10px;
        justify-content: space-between; /* Fiyat ve butonu iki uca ayır */
    }
}


/* =================================================================== */
/* === LİSTE GÖRÜNÜMÜ - ÜRÜN GÖRSELİ İÇİN EK STİLLER === */
/* =================================================================== */

.product-list-item .product-list-image {
    width: 80px;  /* Görsel alanının genişliği */
    height: 80px; /* Görsel alanının yüksekliği */
    margin-right: 20px;
    flex-shrink: 0;
    background-color: #f8f9fa; /* Şeffaf görseller için hafif arka plan */
    border-radius: var(--bs-border-radius);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-item .product-list-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Resmin bozulmadan sığmasını sağlar */
}

/* Mobilde ürün açıklamasını gizleyerek daha temiz bir görünüm sağlayalım */
@media (max-width: 991.98px) {
    .product-list-item .product-spec p {
        display: none;
    }
    .product-list-item .product-list-image {
        display: none; /* Mobilde resmi de gizleyebiliriz */
    }
}


/* =================================================================== */
/* === LİSTE GÖRÜNÜMÜ - ÖZELLİK BÖLÜMÜ İÇİN EK STİLLER === */
/* =================================================================== */

.product-list-item .product-features {
    flex-shrink: 0; /* Sıkışmasını engeller */
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Özellikleri dikey (alt alta) sıralar */
    gap: 8px; /* Özellikler arası boşluk */
    justify-content: center; /* Dikeyde ortalamak için */
    border-left: 1px solid var(--bs-border-color); /* Soluna ayırıcı çizgi ekler */
    margin-left: 15px;
    padding-left: 25px;
}

.product-list-item .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--bs-secondary);
    font-weight: 500;
}

.product-list-item .feature-item i {
    color: var(--bs-success); /* Onay ikonu için yeşil renk */
    font-size: 1.1rem;
}


/* =================================================================== */
/* === MOBİL UYUMLULUK GÜNCELLEMESİ === */
/* =================================================================== */
@media (max-width: 991.98px) {
    .product-list-item .product-features {
        width: 100%;
        flex-direction: column; /* Mobilde de alt alta kalsın */
        align-items: flex-start;
        border-left: none; /* Dikey çizgiyi mobilde kaldır */
        border-top: 1px dashed var(--bs-border-color); /* Üstüne ayırıcı çizgi ekle */
        margin-left: 0;
        padding-left: 0;
        padding-top: 20px;
        margin-top: -10px; /* Açıklama ile arasındaki boşluğu ayarlar */
    }
}




/* =================================================================== */
/* === ÖZEL YAZILIM PAKET GÖRÜNÜMÜ STİLLERİ === */
/* =================================================================== */

.package-card {
    background-color: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-xl);
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--datakale-orange, #f39200);
}

.package-card .package-header h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-card .package-header p {
    color: var(--bs-secondary);
    min-height: 70px; /* Açıklamaların aynı hizada kalması için */
}

.package-card .package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    flex-grow: 1; /* Özellikler listesini esneterek footer'ı aşağı iter */
}

.package-card .package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bs-border-color-translucent);
    font-size: 0.95rem;
}

.package-card .package-features li:last-child {
    border-bottom: none;
}

.package-card .package-features li i {
    font-size: 1.2rem;
    color: var(--bs-success);
}

.package-card .package-footer {
    margin-top: auto; /* Footer'ı her zaman en alta yapıştırır */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-card .package-footer .price-info .price {
    font-size: 2rem;
    font-weight: 700;
}

.package-card .package-footer .price-info small {
    display: block;
    color: var(--bs-secondary);
    margin-top: -5px;
}

.package-card .package-footer .btn-quote {
    background-color: var(--datakale-orange, #f39200);
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
}

.package-card .package-footer .btn-quote:hover {
    background-color: #d17d00;
    color: #fff;
}




/* =================================================================== */
/* === VDS/VPS KATEGORİ SAYFASI ÖZEL STİLLERİ === */
/* =================================================================== */

/* 1. HERO BÖLÜMÜ */
.hero-vps-vds {
    padding: 100px 0 180px 0; /* Alttaki boşluğu artırarak ürün listesinin üstüne binmesi için alan açıyoruz */
    background-color: #d94350; /* Ekran görüntüsündeki kırmızı ton */
    background-image: url('/docs/img/vds-back1.png'); /* Lütfen bu isimde bir arkaplan deseni yükleyin */
    background-size: cover;
    background-position: center center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-vps-vds h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-vps-vds .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 90%;
}

.hero-vps-vds .hero-features-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-vps-vds .feature-box-vps {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: var(--bs-border-radius);
    transition: all 0.3s ease;
}

.hero-vps-vds .feature-box-vps:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.hero-vps-vds .feature-box-vps .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-vps-vds .feature-box-vps h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.hero-vps-vds .feature-box-vps p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.hero-vps-vds .hero-image-wrapper img {
    max-width: 100%;
}

/* 2. ÜRÜN LİSTESİ (HERO ÜSTÜNE BİNME EFEKTİ) */
.vps-list-section {
    margin-top: -120px; /* Bu negatif margin, bölümü yukarı çeker */
    position: relative;
    z-index: 10;
}


/* 3. EKSTRA BİLGİ VE AVANTAJ BÖLÜMLERİ */
.extra-info-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Hafif gri arkaplan */
}

.extra-info-section h2 {
    font-size: 2rem;
    font-weight: 600;
}

.extra-info-section .advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.advantage-item .icon {
    font-size: 3rem;
    color: var(--datakale-orange, #f39200);
}

.advantage-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.advantage-item p {
    color: var(--bs-secondary);
}


/* Mobil uyumluluk */
@media (max-width: 991.98px) {
    .hero-vps-vds {
        padding: 60px 0 100px 0;
        text-align: center;
    }
    .hero-vps-vds .lead {
        max-width: 100%;
    }
    .hero-vps-vds .hero-image-wrapper {
        display: none; /* Mobilde sunucu resmini gizleyelim, yer kazanalım */
    }
    .vps-list-section {
        margin-top: -60px; /* Mobilde üst üste binme mesafesini azaltalım */
    }
}


/* =================================================================== */
/* === HOSTİNG KATEGORİ SAYFASI ÖZEL STİLLERİ === */
/* =================================================================== */

/* 1. HERO BÖLÜMÜ */
.hero-hosting {
    padding: 100px 0 180px 0; /* Alttaki boşluğu artırarak ürün listesinin üstüne binmesi için alan açıyoruz */
    background-color: #3f4857; /* İsteğiniz üzerine belirlenen ana renk */
    background-image: url('/docs/img/vds-back1.png'); /* Bu desenin koyu versiyonunu kullanabilirsiniz */
    background-size: cover;
    background-position: center center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-hosting h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-hosting .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 90%;
}

.hero-hosting .hero-features-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-hosting .feature-box-hosting {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: var(--bs-border-radius);
    transition: all 0.3s ease;
}

.hero-hosting .feature-box-hosting:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.hero-hosting .feature-box-hosting .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-hosting .feature-box-hosting h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.hero-hosting .feature-box-hosting p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.hero-hosting .hero-image-wrapper img {
    max-width: 100%;
}

/* 2. ÜRÜN LİSTESİ (HERO ÜSTÜNE BİNME EFEKTİ) */
.hosting-list-section {
    margin-top: -50px; /* Bu negatif margin, bölümü yukarı çeker */
    position: relative;
    z-index: 10;
}


/* 3. EKSTRA BİLGİ VE AVANTAJ BÖLÜMLERİ */
.extra-info-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Hafif gri arkaplan */
}

.extra-info-section h2 {
    font-size: 2rem;
    font-weight: 600;
}

.extra-info-section .advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.advantage-item .icon {
    font-size: 3rem;
    color: var(--datakale-orange, #f39200);
}

.advantage-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

.advantage-item p {
    color: var(--bs-secondary);
}


/* Mobil uyumluluk */
@media (max-width: 991.98px) {
    .hero-hosting {
        padding: 60px 0 100px 0;
        text-align: center;
    }
    .hero-hosting .lead {
        max-width: 100%;
    }
    .hero-hosting .hero-image-wrapper {
        display: none; /* Mobilde resmi gizleyelim */
    }
    .hosting-list-section {
        margin-top: -60px; /* Mobilde üst üste binme mesafesini azaltalım */
    }
}


