/* =========================================
   VIRTUAL SERVER VARIABLES
   ========================================= */
:root {
    --bg-body: #f8fafc;
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --hero-bg: radial-gradient(circle at 10% 10%, #172554 0%, #0f172a 100%);
    --text-main: #1e293b;
    --text-muted: #64748b;
    /* Kart Gölgeleri */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.03);
    --shadow-hover: 0 15px 30px rgba(37, 99, 235, 0.1);
}

/* ... HERO BÖLÜMÜ (AYNI KALDI) ... */
.server-hero {
    position: relative; padding: 160px 0 200px;
    background: var(--hero-bg); color: white; overflow: hidden;
}
.server-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.3; z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 50px; position: relative; z-index: 2; }
.hero-text { text-align: left; }
.hero-badge {
    background: rgba(37, 99, 235, 0.2); color: #60a5fa; border: 1px solid rgba(37, 99, 235, 0.4);
    padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; backdrop-filter: blur(5px);
}
.hero-title {
    font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #93c5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.15rem; color: #cbd5e1; max-width: 600px; line-height: 1.6; margin-bottom: 40px; }
.hero-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; }
.hf-box {
    padding: 15px 20px; border-radius: 16px; background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; gap: 15px; transition: 0.3s;
}
.hf-icon { font-size: 1.5rem; color: #94a3b8; }
.hf-text h5 { font-size: 1rem; font-weight: 700; margin: 0; color: #fff; }
.hf-text span { font-size: 0.8rem; color: #94a3b8; }
.hf-box.glow {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    border-color: rgba(37, 99, 235, 0.5); box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}
.hf-box.glow .hf-icon { color: #60a5fa; }
.hero-visual { position: relative; text-align: center; }
.hero-img-anim { width: 100%; max-width: 500px; filter: drop-shadow(0 20px 50px rgba(37, 99, 235, 0.3)); animation: floatImg 6s ease-in-out infinite; }
@keyframes floatImg { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* ... PACKAGES SECTION ... */
.packages-section { margin-top: -80px; padding-bottom: 100px; position: relative; z-index: 10; }

.server-tabs {
    display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; flex-wrap: wrap;
    background: #fff; padding: 8px; border-radius: 16px; width: fit-content; margin-left: auto; margin-right: auto;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1); border: 1px solid #e2e8f0;
}
.tab-btn {
    background: transparent; border: none; color: var(--text-muted);
    padding: 12px 25px; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 8px;
}
.tab-btn:hover { color: var(--primary); background: #f1f5f9; }
.tab-btn.active {
    background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.tab-content { display: none; animation: slideUp 0.4s ease; }
.tab-content.active { display: block; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- YENİ MODERN SATIR TASARIMI --- */
.server-item {
    background: white; 
    border-radius: 16px; 
    margin-bottom: 15px; /* Satırlar arası boşluk */
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary); /* Sol tarafta accent çizgisi */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.server-item:hover { 
    transform: translateY(-5px) scale(1.005); 
    box-shadow: var(--shadow-hover);
    border-color: #cbd5e1;
}

.item-main {
    display: grid; 
    /* Grid Düzeni: İkon+Ad | CPU | RAM | Disk | Fiyat | Butonlar */
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.2fr; 
    align-items: center; 
    padding: 20px 30px; 
    gap: 15px;
}

/* Paket Başlığı */
.pkg-header { display: flex; align-items: center; gap: 15px; }
.pkg-icon {
    width: 45px; height: 45px; background: #eff6ff; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary); flex-shrink: 0;
}
.pkg-title h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-main); margin: 0; }
.pkg-title span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Özellik Sütunları */
.pkg-spec { text-align: left; } /* Sola hizalı daha modern durur */
.pkg-spec h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin: 0; }
.pkg-spec span { font-size: 0.75rem; color: #94a3b8; font-weight: 500; display: block; margin-top: 2px; }

/* Fiyat Alanı (Siyah Kutu Yerine Modern Metin) */
.pkg-price-box { 
    text-align: right; 
}
.price-val { font-size: 1.4rem; font-weight: 800; color: var(--text-main); letter-spacing: -0.5px; }
.price-period { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* Aksiyon Butonları */
.pkg-actions { display: flex; gap: 10px; justify-content: flex-end; align-items: center; }

.btn-toggle-features {
    background: white; border: 1px solid #e2e8f0; color: var(--text-muted);
    width: 38px; height: 38px; border-radius: 50%; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.btn-toggle-features:hover { background: #f1f5f9; color: var(--primary); border-color: var(--primary); }

.btn-buy {
    background: var(--primary); color: white; 
    padding: 10px 25px; border-radius: 50px; /* Tam oval */
    font-weight: 600; text-decoration: none; transition: 0.3s; font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}
.btn-buy:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3); }

/* Açılır Özellik Alanı */
.item-features-expand {
    display: none; background: #f8fafc; padding: 20px 30px; border-top: 1px solid #e2e8f0;
}
.features-grid-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.feat-mini { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.feat-mini i { color: var(--accent); width: 18px; text-align: center; }

/* ... SPECS, MIGRATION, CONTENT, FAQ (STANDART) ... */
.specs-section { padding: 80px 0; background: #fff; }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.spec-box { background: #f8fafc; padding: 30px; border-radius: 16px; transition: 0.3s; border: 1px solid transparent; text-align: left; }
.spec-box:hover { background: #fff; border-color: var(--primary); box-shadow: var(--shadow-hover); }
.spec-icon { width: 60px; height: 60px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--primary); margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.spec-box h4 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; color: var(--text-main); }
.spec-box p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

.migration-bar { background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%); padding: 40px 0; color: white; position: relative; overflow: hidden; }
.mig-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1000px; margin: 0 auto; }
.mig-info { display: flex; align-items: center; gap: 25px; text-align: left; }
.mig-icon { font-size: 3.5rem; background: rgba(255,255,255,0.2); width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.mig-text h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 5px; }
.mig-text p { font-size: 1.1rem; opacity: 0.9; margin: 0; }
.mig-btn-box { flex-shrink: 0; }

.content-area { padding: 100px 0; }
.row-item { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.row-item.reverse { flex-direction: row-reverse; }
.row-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.row-text h2 { font-size: 2.2rem; color: var(--text-main); margin-bottom: 20px; font-weight: 800; }
.row-text p { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }

.faq-sec { padding: 80px 0; max-width: 900px; margin: 0 auto; }
.faq-box { margin-bottom: 15px; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.faq-q { padding: 20px; background: #fff; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-q:hover { background: #f8fafc; }
.faq-a { display: none; padding: 20px; border-top: 1px solid #f1f5f9; background: #fff; color: var(--text-muted); line-height: 1.6; }
.faq-box.active .faq-a { display: block; }
.faq-box.active .faq-q { color: var(--primary); }
.rotate-icon { transition: 0.3s; }
.faq-box.active .rotate-icon { transform: rotate(180deg); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .server-hero { padding: 100px 0 100px; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { text-align: center; }
    .hero-badge, .hero-features-grid { margin: 0 auto 20px; }
    .hero-visual { display: none; }
    .tab-btn { padding: 10px 15px; font-size: 0.85rem; }
    
    /* Mobil Kart Görünümü */
    .item-main {
        grid-template-columns: 1fr 1fr; /* 2 Sütun */
        gap: 15px; padding: 20px;
    }
    .pkg-header { grid-column: span 2; margin-bottom: 10px; } /* Başlık tam genişlik */
    .pkg-price-box { grid-column: span 2; text-align: left; margin: 5px 0; }
    .pkg-actions { grid-column: span 2; justify-content: space-between; }
    .btn-buy { width: 100%; text-align: center; }
    .btn-toggle-features { flex-shrink: 0; }
    
    .features-grid-mini { grid-template-columns: 1fr 1fr; }
    .specs-grid { grid-template-columns: 1fr 1fr; }
    .mig-content, .mig-info, .row-item, .row-item.reverse { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) { 
    .item-main { grid-template-columns: 1fr; text-align: center; } /* Mobilde tek sütun */
    .pkg-header { flex-direction: column; justify-content: center; }
    .pkg-price-box { text-align: center; }
    .pkg-spec { 
        display: flex; justify-content: space-between; align-items: center; 
        background: #f8fafc; padding: 10px; border-radius: 8px;
    }
    .specs-grid { grid-template-columns: 1fr; } 
}