/* --- PAKET TASARIM STILLERI v2.4 - MAVİ TEMA / TÜM AYARLAR DAHİL --- */

/* Ana Renkleri Tanımlama */
:root {
    --brand-blue: #007bff; /* Ana Mavi (Bootstrap mavisi, değiştirebilirsiniz) */
    --brand-blue-dark: #0056b3; /* Koyu Mavi */
    --brand-blue-light: #e6f2ff; /* Açık Mavi (Arka planlar için) */
    --accent-color: #ffc107; /* Vurgu Rengi (İndirim etiketleri için sarı) */
    --text-color: #555;
    --border-color: #e9ecef; /* Ana border rengi */
    --dashed-border-color: #e0e0e0; /* Kesik çizgi rengi */
    --header-text-color: #343a40;
}

.pricing-container-v2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 30px 15px;
    gap: 30px;
    font-family: 'Open Sans', sans-serif;
}

.package-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--brand-blue); /* Tüm paketlerde mavi üst border */
    border-radius: 12px;
    width: 100%;
    max-width: 340px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Popüler paketi daha belirgin yapma */
.package-card.popular {
    transform: translateY(-15px);
    border: 2px solid var(--brand-blue);
}

.package-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--header-text-color);
}

.package-header .tagline {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    color: #fff;
    background-color: var(--brand-blue);
}

.package-card.popular .tagline {
    background-color: var(--accent-color);
    color: #333;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    flex-grow: 1;
}

.features-list li {
    font-size: 15px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px dashed var(--dashed-border-color);
}

/* En son özelliğin altındaki çizgiyi kaldırır */
.features-list li:last-child {
    border-bottom: none;
}


.features-list li i {
    font-size: 16px;
    width: 25px;
    margin-right: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .package-card.popular {
        transform: translateY(0);
    }
}


/* --- ÖZEL İKON RENKLENDİRME --- */
.features-list .fa-bolt         { color: #f5b700; } /* LiteSpeed - Sarı */
.features-list .fa-cloud        { color: #17a2b8; } /* CloudLinux - Turkuaz */
.features-list .fa-shield-alt   { color: #28a745; } /* Güvenlik (Imunify) - Yeşil */
.features-list .fa-user-shield { color: #28a745; } /* WAF - Yeşil */
.features-list .fa-rocket       { color: #6f42c1; } /* WP Hızlandırıcı - Mor */
.features-list .fa-search-plus  { color: #6f42c1; } /* PHP X-Ray - Mor */
.features-list .fa-microchip    { color: #6c757d; } /* CPU - Gri */
.features-list .fa-memory       { color: #6c757d; } /* RAM - Gri */
.features-list .fa-paint-brush  { color: #fd7e14; } /* SitePad - Turuncu */
.features-list .fa-history      { color: #007bff; } /* Yedekleme (JetBackup) - Mavi */
.features-list .fa-server,
.features-list .fa-hdd,
.features-list .fa-exchange-alt,
.features-list .fa-lock,
.features-list .fa-database,
.features-list .fa-envelope,
.features-list .fa-folder-open,
.features-list .fab.fa-cpanel,
.features-list .fab.fa-wordpress,
.features-list .fa-tachometer-alt { color: #555; } /* Diğer standart ikonlar - Koyu Gri */


/* --- TEKİL ELEMENT AYARLARI --- */

/* Popüler paket etiketindeki yıldız ikonu ile yazı arasındaki boşluğu azaltır */
.package-header .tagline .fa-star {
    margin-right: 5px;
}