/* ==========================================================================
   Marka Kimliği & Genel Font Ayarları (Quicksand)
   ========================================================================== */
body {
    font-family: 'Quicksand', sans-serif !important;
    background-color: #ffffff;
    color: #1e293b;
}

/* ==========================================================================
   Topbar (En Üst Bar) Stilleri
   ========================================================================== */
.custom-topbar {
    background-color: #232b35;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 0;
}
.custom-topbar a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.custom-topbar a:hover {
    color: #ffffff;
    opacity: 0.8;
}
.custom-topbar .bi {
    font-size: 15px;
}
.custom-topbar .icon-blue { color: #00bcd4; }
.custom-topbar .icon-green { color: #8bc34a; }
.custom-topbar .icon-red { color: #f44336; }
.custom-topbar .icon-white { color: #ffffff; }
.custom-topbar .v-line {
    color: rgba(255, 255, 255, 0.15);
    padding: 0 15px;
    font-weight: 300;
}

/* ==========================================================================
   Ana Navbar & Mega Menü Yapısı
   ========================================================================== */
.custom-navbar {
    background-color: #ffffff;
    padding: 0;
    border-bottom: 1px solid #f0f2f5;
}
.navbar-logo {
    max-height: 45px;
    width: auto;
}
.main-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu li.nav-item-m {
    display: flex;
    align-items: center;
    position: static; /* Full-width mega menü için kritik ayar */
}
.main-menu li.nav-item-dropdown {
    position: relative !important;
    display: flex;
    align-items: center;
}
.main-menu li.nav-item-m > a,
.main-menu li.nav-item-dropdown > a {
    color: #2b3147;
    font-size: 19px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}
.main-menu li.nav-item-m > a:hover,
.main-menu li.nav-item-dropdown > a:hover {
    color: #0d6efd;
}
.main-menu li:not(:last-child)::after {
    content: "|";
    color: #e2e5ec;
    font-size: 14px;
    font-weight: 300;
    padding-left: 4px;
}
.main-menu li a .bi-chevron-down {
    font-size: 11px;
    color: #9ba0b1;
    font-weight: bold;
}

/* --- MEGA MENU PANELİ (Domain, Hosting, Sunucu) --- */
.mega-menu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #ffffff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-top: 1px solid #f0f2f5;
    z-index: 999;
    padding: 35px 0;
}
.nav-item-m:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.mega-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}
.mega-icon {
    width: 42px;
    height: 42px;
    background: #f0f4ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    flex-shrink: 0;
}
.mega-text h6 {
    margin: 0 0 4px 0;
    color: #2b3147;
    font-weight: 700;
    font-size: 15px;
}
.mega-text p {
    margin: 0;
    color: #6c757d;
    font-size: 13px;
    line-height: 1.4;
}

/* --- KLASİK DROPDOWN PANELİ (Kurumsal) --- */
.classic-dropdown {
    position: absolute;
    top: 100px;
    right: 0;
    width: 240px;
    background: #ffffff;
    border: 1px solid #f0f2f5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.25s ease;
    z-index: 999;
}
.classic-dropdown li {
    width: 100%;
    display: block !important;
}
.classic-dropdown li::after {
    display: none !important;
}
.classic-dropdown li a {
    color: #2b3147;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px !important;
    display: block;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.classic-dropdown li a:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}
.nav-item-dropdown:hover .classic-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* --- Oval Kapsül Para Birimi Seçici (₺ / $) --- */
.currency-switcher {
    display: inline-flex;
    background-color: #f1f3f5;
    padding: 4px;
    border-radius: 30px;
    margin-left: 20px;
    position: relative;
}
.currency-btn {
    font-size: 13.5px;
    font-weight: 600;
    color: #495057;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.currency-btn.active {
    background-color: #ffffff;
    color: #0d6efd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* --- "YAKINDA" Rozeti --- */
.badge-yakinda {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e50914;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 12px;
    z-index: 10;
}
.badge-yakinda::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 3px 3px 0;
    border-style: solid;
    border-color: #e50914 transparent;
}


/* ==========================================================================
   Verimgo Web Hosting Fiyatlandırma Kartları - Premium Tasarım
   ========================================================================== */

/********* Verimgo Yeni Nesil Hosting Satır Düzeni **********/
/* ==========================================================================
   1. GENEL GRID / FLEX KAPSAYICI VE GLOBAL KART AYARLARI
   ========================================================================== */

/* Ana Konteyner: Masaüstünde tam genişlikte yan yana EKSİKSİZ 4 paket dizer */
.pricing-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    width: 100%;
    max-width: 1200px; /* 4 kartın ekrana taşmadan, simetrik oturması için optimize edildi */
    margin: 20px auto;
    box-sizing: border-box;
}

/* Yeni Nesil Minimalist Fiyat Kartı Tasarımı */
.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px 20px;
    width: 100%; 
    max-width: 280px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Kartlara yumuşak premium yükselme efekti verir */
}

/* Kartın Üzerine Gelindiğinde Tetiklenen Modern Gölge Efekti */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* En Çok Satan / Popüler Seçim (2. Kart) Özel Vurgu Çerçevesi */
.pricing-card.featured { 
    border: 2px solid #4b8afb; 
    box-shadow: 0 8px 25px rgba(75, 138, 251, 0.25);
}

/* Popüler Seçim Kartının Üstünde Duran Oval Rozet */
.popular-tag { 
    position: absolute; 
    top: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
    background-color: #4b8afb; 
    color: white; 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-size: 13px; 
    font-weight: 600; 
    white-space: nowrap; 
    box-shadow: 0 3px 8px rgba(75, 138, 251, 0.3);
}

/* ==========================================================================
   2. PAKET BAŞLIKLARI VE METRİK FİYATLANDIRMA ALANLARI
   ========================================================================== */

/* Paket İsmi (Örn: Web Hosting) */
.pricing-card .header h3 { margin: 0 0 5px 0; font-size: 20px; font-weight: 700; color: #1e2640; }

/* Paket Alt Başlığı / Slogan (Örn: Yeni Başlayanlar İçin) */
.pricing-card .header p { margin: 0; font-size: 13px; color: #7a829a; margin-bottom: 12px; }

/* Güncel WHMCS Kısa Kod Fiyatının Basıldığı Alan */
.price-section { padding-bottom: 5px; }
.current-price { display: block; font-size: 26px; font-weight: 700; color: #2b52cd; margin-bottom: 0px; }
.current-price small { font-size: 60%; font-weight: 400; color: #7a829a; }

/* Üstü Çizili Eski/İndirimsiz Fiyat Alanı */
.old-price { display: block; font-size: 14px; color: #a0aabf; text-decoration: line-through; margin-bottom: 10px; }

/* ==========================================================================
   3. SÜRE SEÇENEKLERİ LİSTESİ (ÇOKLU DÖNEM ÖDEME SEÇENEKLERİ)
   ========================================================================== */
.duration-options-list {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0;
    margin-left: -20px; 
    margin-right: -20px;
    background-color: #fff;
}
.duration-options-list .option-item { 
    padding: 10px 20px; 
    cursor: pointer; 
    border-bottom: 1px solid #edf2f7;
    font-size: 13px;
    text-align: left;
    font-weight: 600;
    color: #49536c;
}
/* Seçili Dönemin Mavi Vurgulanma Efekti */
.duration-options-list .option-item.selected { 
    background-color: #e6f0ff; 
    color: #4b8afb; 
    border-left: 3px solid #4b8afb; 
    padding-left: 17px; 
}

/* ==========================================================================
   4. PAKET ÖZELLİKLERİ VE LOKAL RESİM İKONLARI (assets/images/)
   ========================================================================== */
.features { text-align: left; margin-top: 20px; flex-grow: 1; }
.features h4 { font-size: 13px; font-weight: 700; color: #1e2640; margin: 0 0 15px 0; text-align: center; text-transform: uppercase; letter-spacing: 0.5px; }
.features ul { list-style: none; padding: 0; margin: 0; }

/* Liste Satırları: Soldan ikonlar için 35px boşluk bırakıldı */
.features li {
    padding: 9px 0px;
    border-bottom: 1px dashed #edf2f7;
    color: #49536c;
    font-size: 13px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px; 
}
.features li:last-child { border-bottom: none; }

/* Görsel İkonların Kapsayıcı Ayarı (Resimleri tam ortalar ve boyutlandırır) */
.features li::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
}

/* Web-Ready Formatındaki Lokal İkon Yolları (assets klasöründen beslenir) */
[data-icon="http"]::before { background-image: url("assets/images/http.webp"); }
[data-icon="hard-drive"]::before { background-image: url("assets/images/hard-drive.webp"); }
[data-icon="cpu"]::before { background-image: url("assets/images/cpu.webp"); }
[data-icon="ram"]::before { background-image: url("assets/images/ram.webp"); }
[data-icon="ziyaretci"]::before { background-image: url("assets/images/ziyaretci.webp"); }
[data-icon="ssl"]::before { background-image: url("assets/images/ssl.webp"); }
[data-icon="inodes"]::before { background-image: url("assets/images/inodes.webp"); }
[data-icon="cpanel"]::before { background-image: url("assets/images/cpanel.webp"); }
[data-icon="plesk"]::before { background-image: url("assets/images/plesk.png"); }
[data-icon="yedekleme"]::before { background-image: url("assets/images/backup.webp"); }

/* ==========================================================================
   5. BUTONLAR, DETAY LİNKLERİ VE KDV DAHİL DEĞİLDİR POP-UP ALANI
   ========================================================================== */
.savings-info { background-color: #e6f0ff; color: #4b8afb; font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 20px; margin-bottom: 15px; }

/* Yeni Nesil Yumuşatılmış Dikdörtgen Buton Yapısı */
.btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 11px 0; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 700; transition: background-color 0.3s ease; }
.btn-primary { background-color: #2b52cd; color: white; } 
.btn-primary:hover { background-color: #1d3db0; }
.btn-featured { background-color: #10b981; color: white; } /* Popüler paket için yeşil buton */
.btn-featured:hover { background-color: #059669; }
.btn i { margin-right: 6px; }

/* Kartın En Altındaki Tüm Özellikleri Gör Linki */
.details-link { display: block; margin-top: 20px; text-decoration: none; color: #7a829a; font-size: 13px; font-weight: 600; padding-top: 10px; border-top: 1px dashed #edf2f7; }
.details-link:hover { color: #2b52cd; }

/* WHMCS Ödeme Planları Üzerine Gelince Açılan Tooltip / Pop-up Kutusu */
.renewal-info-container { position: relative; display: inline-block; margin-bottom: 15px; padding-top: 10px; }
.renewal-info { font-size: 13px; color: #49536c; font-weight: 500; display: flex; justify-content: center; align-items: center; cursor: pointer; }
.renewal-info i { margin-left: 5px; color: #4b8afb; font-size: 11px;}
.renewal-popup { position: absolute; bottom: 110%; left: 50%; transform: translateX(-50%); z-index: 100; width: 280px; background-color: #fff; border: 1px solid #e2e8f0; border-radius: 10px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); display: none; padding-bottom: 10px; }
.renewal-info-container:hover .renewal-popup { display: block; }
.popup-header { background-color: #f8faff; padding: 12px 0; text-align: center; font-size: 14px; font-weight: 700; color: #1e2640; border-bottom: 1px solid #edf2f7; border-radius: 10px 10px 0 0; }
.popup-table { padding: 5px 15px; }
.popup-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #edf2f7; font-size: 12px; color: #49536c; }
.popup-row.header-row { font-weight: 700; color: #7a829a; border-bottom: 1px solid #e2e8f0; }
.popup-row .col-sure { flex: 2; text-align: left; }
.popup-row .col-aylik { flex: 3; text-align: center; }
.popup-row .col-toplam { flex: 2; text-align: right; font-weight: 700; color: #2b2b2b; }
.popup-discount-row { padding: 4px 0 8px; text-align: center; }
.discount-btn { width: 100%; padding: 6px 0; background-color: #e2f9f0; color: #10b981; border: none; border-radius: 4px; font-size: 11px; font-weight: 700; }
.discount-btn.featured-discount { background-color: #fff3cd; color: #b7791f; }
.popup-footer { text-align: center; font-size: 11px; color: #ff3b30; font-weight: 600; padding: 5px 15px 0; }

/* ==========================================================================
   6. RESPONSIVE (MOBİL, TABLET VE 4'LÜ MASAÜSTÜ KIRILMA NOKTALARI)
   ========================================================================== */

/* Mobil Cihazlar: Kartlar alt alta tek sıra halinde listelenir */
@media (max-width: 767px) {
    .pricing-card { 
        width: 100%;
        max-width: 340px !important;
    }
}

/* Tablet Ekranlar: Kartlar yan yana 2'şerli (2x2 matris) şeklinde dizilir */
@media (min-width: 768px) and (max-width: 1023px) {
    .pricing-card { 
        width: calc(50% - 10px); 
        max-width: 340px;
    }
}

/* Geniş Masaüstü Ekranlar: Tam bölme hesaplamasıyla YAN YANA EKSİKSİZ TERTEMİZ 4'LÜ SIRA */
@media (min-width: 1024px) {
    .pricing-card { 
        width: calc(25% - 15px); /* %100 genişliği kusursuz olarak 4 eşit parçaya böler */
    }
}
/* ==========================================================================
   VERIMGO Gelişmiş Özellik Karşılaştırma Tablosu Stilleri
   ========================================================================== */

.table-body-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.table-body-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Satır Genel Düzeni (5 Sütunlu Grid Sistemi) */
.table-header-container, 
.table-body-ul-li, 
.table-body-last-ul-li {
    display: grid;
    grid-template-columns: 2.5fr repeat(4, 2fr);
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    padding: 15px 20px;
    background: #ffffff;
}

.table-header-container {
    background: #f8faff;
    padding: 24px 20px;
}

/* Sütun İçerik Yapıları */
.ul-li-first-div {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.ul-li-first-div-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.ul-li-first-div-text {
    font-size: 14px;
    color: #1e2640;
    font-weight: 600;
}

.ul-li-other-div {
    text-align: center;
    font-size: 14px;
    color: #49536c;
}

/* Paket Derecelendirme Çubukları (Completion Bars) */
.completion-bar-container {
    display: flex;
    gap: 3px;
    justify-content: flex-start;
    margin-top: 6px;
}

.colored-completion-bar {
    width: 16px;
    height: 4px;
    background: #4b8afb;
    border-radius: 2px;
}

.uncolored-completion-bar {
    width: 16px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.table-header-other-div-element-text {
    font-size: 15px;
    color: #1e2640;
    font-weight: 700;
}

.table-header-other-div-element-sub-text {
    font-size: 11px;
    color: #7a829a;
    margin-top: 4px;
}

/* Tablo İçi Fiyat Kartı Tasarımı */
.table-cost-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.table-cost-strike-text {
    font-size: 12px;
    color: #a0aabf;
    text-decoration: line-through;
}

.table-cost-text-container {
    display: flex;
    align-items: baseline;
    margin: 2px 0;
}

.table-cost-price-text {
    font-size: 18px;
    font-weight: 700;
    color: #2b52cd;
}

.table-cost-time-text {
    font-size: 11px;
    color: #7a829a;
    margin-left: 2px;
}

.table-cost-savings-text {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}

/* Akordiyon / Dropdown Gelişmiş Özellik Alanı */
.table-body-dropdown-ul-li {
    background: #ffffff;
    border-bottom: 1px solid #edf2f7;
}

.table-body-dropdown-ul-li-element-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: #f8faff;
    transition: background 0.2s ease;
}

.table-body-dropdown-ul-li-element-container:hover {
    background: #f1f5ff;
}

.table-toggle-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.table-dropdown-container {
    display: none;
}

.table-dropdown-container-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-dropdown-container-ul .table-body-ul-li {
    background: #fafbfc;
    padding-left: 40px;
}

/* Satın Al Buton Stilleri */
.table-buy-link {
    text-decoration: none;
    width: 100%;
    display: block;
}

.table-body-buy-button {
    width: 100%;
    max-width: 140px;
    padding: 8px 0;
    background: #2b52cd;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.table-body-buy-button:hover {
    background: #1d3db0;
    transform: translateY(-2px);
}

/* Responsive Kırılma Noktası (Mobil Cihazlarda Yatay Kaydırma Sağlar) */
@media (max-width: 991px) {
    .table-body-container {
        overflow-x: auto;
    }
    .table-body-ul {
        width: 900px;
    }
}