/* ServerPlus Menu */
:root {
    --primary-blue: #00a0e3;
    --primary-dark-blue: #1B2A4A;
    --primary-red: #C41E3A;
    --success-green: #00b74a;
    --border-color: rgba(102, 112, 147, 0.15);
    --hover-bg: #f8f9fa;
    --menu-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.25s ease;

    --btn-primary-bg: #1B2A4A;
    --btn-primary-bg-hover: #00a0e3;
    --btn-hover: #00a0e3;
    --btn-secandary-bg: #1B2A4A;
    --btn-secandary-bg-hover: #1B2A4A;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.promo-banner {
    background: linear-gradient(135deg, #019ee0 0%, #293746 100%);
    margin-top: 0 !important;
    padding: 1rem 0;
    border-radius: 8px;
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.promo-banner h2 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
}

.promo-banner p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.promo-banner .btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.promo-banner .btn-white:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .promo-banner {
        display: none;
    }
}

.top-bar {
    display: flex;
    align-items: center;
    background-color: var(--primary-blue);
    font-size: 13.5px;
    padding: 12px 0;
    color: #e0e0e0;
    font-weight: 500;
    border-top: 2px solid transparent;
    border-image: linear-gradient(to right, #FF8C00 0%, #FF8C00 25%, #FF4500 50%, rgba(255, 69, 0, 0.5) 75%, rgba(255, 69, 0, 0.1) 100%);
    border-image-slice: 1;
    min-height: 50px;
}

.top-bar a,
.top-bar .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 8px;
    font-weight: 500;
    line-height: 1;
}

.top-bar a:hover,
.top-bar .dropdown-toggle:hover {
    color: #ffffff;
}

.top-bar a svg,
.top-bar .dropdown-toggle svg {
    width: 14px;
    height: 14px;
    position: relative;
    top: -1px;
    vertical-align: middle;
}

.top-bar a span,
.top-bar .dropdown-toggle span {
    position: relative;
    top: 0.5px;
}

.navbar {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: relative;
    z-index: 1000;
    font-family: 'Poppins', sans-serif !important;
}

.navbar {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky; /* Menü Kaydığında sabit olacak */
    width: 100%; /* Genişlik tamamen dolu olacak */
    top: 50px; /* Başlangıçta topbarın altına yerleşir */
    z-index: 1000; /* Diğer elemanların üstünde */
    transition: top 0.3s ease-in-out; /* Geçiş efekti */
}

.navbar.sticky {
    top: 0; /* Sayfa kaydığında menü en üste geçer */
}

.navbar-brand img {
    height: 38px;
    width: auto;
}

.navbar-nav {
    gap: 5px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #555;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    white-space: nowrap;
    transition: color 0.2s;
}

.navbar-nav .dropdown-item {
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-nav .dropdown-item:hover {
    color: var(--primary-red);
    background-color: #f8f9fa;
}

/* Dropdown toggle icon */
.dropdown-toggle-icon {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown-toggle-icon.rotate {
    transform: rotate(180deg);
}

.navbar-nav .divider {
    border-right: 1px solid #e0e0e0;
    height: 1.5em;
    margin: 0 5px;
    align-self: center;
}

.badge-new {
    background-color: var(--primary-red) !important;
    font-size: 11px;
    padding: 0.25em 0.6em;
    margin-left: 6px;
    font-weight: 400;
    vertical-align: middle;
}

.btn-login {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    color: #333;
    font-size: 14.5px;
    padding: 8px 16px;
    font-weight: 400;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.btn-login:hover {
    background-color: #f1f3f5;
    border-color: #ced4da;
}

.btn-login .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--success-green);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 400;
}

.btn-login svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    font-size: 14.5px;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 8px 16px;
    font-weight: 300;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-red);
}

.top-bar .dropdown-menu {
    min-width: 160px;
    margin-top: 10px;
}

.top-bar .dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.8;
}

/* Geliştirilmiş Mega Menu Stilleri */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0;
    background: white;
    box-shadow: var(--menu-shadow);
    border-top: 1px solid #eee;
    margin-top: -1px;
    z-index: 1000;
    width: 100%;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

/* Mega menü için çizgiler ve düzenlemeler */
.mega-menu-container {
    min-height: 180px;
    width: 100%;
    position: relative;
    padding-right: 340px; /* 380px'den 340px'e düşürüldü */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0; /* 1.5rem'den 1rem'e düşürüldü - dikey boşluğu azalttım */
    background-color: white;
    box-shadow: var(--card-shadow);
}

/* Mega-menu-promo ve promo-banner stillerini düzenleyelim */
.mega-menu-promo {
    position: absolute;
    right: 0;
    top: 0;
    width: 320px; /* 360px'den 320px'e düşürüldü */
    height: 100%;
    border-left: 1px solid var(--border-color);
    padding: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.promo-banner {
    background: transparent; /* Arka plan rengini kaldırdık */
    padding: 0;
    border-radius: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.mega-menu-grid.one-child {
    grid-template-columns: repeat(1, 1fr);
}

.mega-menu-item {
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
    min-height: 90px;
}

.mega-menu-grid.one-child .mega-menu-item {
    border-right: none;
}

.mega-menu-item:nth-child(2n) {
    border-right: none;
}

.mega-menu-item:nth-last-child(1),
.mega-menu-item:nth-last-child(2) {
    border-bottom: none;
}

.mega-menu-grid.one-child:first-child .mega-menu-item {
    border-bottom: 1px solid var(--border-color);
}

.hosting-option {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem; /* 1.25rem'den 1.5rem'e çıkarıldı - içeriği biraz büyüttüm */
    border-radius: 0;
    transition: var(--transition);
    text-decoration: none;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hosting-option::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-red);
    opacity: 0.05;
    transition: var(--transition);
}

.hosting-option:hover {
    background: var(--hover-bg);
    transform: translateY(-2px);
}

.hosting-option:hover::after {
    width: 5px;
}

.hosting-option .icon {
    width: 42px;
    height: 42px;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.6s ease;
    background-color: rgba(102, 112, 147, 0.08);
    padding: 8px;
    border-radius: 8px;
}

.hosting-option:hover .icon {
    transform: rotate(360deg);
    background-color: rgba(0, 159, 227, 0.08);
}

.hosting-option:hover .icon path {
    fill: var(--btn-hover);
}

.hosting-option .content h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.hosting-option:hover .content h3 {
    color: var(--btn-hover);
}

.hosting-option .content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Promo banner stillerini daha responsive hale getirmek için aşağıdaki değişiklikleri yapın */
.promo-banner::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.promo-banner::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.promo-label {
    display: inline-flex;
    background-color: #ff5722;
    color: white;
    font-size: 0.75rem; /* Font boyutunu artırdım */
    font-weight: 600;
    padding: 0.3rem 0.6rem; /* Padding değerlerini artırdım */
    border-radius: 4px;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    width: fit-content; /* İçeriğe göre genişlik */
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Promo banner yazı boyutlarını ve padding değerlerini düzenleyelim */
.promo-banner > div {
    padding: 1.2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Eklendi - içeriği ortala */
    text-align: center; /* Eklendi - metni ortala */
}

.promo-banner-text h2 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-banner-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.promo-banner .btn-white {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.4rem 1rem; /* 0.3rem 0.8rem'den 0.4rem 1rem'e büyütüldü */
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-size: 0.85rem; /* 0.75rem'den 0.85rem'e büyütüldü */
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    align-self: center; /* flex-start'tan center'a değiştirildi */
    margin-top: 1rem; /* 0.3rem'den 1rem'e artırıldı */
    min-width: 120px; /* Minimum genişlik eklendi */
    text-align: center; /* Metin ortalandı */
}

.promo-banner .btn-white:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.indirim-badge {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 5px;
    font-weight: 500;
    vertical-align: middle;
}

/* Mega menü başlığı */
.mega-menu-title {
    padding: 1.5rem 1.5rem 0.75rem; /* 1.25rem'den 1.5rem'e çıkarıldı */
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}

/* Responsive düzenlemeler */
@media (max-width: 991.98px) {
    .mega-menu-container {
        padding-right: 0;
        border: none;
    }

    .mega-menu-grid {
        display: block;
    }

    .mega-menu-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0;
    }

    .mega-menu-item:last-child {
        border-bottom: none;
    }

    /* Responsive düzenlemeleri güncelleyin (CSS içinde): */
    .mega-menu-promo {
        position: relative;
        width: 100%;
        right: 0;
        margin-top: 15px;
        height: auto;
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 0;
    }

    .promo-banner {
        padding: 0;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .promo-banner > div {
        padding: 1rem;
        width: 100%;
        height: 100%; /* Yüksekliği 100% yaparak dikey olarak tüm alanı kaplar */
    }

    .promo-banner-text {
        margin-right: 10px;
    }
}

@media (max-width: 767.98px) {
    .mega-menu-container {
        padding: 0;
        margin: 0.75rem 0;
    }

    .mega-menu-item {
        padding: 0;
    }

    .hosting-option {
        padding: 1rem;
    }

    .hosting-option .content h3 {
        font-size: 0.95rem;
    }

    .hosting-option .content p {
        font-size: 0.8rem;
    }

    .mega-menu-title {
        padding: 1rem 1rem 0.5rem;
        font-size: 0.9rem;
    }

    /* Responsive düzenlemeleri güncelleyin (CSS içinde): */
    .promo-banner {
        flex-direction: column;
    }

    .promo-banner > div {
        padding: 1rem;
    }

    .promo-banner-text h2 {
        font-size: 1.1rem;
    }

    .promo-banner-text p {
        font-size: 0.85rem;
    }

    .promo-label {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.6rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .top-bar {
        font-size: 12px;
    }

    .top-bar a, .top-bar .dropdown-toggle {
        padding: 2px 4px;
    }
}

.nav-link, .dropdown-item, .btn-login, .top-bar a {
    transition: all 0.2s ease-in-out;
}

.dropdown-menu {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.dropdown-menu.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar .align-items-center {
    height: 100%;
}

.top-bar .divider {
    border-right: 1px solid rgba(224, 224, 224, 0.3);
    height: 1em;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .top-bar .divider {
        display: none;
    }
}

.promo-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.promo-banner-text {
    flex: 1;
    width: 100%; /* Tam genişlik */
    text-align: center; /* Metni ortala */
}

/* xThema Menu-Top-bar Bitiş*/

/* Mega menü dropdown'ının kendisini biraz daha yakın konumlandıralım */
.mega-menu {
    margin-top: -1px; /* 0'dan -1px'e değiştirildi - menüyü yukarı yaklaştırdım */
}

/* Bootstrap'ın varsayılan dropdown oklarını kaldır */
.dropdown-toggle::after {
    display: none !important;
}

/* Kampanya alanları için özel stiller */
.promo-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 0;
}

.promo-content.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Farklı kampanya arka plan renkleri */
.bg-sanal-sunucu {
    background: linear-gradient(135deg, #2E86C1 0%, #5DADE2 100%);
}

.bg-windows-sunucu {
    background: linear-gradient(135deg, #019ee0 0%, #293746 100%);
}

.bg-fiziksel-sunucu {
    background: linear-gradient(135deg, #FF5722 0%, #FF8A65 100%);
}

.bg-bulut-sunucu {
    background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
}

.bg-sunucu-yonetimi {
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
}

/* Domain kampanya arka plan renkleri */
.bg-domain-tescil {
    background: linear-gradient(135deg, #2E86C1 0%, #5DADE2 100%);
}

.bg-domain-transfer {
    background: linear-gradient(135deg, #E74C3C 0%, #F1948A 100%);
}

.bg-domain-yenileme {
    background: linear-gradient(135deg, #F39C12 0%, #F7DC6F 100%);
}

.bg-domain-fiyatlari {
    background: linear-gradient(135deg, #16A085 0%, #45B39D 100%);
}

/* Web Hosting kampanya arka plan renkleri */
.bg-linux-hosting {
    background: linear-gradient(135deg, #2980B9 0%, #3498DB 100%);
}

.bg-wordpress-hosting {
    background: linear-gradient(135deg, #D35400 0%, #E67E22 100%);
}

.bg-kurumsal-hosting {
    background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
}

.bg-linux-reseller {
    background: linear-gradient(135deg, #1ABC9C 0%, #48C9B0 100%);
}

/* Ek Hizmetler kampanya arka plan renkleri */
.bg-ssl-lisanslar {
    background: linear-gradient(135deg, #2E86C1 0%, #5DADE2 100%);
}

.bg-ipv4-adresi {
    background: linear-gradient(135deg, #CB4335 0%, #EC7063 100%);
}

.bg-e-posta {
    background: linear-gradient(135deg, #28B463 0%, #58D68D 100%);
}

.bg-diger-hizmetler {
    background: linear-gradient(135deg, #7D3C98 0%, #A569BD 100%);
}

/* Varsayılan promo içeriklerine güzel gradient arka planlar ekleyelim */
.promo-banner.promo-content#domain-default {
    background: linear-gradient(135deg, #019ee0 0%, #293746 100%);
}

.promo-banner.promo-content#hosting-default {
    background: linear-gradient(135deg, #00897B 0%, #26A69A 100%);
}

.promo-banner.promo-content#sunucu-default {
    background: linear-gradient(135deg, #7B1FA2 0%, #9C27B0 100%);
}

.promo-banner.promo-content#ek-hizmetler-default {
    background: linear-gradient(135deg, #1E88E5 0%, #42A5F5 100%);
}

/* Varsayılan promo içeriklerinin metin renklerini beyaz yapalım */
.promo-banner.promo-content#domain-default .promo-banner-text h2,
.promo-banner.promo-content#hosting-default .promo-banner-text h2,
.promo-banner.promo-content#sunucu-default .promo-banner-text h2,
.promo-banner.promo-content#ek-hizmetler-default .promo-banner-text h2,
.promo-banner.promo-content#domain-default .promo-banner-text p,
.promo-banner.promo-content#hosting-default .promo-banner-text p,
.promo-banner.promo-content#sunucu-default .promo-banner-text p,
.promo-banner.promo-content#ek-hizmetler-default .promo-banner-text p {
    color: #ffffff;
}

/* Overlay ve blur efekti */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navbar ve top-bar'ın z-index değerlerini artıralım */
.top-bar {
    position: relative;
    z-index: 1;
}

.navbar {
    position: sticky;
    z-index: 1001;
}

/* ServerPlus Menu Bitis */

/* ServerPlus Menu Reklamı */

.indirim-badge {
    display: inline-block;
    background-color: #424867;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 4px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: yanip-sonme 1.2s infinite ease-in-out;
}

.nav-link {
    position: relative;
}

@keyframes yanip-sonme {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .indirim-badge {
        font-size: 9px;
        padding: 1px 8px;
        top: -8px;
    }
}

@media (max-width: 480px) {
    .indirim-badge {
        font-size: 8px;
        padding: 1px 7px;
        top: -6px;
    }
}

/* ServerPlus Menu Reklamı Bitis */


/* ServerPlus Footer */

.xfooter-footer * {
    box-sizing: border-box;
}

.xfooter-footer-link {
    color: #b8c5ff !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}

.xfooter-footer-link:hover {
    color: #fff !important;
}

.xfooter-footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.xfooter-footer-text {
    color: #b8c5ff;
}

.xfooter-accordion-button {
    background-color: transparent !important;
    color: #fff !important;
    padding: 0.75rem 0;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    border: none;
}

.xfooter-accordion-button:not(.collapsed) {
    box-shadow: none;
}

.xfooter-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
    float: right;
    margin-left: 0.5rem;
    transition: transform 0.2s ease-in-out;
}

.xfooter-accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.xfooter-accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #3d4b8e;
}

.xfooter-accordion-item:last-of-type {
    border-bottom: none;
}

.xfooter-accordion-body {
    padding: 0.5rem 0 1rem;
}

@media (max-width: 991.98px) {
    .xfooter-footer-desktop {
        display: none;
    }
}

@media (min-width: 992px) {
    .xfooter-footer-mobile {
        display: none;
    }
}

.xfooter-footer-bottom {
    background-color: #141b3d;
    color: #b8c5ff;
    font-size: 0.75rem;
    padding: 0.75rem 0;
}

.xfooter-footer-bottom .xfooter-footer-link {
    color: #b8c5ff;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.xfooter-footer-bottom .xfooter-footer-link:hover {
    color: #fff;
}

/* ServerPlus Footer Bitis */


/* Anasayfa Slider */
.splusslider-wrapper {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;

    /* Değişkenler */
    --splusslider-primary-color: #8BA3FB;
    --splusslider-primary-hover: #7691f9;
    --splusslider-text-color: #ffffff;
    --splusslider-secondary-text: #ffffff;
    --splusslider-dark-bg: #111111;
    --splusslider-border-color: #222222;
}

.splusslider-hero-slider {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../../assets/img/slider-2.webp');
    background-size: cover;
    background-position: center;
    color: var(--splusslider-text-color);
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.splusslider-hero-content {
    padding-left: 15px;
    position: relative;
    z-index: 2;
}

.splusslider-hero-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

.splusslider-hero-subtitle {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.splusslider-hero-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 600px;
    color: rgba(255, 255, 255, 1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.splusslider-features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 5px;
    margin-bottom: 30px;
    max-width: 450px;
}

.splusslider-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.splusslider-check-icon {
    background-color: white;
    color: #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.splusslider-feature-text {
    font-size: 16px;
    font-weight: 500;
}

.splusslider-cta-button {
    background-color: var(--btn-primary-bg);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
}

.splusslider-cta-button:focus,
.splusslider-cta-button:focus-visible,
.splusslider-cta-button:active,
.splusslider-cta-button:hover {
    background-color: var(--btn-primary-bg-hover) !important;
}

.splusslider-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    transition: left 0.7s;
}

.splusslider-cta-button:hover::before {
    left: 100%;
}

.splusslider-server-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.splusslider-virtual-server {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.splusslider-virtual-server::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--splusslider-primary-color);
    box-shadow: 0 0 15px var(--splusslider-primary-color);
}

.splusslider-server-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    animation: splusslider-blink 3s infinite;
}

.splusslider-server-light.splusslider-green {
    background: var(--splusslider-primary-color);
    box-shadow: 0 0 8px var(--splusslider-primary-color);
    animation-delay: 0.5s;
}

.splusslider-server-light.splusslider-blue {
    background: #2196F3;
    box-shadow: 0 0 8px #2196F3;
    animation-delay: 1s;
}

.splusslider-server-light.splusslider-red {
    background: #F44336;
    box-shadow: 0 0 8px #F44336;
    animation-delay: 1.5s;
}

.splusslider-virtual-instances {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.splusslider-instance {
    background: var(--splusslider-dark-bg);
    border-radius: 4px;
    padding: 10px;
    border: 1px solid var(--splusslider-border-color);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.splusslider-instance:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.splusslider-instance-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.splusslider-instance-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--splusslider-text-color);
    margin-left: 8px;
}

.splusslider-instance-detail {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--splusslider-secondary-text);
    margin-bottom: 4px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.splusslider-instance-detail:last-child {
    margin-bottom: 0;
}

.splusslider-instance-value {
    color: var(--splusslider-primary-color);
    font-weight: 500;
}

.splusslider-server-specs {
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.splusslider-spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}

.splusslider-spec-item:last-child {
    margin-bottom: 0;
}

.splusslider-spec-name {
    color: var(--splusslider-secondary-text);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.splusslider-spec-value {
    color: var(--splusslider-text-color);
    font-weight: 500;
}

.splusslider-spec-value span {
    color: var(--splusslider-primary-color);
    font-weight: 500;
}

.splusslider-stat-bar {
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    margin-left: 5px;
}

.splusslider-stat-fill {
    height: 100%;
    background: var(--splusslider-primary-color);
    width: 0;
    animation: splusslider-fillBar 5s infinite;
}

@keyframes splusslider-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes splusslider-fillBar {
    0% {
        width: 20%;
    }
    50% {
        width: 80%;
    }
    100% {
        width: 20%;
    }
}

/* Extra large screens (1400px and up) */
@media (min-width: 1400px) {
    .splusslider-hero-title, .splusslider-hero-subtitle {
        font-size: 48px;
    }

    .splusslider-hero-text {
        font-size: 18px;
    }

    .splusslider-virtual-server {
        max-width: 400px;
    }

    .splusslider-instance-name {
        font-size: 14px;
    }

    .splusslider-instance-detail {
        font-size: 12px;
    }

    .splusslider-spec-item {
        font-size: 14px;
    }

    .splusslider-feature-text {
        font-size: 17px;
    }

    .splusslider-check-icon {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }
}

/* Large screens (992px to 1399px) */
@media (min-width: 992px) and (max-width: 1399px) {
    .splusslider-hero-title, .splusslider-hero-subtitle {
        font-size: 38px;
    }

    .splusslider-virtual-server {
        max-width: 320px;
    }
}

/* Medium screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .splusslider-hero-slider {
        padding: 50px 0;
    }

    .splusslider-hero-title, .splusslider-hero-subtitle {
        font-size: 34px;
    }

    .splusslider-hero-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .splusslider-features-container {
        margin-bottom: 25px;
    }

    .splusslider-feature-text {
        font-size: 15px;
    }

    .splusslider-virtual-server {
        max-width: 450px;
        margin: 30px auto 0;
    }

    .splusslider-virtual-instances {
        grid-template-columns: repeat(2, 1fr);
    }

    .splusslider-server-visual {
        margin-top: 20px;
    }
}

/* Small screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .splusslider-hero-slider {
        padding: 40px 0;
    }

    .splusslider-hero-title, .splusslider-hero-subtitle {
        font-size: 32px;
    }

    .splusslider-hero-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .splusslider-features-container {
        margin-bottom: 25px;
    }

    .splusslider-feature-text {
        font-size: 14px;
    }

    .splusslider-server-visual {
        margin-top: 30px;
    }

    .splusslider-virtual-server {
        max-width: 100%;
    }

    .splusslider-virtual-instances {
        grid-template-columns: repeat(2, 1fr);
    }

    .splusslider-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Extra small screens (up to 575px) */
@media (max-width: 575px) {
    .splusslider-hero-slider {
        padding: 30px 0;
    }

    .splusslider-hero-title, .splusslider-hero-subtitle {
        font-size: 28px;
    }

    .splusslider-hero-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .splusslider-features-container {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .splusslider-feature-item {
        margin-bottom: 5px;
    }

    .splusslider-feature-text {
        font-size: 14px;
    }

    .splusslider-cta-button {
        padding: 10px 25px;
        font-size: 15px;
        width: 100%;
    }

    .splusslider-server-visual {
        margin-top: 30px;
    }

    .splusslider-virtual-server {
        max-width: 100%;
        padding: 12px;
    }

    .splusslider-virtual-instances {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .splusslider-instance {
        padding: 8px;
    }

    .splusslider-server-specs {
        padding: 10px;
    }
}

/* Very small screens (up to 375px) */
@media (max-width: 375px) {
    .splusslider-hero-title, .splusslider-hero-subtitle {
        font-size: 26px;
    }

    .splusslider-hero-text {
        font-size: 13px;
    }

    .splusslider-check-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .splusslider-feature-text {
        font-size: 13px;
    }

    .splusslider-instance-name {
        font-size: 12px;
    }

    .splusslider-instance-detail {
        font-size: 10px;
    }

    .splusslider-spec-item {
        font-size: 12px;
    }

    .splusslider-hero-slider {
        padding: 25px 0;
    }
}

/* Portrait orientation for mobile devices */
@media (max-width: 767px) and (orientation: portrait) {
    .splusslider-virtual-instances {
        grid-template-columns: 1fr;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 767px) and (orientation: landscape) {
    .splusslider-virtual-instances {
        grid-template-columns: repeat(2, 1fr);
    }

    .splusslider-hero-slider {
        min-height: auto;
        padding: 30px 0;
    }
}

/* High-DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .splusslider-hero-text, .splusslider-feature-text, .splusslider-instance-detail, .splusslider-spec-name, .splusslider-spec-value {
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5);
    }
}

/* Print styles */
@media print {
    .splusslider-wrapper {
        background: white !important;
        color: black !important;
    }

    .splusslider-hero-slider {
        background-image: none !important;
        min-height: auto !important;
        padding: 20px 0 !important;
    }

    .splusslider-hero-title, .splusslider-hero-subtitle, .splusslider-hero-text, .splusslider-feature-text {
        color: black !important;
        text-shadow: none !important;
    }

    .splusslider-cta-button {
        display: none !important;
    }
}

/* Anasayfa Slider Bitis */

/* ServerPlus Anasayfa Wp Reklam  */

.wpreklam-custom-banner {
    padding: 18px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.wpreklam-custom-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.wpreklam-custom-banner .container {
    position: relative;
    z-index: 2;
}

.wpreklam-custom-banner h2 {
    font-size: 24px;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 600;
}

.wpreklam-btn {
    font-size: 16px;
    padding: 6px 16px;
    margin-left: 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.wpreklam-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.wpreklam-btn:hover::before {
    left: 100%;
}

.wpreklam-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .wpreklam-custom-banner {
        padding: 15px 0;
    }

    .wpreklam-custom-banner h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .wpreklam-btn {
        font-size: 14px;
        padding: 5px 14px;
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .wpreklam-custom-banner h2 {
        font-size: 18px;
    }

    .wpreklam-btn {
        font-size: 12px;
        padding: 4px 12px;
    }
}

/* ServerPlus Anasayfa Wp Reklam Bitis  */

/* ServerPlus Anasayfa Partnerler */

.xtpartner-partners-section {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

.xtpartner-partner-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    height: 28px;
    width: auto;
    transition: all 0.3s ease;
}

.xtpartner-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.xtpartner-partner-divider {
    width: 1px;
    height: 40px;
    background-color: #e5e7eb;
    margin: 0 0.125rem;
}

.xtpartner-awesome-partners-text {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.xtpartner-partner-logo-container {
    margin: 0 0.125rem;
    overflow: hidden;
    position: relative;
}

.xtpartner-partner-logo-container:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.13) 0%,
            rgba(255, 255, 255, 0.13) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 0.0) 100%
    );
}

.xtpartner-partner-logo-container:hover:after {
    opacity: 1;
    left: 130%;
    transition: all 0.7s ease-in-out;
}

.xtpartner-partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .xtpartner-partners-section {
        display: none;
    }
}

/* ServerPlus Anasayfa Partnerler Bitis */

/* ServerPlus Boşluk Bırakma */
.xtema-br {
    display: block;
    height: 1em; /* Bu, satÄ±r aralÄ±ÄŸÄ±nÄ± ayarlamak iÃ§in kullanÄ±labilir */
}

/* ServerPlus Boşluk Bırakma Bitis */


/* ServerPlus AnaSayfa Domain Sorgulama */


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xdomains-bg-custom-blue {
    background-color: #0055FB;
}

.xdomains-bg-custom-yellow {
    background-color: #FFB800;
}

.xdomains-text-custom-dark {
    color: #0A2540;
}

.xdomains-promotion-bg {
    background-image: url('../img/domain-back.avif');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.xdomains-promotion-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    transition: backdrop-filter 0.3s ease;
}

.xdomains-promotion-bg:hover::before {
    backdrop-filter: blur(2px);
}

.xdomains-promotion-content {
    position: relative;
    z-index: 1;
}

.xdomains-domain-card {
    transition: transform 0.3s ease;
}

.xdomains-domain-card:hover {
    transform: translateY(-5px);
}

.xdomains-nav-tabs .nav-link {
    color: #424867;
    font-weight: 600;
    border: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.xdomains-nav-tabs .nav-link:hover,
.xdomains-nav-tabs .nav-link.active {
    color: #0055FB;
    background-color: transparent;
    border-bottom: 2px solid #0055FB;
}

.xdomains-nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.xdomains-promotion-badge {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xdomains-promotion-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.xdomains-promotion-title {
    transition: transform 0.3s ease;
}

.xdomains-promotion-title:hover {
    transform: translateY(-3px);
}

.xdomains-promotion-subtitle {
    transition: transform 0.3s ease;
}

.xdomains-promotion-subtitle:hover {
    transform: translateX(5px);
}

.xdomains-promotion-button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xdomains-promotion-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.xdomains-promotion-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xdomains-promotion-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.xdomains-btn-custom-blue {
    background: linear-gradient(to right, #3B4B8C, #2C3A7D);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.xdomains-btn-custom-blue:hover {
    background: linear-gradient(to right, #2C3A7D, #1C2A6D);
    color: white;
    transform: translateY(-2px);
}

.xdomains-domain-card .card-body {
    min-height: 80px;
    padding: 0.5rem;
}

.xdomains-domain-logo {
    max-height: 25px;
    width: auto;
    margin-bottom: 0.5rem;
}

.xdomains-domain-price {
    font-size: 0.8rem;
}

.xdomains-domain-price .xdomains-original-price {
    font-size: 0.7rem;
}

.xdomains-domain-price .xdomains-current-price {
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .xdomains-display-6 {
        font-size: 1.75rem;
    }

    .xdomains-lead {
        font-size: 0.9rem;
    }

    .xdomains-nav-tabs .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.4rem;
    }

    .xdomains-promotion-title {
        font-size: 2rem;
    }

    .xdomains-promotion-subtitle {
        font-size: 1rem;
    }

    .xdomains-domain-card .card-body {
        min-height: 70px;
    }

    .xdomains-domain-logo {
        max-height: 20px;
    }

    .xdomains-domain-price {
        font-size: 0.7rem;
    }

    .xdomains-domain-price .xdomains-original-price {
        font-size: 0.6rem;
    }

    .xdomains-domain-price .xdomains-current-price {
        font-size: 0.8rem;
    }
}


/* ServerPlus AnaSayfa Domain Sorgulama Bitis */

/* ServerPlus Populer Paketler */

body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xpaket1-feature-icon {
    width: 20px;
    height: 20px;
    color: #6c757d;
    stroke-width: 1.5;
}

.xpaket1-price-card {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    border-top: 5px solid var(--btn-hover);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.xpaket1-discount-badge {
    background-color: #ffd54f;
    color: #000;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
}

.xpaket1-old-price {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 0.8em;
    margin-bottom: 2px;
}

.xpaket1-btn-purchase {
    background-color: #90a4e0;
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 0;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.xpaket1-btn-purchase:hover {
    background-color: #7a91d4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(122, 145, 212, 0.3);
}

.xpaket1-specs-row {
    padding: 10px 0;
    border-bottom: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.xpaket1-specs-row:hover {
    background-color: #f8f9fa;
    border-bottom-color: #adb5bd;
}

.xpaket1-specs-row:last-of-type {
    border-bottom: none;
}

.xpaket1-server-type {
    color: #6c757d;
    font-size: 0.65em;
    letter-spacing: 1px;
    margin-top: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.xpaket1-form-select {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.85em;
    color: #495057;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.xpaket1-form-select:focus {
    border-color: #90a4e0;
    box-shadow: 0 0 0 0.2rem rgba(144, 164, 224, 0.25);
}

.xpaket1-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #212529;
    line-height: 1;
}

.xpaket1-price-decimal {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: super;
}

.xpaket1-price-period {
    color: #6c757d;
    font-size: 0.8em;
    margin-top: 2px;
    font-weight: 400;
}

.xpaket1-spec-label {
    font-size: 0.75em;
    color: #343a40;
    margin-bottom: 1px;
    font-weight: 700;
}

.xpaket1-spec-value {
    font-size: 0.7em;
    color: #6c757d;
    font-weight: 400;
}

.xpaket1-h3 {
    font-weight: 800;
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 2px;
}

.xpaket1-container {
    max-width: 1200px;
}

.xpaket1-server-title {
    border-bottom: 3px solid #dee2e6;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.xpaket1-price-section {
    border-top: 3px solid #dee2e6;
    padding-top: 20px;
    margin-top: auto;
}

.xpaket1-price-card:hover .xpaket1-server-title,
.xpaket1-price-card:hover .xpaket1-price-section {
    border-color: #adb5bd;
}

.xpaket1-specs-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

@media (max-width: 1399.98px) {
    .xpaket1-container {
        max-width: 1140px;
    }
}

@media (max-width: 1199.98px) {
    .xpaket1-container {
        max-width: 960px;
    }

    .xpaket1-price-amount {
        font-size: 2rem;
    }

    .xpaket1-spec-label, .xpaket1-spec-value {
        font-size: 0.7em;
    }
}

@media (max-width: 991.98px) {
    .xpaket1-container {
        max-width: 720px;
    }

    .xpaket1-price-card {
        margin-bottom: 20px;
    }

    .xpaket1-price-amount {
        font-size: 1.8rem;
    }

    .xpaket1-h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .xpaket1-container {
        max-width: 540px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .xpaket1-price-card {
        padding: 15px;
    }

    .xpaket1-specs-container {
        padding: 8px;
    }

    .xpaket1-specs-row {
        padding: 8px 0;
    }

    .xpaket1-server-title {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }

    .xpaket1-price-section {
        padding-top: 15px;
    }

    .xpaket1-price-amount {
        font-size: 1.6rem;
    }

    .xpaket1-btn-purchase {
        padding: 8px 0;
        font-size: 0.85em;
    }
}

@media (max-width: 575.98px) {
    .xpaket1-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .xpaket1-price-card {
        padding: 12px;
    }

    .xpaket1-specs-container {
        padding: 6px;
    }

    .xpaket1-specs-row {
        padding: 6px 0;
    }

    .xpaket1-price-amount {
        font-size: 1.4rem;
    }

    .xpaket1-spec-label, .xpaket1-spec-value {
        font-size: 0.65em;
    }

    .xpaket1-server-title {
        padding-bottom: 10px;
        margin-bottom: 12px;
    }

    .xpaket1-price-section {
        padding-top: 12px;
    }
}

.xpaket1-section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.xpaket1-section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}

.xpaket1-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, #42b8d4, transparent);
    margin: 20px auto 30px;
    width: 80%;
    max-width: 300px;
}

/* ServerPlus Populer Paketler Bitis */

/* Kürsel Düşün Yerel Barındır */

.netmap-global-network {
    overflow: hidden;
    /* Root değişkenleri buraya taşındı */
    --secondary-color: #818cf8;
    --accent-color: #90a4e0;
    --background-color: #f3f4f6;
    --card-color: #90a4e0;
    --card-text-color: #2d3748;
    --card-title-color: #1a202c;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.netmap-global-network h2,
.netmap-global-network h5 {
    font-weight: 700;
    color: var(--white);
}

.netmap-global-network p {
    color: var(--text-color);
}

.netmap-map-wrapper, .netmap-card-wrapper {
    position: relative;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.netmap-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: saturate(1.2) contrast(1.1);
}

.netmap-map-container:hover .netmap-map-image {
    opacity: 0.9;
}

.netmap-location-marker {
    position: absolute;
    background-color: var(--btn-primary-bg);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 2px solid white;
}

.netmap-location-marker .netmap-sublabel {
    opacity: 0.9;
    font-size: 0.7rem;
    font-weight: 500;
}

.netmap-fade-in {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.netmap-fade-in.netmap-visible {
    opacity: 1;
    transform: translateY(0);
}

.netmap-modern-card {
    background: linear-gradient(145deg, #ffffff, var(--background-color));
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.netmap-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.netmap-modern-card-header {
    background: linear-gradient(145deg, var(--btn-primary-bg), var(--btn-hover));
    color: white;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 1rem;
    font-weight: 700;
}

.netmap-modern-card-body {
    padding: 1.25rem;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--card-text-color);
}

.netmap-modern-card-body h6 {
    color: var(--card-title-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.netmap-info-item {
    transition: all 0.3s ease;
    padding: 0.4rem;
    border-radius: 0.5rem;
}

.netmap-info-item:hover {
    background-color: rgba(144, 164, 224, 0.1);
    transform: translateX(5px);
}

.netmap-info-icon {
    font-size: 1.2rem;
    color: var(--card-color);
    margin-right: 0.5rem;
}

.netmap-line-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgb(0 0 0 / 30%);
    border-radius: 1.2rem;
    z-index: -1;
}

.netmap-line-effect::before, .netmap-line-effect::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
}

.netmap-line-effect::before {
    top: 20px;
    bottom: 20px;
    left: -2px;
    width: 2px;
}

.netmap-line-effect::after {
    left: 20px;
    right: 20px;
    top: -2px;
    height: 2px;
}

.netmap-map-wrapper .netmap-line-effect {
    border-color: rgba(0 0 0 / 30%);
}

.netmap-map-wrapper .netmap-line-effect::before,
.netmap-map-wrapper .netmap-line-effect::after {
    background-color: rgba(255, 255, 255, 0.4);
}

.netmap-pulse {
    animation: netmap-pulse 2s infinite;
}

@keyframes netmap-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .netmap-location-marker {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
    }

    .netmap-modern-card-header h5 {
        font-size: 1rem;
    }

    .netmap-modern-card-body {
        font-size: 0.8rem;
    }

    .netmap-info-item {
        padding: 0.3rem;
    }

    .netmap-info-icon {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .netmap-location-marker {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .netmap-modern-card-header h5 {
        font-size: 1.1rem;
    }

    .netmap-modern-card-body {
        font-size: 0.85rem;
    }
}

.netmap-connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.netmap-connection-line {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    animation: netmap-dash 30s linear infinite;
}

@keyframes netmap-dash {
    to {
        stroke-dashoffset: 1000;
    }
}

#netmap-locationDescription {
    font-weight: 500;
    color: var(--card-title-color);
}

/* Kürsel Düşün Yerel Barındır Bitis */

/* ServerPlus BannerV1 */


.xbanner1 .banner-wrapper {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    transition: padding 0.3s ease;
}

.xbanner1 .banner-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80%;
    height: 140%;
    background-color: #e8f3ff;
    transform: rotate(-12deg);
    z-index: -1;
    transition: all 0.3s ease;
}

.xbanner1 .banner-image {
    border-radius: 15px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xbanner1 .banner-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.xbanner1 .banner-type {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.xbanner1 .banner-type:hover {
    background-color: var(--btn-hover);
    color: white;
    border-color: #8B9AFF;
}

.xbanner1 .price-text {
    font-size: 1.75rem;
    font-weight: 600;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.xbanner1 .price-period {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

.xbanner1 .btn-custom {
    background-color: #8B9AFF;
    border: none;
    color: white;
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(139, 154, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.xbanner1 .btn-custom:hover {
    background-color: #7A88FF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(139, 154, 255, 0.3);
}

.xbanner1 .btn-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.xbanner1 .btn-custom:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.xbanner1 h1.display-4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.xbanner1 .lead {
    font-weight: 500;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s ease;
}

.xbanner1 .lead:hover {
    color: #333;
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 1399.98px) {
    .xbanner1 .banner-wrapper {
        padding: 2.75rem 0;
    }

    .xbanner1 h1.display-4 {
        font-size: 2.75rem;
    }
}

@media (max-width: 1199.98px) {
    .xbanner1 .banner-wrapper {
        padding: 2.5rem 0;
    }

    .xbanner1 h1.display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .xbanner1 .banner-wrapper {
        padding: 2rem 0;
    }

    .xbanner1 .banner-bg {
        width: 100%;
        right: -20%;
    }

    .xbanner1 h1.display-4 {
        font-size: 2rem;
    }

    .xbanner1 .price-text {
        font-size: 1.5rem;
        display: block;
        margin: 1rem 0 0 0;
    }
}

@media (max-width: 767.98px) {
    .xbanner1 .banner-wrapper {
        padding: 1.5rem 0;
    }

    .xbanner1 h1.display-4 {
        font-size: 1.75rem;
    }

    .xbanner1 .lead {
        font-size: 1rem;
    }

    .xbanner1 .btn-custom {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .xbanner1 .price-text {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .xbanner1 .banner-type {
        font-size: 12px;
        padding: 4px 12px;
    }

    .xbanner1 .banner-wrapper {
        padding: 1rem 0;
    }

    .xbanner1 h1.display-4 {
        font-size: 1.5rem;
    }

    .xbanner1 .lead {
        font-size: 0.9rem;
    }

    .xbanner1 .price-text {
        font-size: 1.25rem;
    }

    .xbanner1 .price-period {
        font-size: 0.875rem;
    }
}

/* ServerPlus Banner V1 Bitis */


/* ServerPlus Footer Anket */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xromlbtn-custom {
    background-color: var(--btn-primary-bg);
    border-color: var(--btn-primary-bg);
    padding: 0.375rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(63, 78, 216, 0.1);
    font-weight: 500;
    height: auto !important;
}

.xromlbtn-custom:hover, .xromlbtn-custom:focus {
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(63, 78, 216, 0.2);
}

.xromlbtn-custom:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(63, 78, 216, 0.2);
}

.xromlbtn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    transition: 0.5s;
}

.xromlbtn-custom:hover::before {
    left: 100%;
}

.xromlform-control {
    height: calc(1.5em + 0.75rem + 2px);
    font-size: 0.875rem;
    border-color: #E2E8F0;
    transition: all 0.3s ease;
}

.xromlform-control:focus {
    border-color: #4F5EF8;
    box-shadow: 0 0 0 0.2rem rgba(79, 94, 248, 0.25);
    transform: translateY(-1px);
}

.xromltext-custom {
    color: #1A1F37;
    font-size: 1.25rem;
}

.xromlheader-container {
    min-height: 65px;
}

@media (max-width: 991.98px) {
    .xromlheader-item {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.75rem;
    }

    .xromlheader-container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .xromlheader-item .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .xromlbtn-custom {
        width: 100%;
        max-width: 200px;
    }
}

@media (min-width: 992px) {
    .xromlheader-container {
        height: 65px;
    }
}


/* ServerPlus Footer Anket Bitis */

/* ServerPlus cPanel Slider */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.cpslider-section {
    background-image: url('../img/xslider-cpanel.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.cpslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.cpslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.cpslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.cpslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.cpslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.cpslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.cpslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.cpslider-cta-button {
    background-color: #90a4e0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.cpslider-cta-button:hover {
    background-color: #7b8fc7;
    color: white;
}

.cpslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.cpslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.cpslider-contact-link:hover {
    text-decoration: underline;
}

.cpslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.cpslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .cpslider-content {
        margin-left: 50px;
    }

    .cpslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .cpslider-content {
        margin-left: 40px;
    }

    .cpslider-main-title {
        font-size: 2rem;
    }

    .cpslider-subtitle {
        font-size: 0.95rem;
    }

    .cpslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .cpslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .cpslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .cpslider-main-title {
        font-size: 1.8rem;
    }

    .cpslider-subtitle {
        font-size: 0.9rem;
    }

    .cpslider-feature-list li {
        font-size: 0.8rem;
    }

    .cpslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .cpslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .cpslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .cpslider-main-title {
        font-size: 1.5rem;
    }

    .cpslider-small-title {
        font-size: 0.7rem;
    }

    .cpslider-subtitle {
        font-size: 0.85rem;
    }

    .cpslider-feature-list li {
        font-size: 0.75rem;
    }

    .cpslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .cpslider-contact-text {
        font-size: 0.7rem;
    }

    .cpslider-logo {
        max-width: 100px;
    }
}

/* ServerPlus cPanel Slider Bitis */

/* ServerPlus Fiziksel Slider */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.fizikselslider-section {
    background-image: url('../img/xslider-vps.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.fizikselslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.fizikselslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.fizikselslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.fizikselslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.fizikselslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.fizikselslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.fizikselslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.fizikselslider-cta-button {
    background-color: #90a4e0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.fizikselslider-cta-button:hover {
    background-color: #7b8fc7;
    color: white;
}

.fizikselslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.fizikselslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.fizikselslider-contact-link:hover {
    text-decoration: underline;
}

.fizikselslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.fizikselslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .fizikselslider-content {
        margin-left: 50px;
    }

    .fizikselslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .fizikselslider-content {
        margin-left: 40px;
    }

    .fizikselslider-main-title {
        font-size: 2rem;
    }

    .fizikselslider-subtitle {
        font-size: 0.95rem;
    }

    .fizikselslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .fizikselslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .fizikselslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .fizikselslider-main-title {
        font-size: 1.8rem;
    }

    .fizikselslider-subtitle {
        font-size: 0.9rem;
    }

    .fizikselslider-feature-list li {
        font-size: 0.8rem;
    }

    .fizikselslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .fizikselslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .fizikselslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .fizikselslider-main-title {
        font-size: 1.5rem;
    }

    .fizikselslider-small-title {
        font-size: 0.7rem;
    }

    .fizikselslider-subtitle {
        font-size: 0.85rem;
    }

    .fizikselslider-feature-list li {
        font-size: 0.75rem;
    }

    .fizikselslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .fizikselslider-contact-text {
        font-size: 0.7rem;
    }

    .fizikselslider-logo {
        max-width: 100px;
    }
}

/* ServerPlus Fiziksel Slider Bitis */
/* Windows Hosting Yönlendirme */


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.xcpwin-banner-text {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    color: #333;
    font-weight: 400;
}

.xcpwin-windows-icon {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    vertical-align: middle;
}

.xcpwin-highlight {
    font-weight: 700;
    color: #0056b3;
}

.xcpwin-windows-hosting-text {
    white-space: nowrap;
}

/* Tablet ve küçük masaüstü ekranlar için */
@media (max-width: 991px) {
    .xcpwin-banner-text {
        font-size: 16px;
    }

    .xcpwin-windows-icon {
        width: 18px;
        height: 18px;
    }
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 767px) {
    .xcpwin-hosting-banner {
        padding: 10px 15px;
    }

    .xcpwin-banner-text {
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .xcpwin-windows-icon {
        width: 16px;
        height: 16px;
    }
}

/* Çok küçük ekranlar için ek optimizasyon */
@media (max-width: 375px) {
    .xcpwin-banner-text {
        font-size: 12px;
    }

    .xcpwin-windows-icon {
        width: 14px;
        height: 14px;
    }
}

/* Banner hover efekti */
.xcpwin-hosting-banner:hover {
    background: linear-gradient(to right, #00a0e361, #00a0e35c);
    transition: background 0.3s ease;
}

/* Link stili */
.xcpwin-hosting-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.xcpwin-hosting-link:hover {
    color: inherit;
}


/* Windows Hosting Yönlendirme Bitiş */

/* Hosting Ortak Özellikler */

.xt-feature-card {
    padding: 1.5rem;
    height: 100%;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.xt-feature-card:hover {
    transform: translateY(-0.3125rem);
}

.xt-section-title {
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
}

.xt-section-subtitle {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.xt-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.xt-title {
    display: flex;
    align-items: center;
    min-height: 3rem;
    font-weight: 500;
}

.xt-hosting-features {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #333;
}

.xt-hosting-features h3 {
}

.xt-feature-card p {
    font-weight: 400;
}

@media (max-width: 575.98px) {
    .xt-feature-card {
        padding: 1rem;
    }

    .xt-title-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .xt-feature-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .xt-hosting-features h3 {
        font-size: 1rem;
    }

    .xt-section-title {
        font-size: 2rem;
    }
}

/* Hosting Ortak Özellikler Bitiş */

/* Paket Karşılaştırma */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: var(--background-color);
    font-size: 16px;
    color: var(--text-color);
}

.xkarsill-container {
    max-width: 1300px;
    padding: 0 15px;
    margin: 0 auto;
}

h1 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 2.2rem;
}

.xkarsill-subtitle {
    font-weight: 400;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.xkarsill-table-custom {
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.xkarsill-table-custom:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}

.xkarsill-table-custom th,
.xkarsill-table-custom td {
    border: 1px solid #d1d8e0;
    padding: 0.75rem;
    transition: all 0.3s ease;
    line-height: 1.4;
    width: 20%;
}

.xkarsill-table-custom thead th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #7691d6;
    font-size: 0.95rem;
}

.xkarsill-table-custom tbody tr:nth-of-type(odd) {
    background-color: rgba(144, 164, 224, 0.05);
}

.xkarsill-table-custom tbody tr:hover {
    background-color: rgba(144, 164, 224, 0.1);
}

.xkarsill-table-custom tbody th {
    font-weight: 500;
    color: var(--karsilatirma-ozel);
    background-color: rgba(0, 160, 227, 0.1) !important;
    border-right: none;
    font-size: 0.95rem;
}

.xkarsill-check-icon {
    color: #2ecc71;
    font-size: 1.3rem;
    font-weight: 600;
}

.xkarsill-cross-icon {
    color: #e74c3c;
    font-size: 1.3rem;
    font-weight: 600;
}

.xkarsill-feature-background {
    background-color: rgba(144, 164, 224, 0.05) !important;
}

.xkarsill-feature-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
    color: var(--karsilatirma-ozel);
}

.xkarsill-feature-title::after {
    content: '\F282';
    font-family: 'Bootstrap-icons';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.xkarsill-feature-title.collapsed::after {
    transform: rotate(-90deg);
}

.xkarsill-feature-description {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: #34495e;
    padding: 1rem;
    background-color: rgba(144, 164, 224, 0.05);
    border-radius: 6px;
    margin-top: 0.75rem;
    border-left: 3px solid var(--primary-color);
}

.xkarsill-btn-custom {
    width: 100%;
    padding: 10px 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    background-color: #6c8ce3;
    border: none;
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
}

.xkarsill-btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 140, 227, 0.3);
    background-color: #5a7ad9;
}

.xkarsill-price-container {
    position: relative;
    padding: 0;
    margin-top: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xkarsill-discount-badge {
    position: static;
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2px;
    animation: xkarsill-pulse 2s infinite;
}

.xkarsill-price-content {
    text-align: center;
    width: 100%;
}

.xkarsill-original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.2;
}

.xkarsill-current-price {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    color: var(--karsilatirma-ozel);
}

.xkarsill-price-period {
    color: #666;
    font-size: 0.8rem;
    margin-top: -2px;
    margin-bottom: 8px;
}

.xkarsill-table-custom td {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--karsilatirma-ozel);
}

.xkarsill-feature-value {
    font-weight: 500;
    color: var(--karsilatirma-ozel);
    display: block;
    margin: 4px 0;
}

.xkarsill-recommended-text {
    font-size: 0.7em;
    color: white;
    background-color: var(--accent-color);
    margin-left: 5px;
    padding: 2px 4px;
    border: 1px solid var(--accent-color);
    border-radius: 3px;
    display: inline-block;
    animation: xkarsill-blink 2s infinite;
    font-weight: 600;
}

@keyframes xkarsill-blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes xkarsill-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.xkarsill-table-responsive {
    overflow-x: auto;
}

@media (max-width: 991px) {
    h1 {
        font-size: 1.8rem;
    }

    .xkarsill-subtitle {
        font-size: 1rem;
    }

    .xkarsill-btn-custom {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .xkarsill-table-custom {
        border: none;
        box-shadow: none;
    }

    .xkarsill-table-custom thead {
        display: none;
    }

    .xkarsill-table-custom, .xkarsill-table-custom tbody, .xkarsill-table-custom tr, .xkarsill-table-custom td {
        display: block;
        width: 100%;
    }

    .xkarsill-table-custom tr {
        margin-bottom: 1rem;
        border-radius: 12px;
        overflow: hidden;
    }

    .xkarsill-table-custom td {
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    .xkarsill-table-custom td::before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        text-align: left;
    }

    .xkarsill-table-custom tbody th {
        text-align: center;
        color: white;
        border-bottom: 2px solid #7691d6;
    }

    .xkarsill-feature-title::after {
        display: none;
    }

    .xkarsill-feature-description {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .xkarsill-price-container {
        padding: 1rem;
    }
}

/* Paket Karşılaştırma Bitiş */

/* ServerPlus Hosting Avantajları */

.ServerPlus-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.ServerPlus-text-navy {
    color: #333;
    letter-spacing: -0.3px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ServerPlus-text-navy:hover {
    color: var(--btn-hover);
    transform: translateY(-2px);
}

.ServerPlus-bg-light-custom {
    background-color: #f8f9fa;
}

.ServerPlus-section-container {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.ServerPlus-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.ServerPlus-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.ServerPlus-image-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.ServerPlus-image-container:hover img {
    transform: scale(1.02);
}

.ServerPlus-list {
    padding-left: 20px;
    margin-bottom: 1rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.ServerPlus-list li {
    margin-bottom: 0.3rem;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.2px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ServerPlus-list li:hover {
    transform: translateX(5px);
    color: var(--btn-hover);
}

h1.display-5 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    font-weight: 600;
}

h2.display-6 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .ServerPlus-section-container {
        padding: 30px 0;
    }

    .ServerPlus-content-section {
        text-align: left;
        margin-bottom: 20px;
    }

    .ServerPlus-list {
        text-align: left;
        padding-left: 15px;
    }

    h1.display-5 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    h2.display-6 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .ServerPlus-text, .ServerPlus-list li {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .ServerPlus-content-section {
        padding-right: 1rem;
    }

    .order-lg-2 .ServerPlus-content-section {
        padding-right: 0;
        padding-left: 1rem;
    }
}

/* ServerPlus Hosting Avantajları Bitis */

/* ServerPlus Hosting Paketleri */
.splushp-root {
    --primary-color: #00a0e3;
    --primary-light: rgba(0, 160, 227, 0.08);
    --secondary-color: #28a745;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --popular-color: #f39c12;
    --popular-dark: #e67e22;
}

.splushp-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: #f9f9f9;
    color: var(--text-color);
}

.splushp-container {
    max-width: 1400px;
    padding: 0 15px;
}

.splushp-page-title {
    text-align: center;
    margin-bottom: 40px;
}

.splushp-page-title h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.splushp-page-title p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.splushp-hosting-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Popular package styling */
.splushp-hosting-package.splushp-popular .splushp-hosting-card {
    border: 2px solid var(--popular-color);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.splushp-hosting-package.splushp-popular .splushp-hosting-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.splushp-card-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a56b5 100%);
    position: relative;
    overflow: hidden;
}

.splushp-hosting-package.splushp-popular .splushp-card-header {
    background: linear-gradient(135deg, var(--popular-color) 0%, var(--popular-dark) 100%);
    padding-top: 30px; /* Extra space for the popular badge */
}

.splushp-popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--popular-dark);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 0;
    text-align: center;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.splushp-popular-badge i {
    margin-right: 4px;
    font-size: 0.8rem;
}

.splushp-card-header:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.splushp-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
}

.splushp-card-header h3 span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 8px;
    opacity: 0.9;
}

.splushp-card-header small {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    display: block;
    margin-top: 3px;
}

.splushp-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Improved price container */
.splushp-price-container {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 18px;
    text-align: center;
    position: relative;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.splushp-hosting-package.splushp-popular .splushp-price-container {
    background: linear-gradient(to bottom, #fff9e6, #fef5d4);
    border: 1px solid #f5d76e;
}

.splushp-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
    display: inline-flex;
    align-items: flex-start;
}

.splushp-hosting-package.splushp-popular .splushp-price {
    color: var(--popular-dark);
}

.splushp-currency {
    font-size: 1rem;
    margin-right: 2px;
    margin-top: 4px;
    font-weight: 600;
}

.splushp-period {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 400;
    margin-left: 4px;
    align-self: flex-end;
}

.splushp-price-divider {
    width: 30px;
    height: 2px;
    background: var(--primary-light);
    margin: 8px auto;
    border-radius: 2px;
}

.splushp-hosting-package.splushp-popular .splushp-price-divider {
    background: #f5d76e;
}

.splushp-annual-price {
    font-size: 0.75rem;
    color: #495057;
    font-weight: 300;
}

.splushp-badge-container {
    position: absolute;
    top: -10px;
    right: 15px;
}

.splushp-badge-custom {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    background-color: var(--primary-color) !important;
    color: white !important;
}

.splushp-hosting-package.splushp-popular .splushp-badge-custom {
    background-color: var(--popular-dark) !important;
}

/* Technology logos section */
.splushp-tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #e0e0e0;
}

.splushp-hosting-package.splushp-popular .splushp-tech-logos {
    background-color: #fff9e6;
    border: 1px dashed #f5d76e;
}

.splushp-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    position: relative;
}

.splushp-tech-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.splushp-tech-logo:hover {
    transform: scale(1.05);
}

/* SVG icons styling */
.splushp-svg-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Improved feature sections */
.splushp-features-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.splushp-feature-section {
    background-color: #fcfcfc;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #f0f0f0;
}

.splushp-hosting-package.splushp-popular .splushp-feature-section {
    background-color: #fffcf2;
    border: 1px solid #faebc8;
}

.splushp-feature-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
}

.splushp-hosting-package.splushp-popular .splushp-feature-title {
    border-bottom: 2px solid #f5d76e;
}

.splushp-feature-title i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 1rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 50%;
    padding: 5px;
}

.splushp-hosting-package.splushp-popular .splushp-feature-title i {
    color: var(--popular-dark);
    background-color: #fef5d4;
}

.splushp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.splushp-feature-list li {
    padding: 6px 0;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #e6e6e6;
    margin-bottom: 2px;
    font-weight: 300;
}

.splushp-hosting-package.splushp-popular .splushp-feature-list li {
    border-bottom: 1px dashed #f5d76e;
}

.splushp-feature-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.splushp-feature-list i {
    width: 18px;
    margin-right: 10px;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-align: center;
}

.splushp-hosting-package.splushp-popular .splushp-feature-list i {
    color: var(--popular-dark);
}

.splushp-feature-value {
    margin-left: auto;
    font-weight: 600;
    color: #495057;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.splushp-feature-value.splushp-active {
    background-color: #e3eafc;
    color: #4a69bd;
}

.splushp-hosting-package.splushp-popular .splushp-feature-value.splushp-active {
    background-color: #fef5d4;
    color: #d35400;
}

.splushp-feature-value.splushp-free {
    background-color: #e3f2fd;
    color: #1565c0;
}

.splushp-feature-value.splushp-unlimited {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.splushp-feature-tooltip {
    margin-left: 5px;
    color: #6c757d;
    cursor: help;
    font-size: 0.7rem;
}

.splushp-btn-container {
    margin-top: auto;
    padding-top: 15px;
}

.splushp-btn-buy {
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px !important;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}

.splushp-hosting-package.splushp-popular .splushp-btn-buy {
    background-color: var(--popular-dark);
    border-color: var(--popular-dark);
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

.splushp-btn-buy i {
    margin-right: 8px;
}

.splushp-btn-buy:hover {
    background-color: #0388c0;
    border-color: #0388c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white !important;
}

.splushp-hosting-package.splushp-popular .splushp-btn-buy:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(211, 84, 0, 0.4);
}

.splushp-btn-details {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-top: 8px;
    border-radius: 4px;
    color: #6c757d;
    background-color: transparent;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-weight: 300;
}

.splushp-hosting-package.splushp-popular .splushp-btn-details {
    border: 1px solid #f5d76e;
    color: #d35400;
}

.splushp-btn-details:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.splushp-hosting-package.splushp-popular .splushp-btn-details:hover {
    background-color: #fffcf2;
    color: #d35400;
}

/* Custom width for hosting cards */
.splushp-hosting-package {
    padding: 0 8px;
    position: relative;
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    .splushp-hosting-package {
        width: 23%;
        flex: 0 0 auto;
    }
}

@media (max-width: 1199.98px) {
    .splushp-hosting-card {
        margin-bottom: 16px;
    }

    .splushp-hosting-package {
        width: 50%;
        flex: 0 0 auto;
    }
}

@media (max-width: 991.98px) {
    .splushp-card-header h3 {
        font-size: 1.2rem;
    }

    .splushp-price {
        font-size: 1.8rem;
    }

    .splushp-page-title h1 {
        font-size: 2.2rem;
    }

    .splushp-page-title p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .splushp-hosting-package {
        width: 100%;
    }

    .splushp-hosting-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .splushp-feature-list li {
        font-size: 0.8rem;
    }

    .splushp-page-title h1 {
        font-size: 1.8rem;
    }

    .splushp-page-title p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .splushp-card-header {
        padding: 12px 15px;
    }

    .splushp-hosting-package.splushp-popular .splushp-card-header {
        padding-top: 25px;
    }

    .splushp-card-body {
        padding: 15px;
    }

    .splushp-price {
        font-size: 1.6rem;
    }

    .splushp-tech-logos {
        gap: 15px;
    }

    .splushp-logo-container {
        width: 90px;
        height: 35px;
    }
}

/* ServerPLUS Hosting Paketleri Bitis */

/* ServerPlus Wordpress Slider */

/* xThema WordPress Sayfası Slider  */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.wpslider-section {
    background-image: url('../img/xslider-wordpress.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.wpslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.wpslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.wpslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.wpslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.wpslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.wpslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.wpslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.wpslider-cta-button {
    background-color: #90a4e0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.wpslider-cta-button:hover {
    background-color: #7b8fc7;
    color: white;
}

.wpslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.wpslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.wpslider-contact-link:hover {
    text-decoration: underline;
}

.wpslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.wpslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .wpslider-content {
        margin-left: 50px;
    }

    .wpslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .wpslider-content {
        margin-left: 40px;
    }

    .wpslider-main-title {
        font-size: 2rem;
    }

    .wpslider-subtitle {
        font-size: 0.95rem;
    }

    .wpslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .wpslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .wpslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .wpslider-main-title {
        font-size: 1.8rem;
    }

    .wpslider-subtitle {
        font-size: 0.9rem;
    }

    .wpslider-feature-list li {
        font-size: 0.8rem;
    }

    .wpslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .wpslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .wpslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .wpslider-main-title {
        font-size: 1.5rem;
    }

    .wpslider-small-title {
        font-size: 0.7rem;
    }

    .wpslider-subtitle {
        font-size: 0.85rem;
    }

    .wpslider-feature-list li {
        font-size: 0.75rem;
    }

    .wpslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .wpslider-contact-text {
        font-size: 0.7rem;
    }

    .wpslider-logo {
        max-width: 100px;
    }
}

/* ServerPlus Wordpress Slider Bitis */

/* WordPpress Nedir */

.xwpneden-wrapper {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xwpneden-hero-section {
    background-image: url('../img/wordpress-slider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.xwpneden-content-wrapper {
    color: #333;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #90a4e0;
    border-bottom: 4px solid #90a4e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xwpneden-content-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.xwpneden-content-wrapper h1 {
    font-size: 1.75rem;
    font-weight: 700;
    width: 80%;
    border-bottom: 3px solid #90a4e0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.xwpneden-content-wrapper p {
    font-weight: 400;
    line-height: 1.4;
}

.xwpneden-highlight {
    color: #3498db;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .xwpneden-hero-section {
        background-position: right center;
    }
}

@media (max-width: 992px) {
    .xwpneden-hero-section {
        min-height: 300px;
    }

    .xwpneden-content-wrapper {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .xwpneden-hero-section {
        padding: 40px 0;
        background-position: center;
    }

    .xwpneden-content-wrapper {
        max-width: 100%;
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .xwpneden-hero-section {
        min-height: 250px;
        padding: 20px 0;
    }

    .xwpneden-content-wrapper {
        padding: 20px;
    }

    .xwpneden-content-wrapper h1 {
        font-size: 1.5rem;
    }

    .xwpneden-content-wrapper p {
        font-size: 0.9rem;
    }
}

/* WordPress Nedir Bitiş */

/* Kuruösal Hosting Slider */
/* xThema cPanel Sayfası Slider  */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.kurumsalslider-section {
    background-image: url('../../assets/img/xslider-kurumsal.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #add6f0;
}

.kurumsalslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.kurumsalslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.kurumsalslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.kurumsalslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.kurumsalslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.kurumsalslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.kurumsalslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.kurumsalslider-cta-button {
    background-color: var(--btn-primary-bg);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.kurumsalslider-cta-button:hover {
    background-color: var(--btn-hover);
    color: white;
}

.kurumsalslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.kurumsalslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.kurumsalslider-contact-link:hover {
    text-decoration: underline;
}

.kurumsalslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.kurumsalslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .kurumsalslider-content {
        margin-left: 50px;
    }

    .kurumsalslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .kurumsalslider-content {
        margin-left: 40px;
    }

    .kurumsalslider-main-title {
        font-size: 2rem;
    }

    .kurumsalslider-subtitle {
        font-size: 0.95rem;
    }

    .kurumsalslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .kurumsalslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .kurumsalslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .kurumsalslider-main-title {
        font-size: 1.8rem;
    }

    .kurumsalslider-subtitle {
        font-size: 0.9rem;
    }

    .kurumsalslider-feature-list li {
        font-size: 0.8rem;
    }

    .kurumsalslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .kurumsalslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .kurumsalslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .kurumsalslider-main-title {
        font-size: 1.5rem;
    }

    .kurumsalslider-small-title {
        font-size: 0.7rem;
    }

    .kurumsalslider-subtitle {
        font-size: 0.85rem;
    }

    .kurumsalslider-feature-list li {
        font-size: 0.75rem;
    }

    .kurumsalslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .kurumsalslider-contact-text {
        font-size: 0.7rem;
    }

    .kurumsalslider-logo {
        max-width: 100px;
    }
}

/* Kurumsal Hosting Slider Bitis */

/* ServerPlus İMG Bitis */

.xserverimg-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    padding: 0;
}

.xserverimg-image-container::before {
    content: '';
    position: absolute;
    left: -15%;
    right: -15%;
    top: 20%;
    bottom: 0;
    background: linear-gradient(to bottom,
    rgba(26, 60, 110, 0) 0%,
    rgba(26, 60, 110, 0.7) 40%,
    rgba(26, 60, 110, 0.95) 100%
    );
    z-index: -1;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.xserverimg-image-container img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .xserverimg-image-container {
        padding: 0;
    }

    .xserverimg-image-container::before {
        top: 30%;
        left: -5%;
        right: -5%;
    }
}

@media (max-width: 576px) {
    .xserverimg-image-container {
        padding: 0;
    }

    .xserverimg-image-container::before {
        top: 40%;
        left: 0;
        right: 0;
    }
}

/* ServerPlus İMG Bitis */

/* ServerPlus Reseller Slider */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.whmslider-section {
    background-image: url('../img/xslider-whm.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.whmslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.whmslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.whmslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.whmslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.whmslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.whmslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.whmslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.whmslider-cta-button {
    background-color: #90a4e0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.whmslider-cta-button:hover {
    background-color: #7b8fc7;
    color: white;
}

.whmslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.whmslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.whmslider-contact-link:hover {
    text-decoration: underline;
}

.whmslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.whmslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .whmslider-content {
        margin-left: 50px;
    }

    .whmslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .whmslider-content {
        margin-left: 40px;
    }

    .whmslider-main-title {
        font-size: 2rem;
    }

    .whmslider-subtitle {
        font-size: 0.95rem;
    }

    .whmslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .whmslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .whmslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .whmslider-main-title {
        font-size: 1.8rem;
    }

    .whmslider-subtitle {
        font-size: 0.9rem;
    }

    .whmslider-feature-list li {
        font-size: 0.8rem;
    }

    .whmslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .whmslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .whmslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .whmslider-main-title {
        font-size: 1.5rem;
    }

    .whmslider-small-title {
        font-size: 0.7rem;
    }

    .whmslider-subtitle {
        font-size: 0.85rem;
    }

    .whmslider-feature-list li {
        font-size: 0.75rem;
    }

    .whmslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .whmslider-contact-text {
        font-size: 0.7rem;
    }

    .whmslider-logo {
        max-width: 100px;
    }
}

/* ServerPlus Reseller Slider Bitis */

/* ServerPlus Reseller Hosting Paketleri */
.ssplusrp-root {
    --primary-color: #00a0e3;
    --primary-light: #d8e0f7;
    --secondary-color: #28a745;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --popular-color: #f39c12;
    --popular-dark: #e67e22;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ssplusrp-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: #f9f9f9;
    color: var(--text-color);
}

.ssplusrp-container {
    max-width: 1400px;
    padding: 0 15px;
}

.ssplusrp-page-title {
    text-align: center;
    margin-bottom: 40px;
}

.ssplusrp-page-title h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.ssplusrp-page-title p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ssplusrp-hosting-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fff;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ssplusrp-hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Popular package styling */
.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-hosting-card {
    border: none;
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-hosting-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ssplusrp-card-header {
    padding: 25px 20px 15px;
    background: white;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-card-header {
    background: white;
    border-bottom: 1px solid #faebc8;
}

.ssplusrp-popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--popular-dark);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 40px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    transform: rotate(45deg);
}

.ssplusrp-popular-badge svg {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    vertical-align: -1px;
}

.ssplusrp-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-card-header h3 {
    color: var(--popular-dark);
}

.ssplusrp-card-header h3 span {
    color: #888;
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 8px;
    opacity: 0.9;
}

.ssplusrp-card-header small {
    color: #777;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.ssplusrp-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Improved price container */
.ssplusrp-price-container {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-price-container {
    background: linear-gradient(145deg, #fff9e6, #ffffff);
    border: 1px solid #faebc8;
}

.ssplusrp-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
    display: inline-flex;
    align-items: flex-start;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-price {
    color: var(--popular-dark);
}

.ssplusrp-currency {
    font-size: 1.1rem;
    margin-right: 2px;
    margin-top: 5px;
    font-weight: 600;
}

.ssplusrp-period {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
    margin-left: 4px;
    align-self: flex-end;
}

.ssplusrp-price-divider {
    width: 40px;
    height: 2px;
    background: var(--primary-light);
    margin: 10px auto;
    border-radius: 2px;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-price-divider {
    background: #f5d76e;
}

.ssplusrp-annual-price {
    font-size: 0.8rem;
    color: #495057;
    font-weight: 300;
}

.ssplusrp-badge-container {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ssplusrp-badge-custom {
    font-size: 0.7rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    background-color: var(--primary-color) !important;
    color: white !important;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-badge-custom {
    background-color: var(--popular-dark) !important;
}

/* Technology logos section */
.ssplusrp-tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-tech-logos {
    background-color: #fff9e6;
}

.ssplusrp-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    position: relative;
}

.ssplusrp-tech-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ssplusrp-tech-logo:hover {
    transform: scale(1.05);
}

/* SVG icons styling */
.ssplusrp-svg-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-svg-icon {
    stroke: var(--popular-dark);
}

/* Improved feature sections */
.ssplusrp-features-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ssplusrp-feature-section {
    background-color: #fcfcfc;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #f0f0f0;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-section {
    background-color: #fffcf2;
    border: 1px solid #faebc8;
}

.ssplusrp-feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary-light);
    display: flex;
    align-items: center;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-title {
    border-bottom: 1px solid #f5d76e;
}

.ssplusrp-feature-title svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-title svg {
    stroke: var(--popular-dark);
}

.ssplusrp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ssplusrp-feature-list li {
    padding: 8px 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #e6e6e6;
    margin-bottom: 3px;
    font-weight: 300;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-list li {
    border-bottom: 1px dashed #f5d76e;
}

.ssplusrp-feature-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ssplusrp-feature-list svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-list svg {
    stroke: var(--popular-dark);
}

.ssplusrp-feature-value {
    margin-left: auto;
    font-weight: 600;
    color: #495057;
    background-color: #f0f0f0;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.ssplusrp-feature-value.ssplusrp-active {
    background-color: #e3eafc;
    color: #4a69bd;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-value.ssplusrp-active {
    background-color: #fef5d4;
    color: #d35400;
}

.ssplusrp-feature-value.ssplusrp-free {
    background-color: #e3f2fd;
    color: #1565c0;
}

.ssplusrp-feature-value.ssplusrp-unlimited {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.ssplusrp-feature-tooltip {
    margin-left: 5px;
    color: #6c757d;
    cursor: help;
    font-size: 0.7rem;
}

.ssplusrp-btn-container {
    margin-top: auto;
    padding-top: 20px;
}

.ssplusrp-btn-buy {
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-btn-buy {
    background-color: var(--popular-dark);
    border-color: var(--popular-dark);
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

.ssplusrp-btn-buy svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ssplusrp-btn-buy:hover {
    background-color: #3a56b5;
    border-color: #3a56b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white !important;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-btn-buy:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(211, 84, 0, 0.4);
}

.ssplusrp-btn-details {
    font-size: 0.85rem;
    padding: 8px 12px;
    margin-top: 10px;
    border-radius: 30px;
    color: #6c757d;
    background-color: transparent;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-btn-details {
    border: 1px solid #f5d76e;
    color: #d35400;
}

.ssplusrp-btn-details svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    stroke: #6c757d;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-btn-details svg {
    stroke: #d35400;
}

.ssplusrp-btn-details:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-btn-details:hover {
    background-color: #fffcf2;
    color: #d35400;
}

/* Custom width for hosting cards */
.ssplusrp-hosting-package {
    padding: 0 10px;
    position: relative;
}

/* Feature grid layout */
.ssplusrp-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.ssplusrp-feature-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-item {
    background: #fff9e6;
}

.ssplusrp-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ssplusrp-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    margin-bottom: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-icon {
    background: white;
}

.ssplusrp-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-icon svg {
    stroke: var(--popular-dark);
}

.ssplusrp-feature-name {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.ssplusrp-feature-value-grid {
    font-size: 0.75rem;
    font-weight: 600;
    color: #495057;
    background: white;
    padding: 3px 10px;
    border-radius: 20px;
}

.ssplusrp-hosting-package.ssplusrp-popular .ssplusrp-feature-value-grid {
    background: white;
}

/* Reseller Intro Section */
.ssplusrp-reseller-intro {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a56b5 100%);
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
    color: white;
    box-shadow: var(--card-shadow);
}

.ssplusrp-reseller-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}

.ssplusrp-reseller-intro p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.ssplusrp-reseller-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.ssplusrp-reseller-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    flex: 1 1 calc(25% - 15px);
    min-width: 200px;
    transition: all 0.3s ease;
}

.ssplusrp-reseller-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.ssplusrp-reseller-feature svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.ssplusrp-reseller-feature span {
    font-weight: 400;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    .ssplusrp-hosting-package {
        width: 25%;
        flex: 0 0 auto;
    }
}

@media (max-width: 1199.98px) {
    .ssplusrp-hosting-card {
        margin-bottom: 16px;
    }

    .ssplusrp-hosting-package {
        width: 50%;
        flex: 0 0 auto;
    }

    .ssplusrp-reseller-feature {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 991.98px) {
    .ssplusrp-card-header h3 {
        font-size: 1.3rem;
    }

    .ssplusrp-price {
        font-size: 2rem;
    }

    .ssplusrp-page-title h1 {
        font-size: 2.2rem;
    }

    .ssplusrp-page-title p {
        font-size: 1rem;
    }

    .ssplusrp-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .ssplusrp-hosting-package {
        width: 100%;
    }

    .ssplusrp-hosting-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .ssplusrp-feature-list li {
        font-size: 0.8rem;
    }

    .ssplusrp-page-title h1 {
        font-size: 1.8rem;
    }

    .ssplusrp-page-title p {
        font-size: 0.9rem;
    }

    .ssplusrp-reseller-feature {
        flex: 1 1 100%;
    }

    .ssplusrp-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .ssplusrp-card-header {
        padding: 15px;
    }

    .ssplusrp-card-body {
        padding: 15px;
    }

    .ssplusrp-price {
        font-size: 1.8rem;
    }

    .ssplusrp-tech-logos {
        gap: 15px;
    }

    .ssplusrp-logo-container {
        width: 90px;
        height: 35px;
    }

    .ssplusrp-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ServerPlus Reseller Hosting Paketleri Bitis */

/* ServerPlus Sanal Sunucu Slider */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.vpsslider-section {
    background-image: url('../img/xslider-sanalsunucu.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.vpsslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.vpsslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.vpsslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.vpsslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.vpsslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.vpsslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.vpsslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.vpsslider-cta-button {
    background-color: var(--btn-primary-bg);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.vpsslider-cta-button:hover {
    background-color: var(--btn-hover);
    color: white;
}

.vpsslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.vpsslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.vpsslider-contact-link:hover {
    text-decoration: underline;
}

.vpsslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.vpsslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Yeni eklenen ve düzenlenen stiller */
.vpsslider-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vpsslider-image {
    max-width: 70%;
    height: auto;
    object-fit: contain;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .vpsslider-content {
        margin-left: 50px;
    }

    .vpsslider-main-title {
        font-size: 2.2rem;
    }

    .vpsslider-image {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .vpsslider-content {
        margin-left: 40px;
    }

    .vpsslider-main-title {
        font-size: 2rem;
    }

    .vpsslider-subtitle {
        font-size: 0.95rem;
    }

    .vpsslider-feature-list li {
        font-size: 0.85rem;
    }

    .vpsslider-image {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .vpsslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .vpsslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .vpsslider-main-title {
        font-size: 1.8rem;
    }

    .vpsslider-subtitle {
        font-size: 0.9rem;
    }

    .vpsslider-feature-list li {
        font-size: 0.8rem;
    }

    .vpsslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .vpsslider-contact-text {
        font-size: 0.75rem;
    }

    .vpsslider-image-wrapper {
        display: none; /* Mobilde resmi gizle */
    }
}

@media (max-width: 575px) {
    .vpsslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .vpsslider-main-title {
        font-size: 1.5rem;
    }

    .vpsslider-small-title {
        font-size: 0.7rem;
    }

    .vpsslider-subtitle {
        font-size: 0.85rem;
    }

    .vpsslider-feature-list li {
        font-size: 0.75rem;
    }

    .vpsslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .vpsslider-contact-text {
        font-size: 0.7rem;
    }

    .vpsslider-logo {
        max-width: 100px;
    }
}

/* ServerPlus Sanal Sunucu Slider Bitis */

/* ServerPlus Sanal Sunucu Paketleri */
body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.spvpstb-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
}

@media (min-width: 1200px) {
    .spvpstb-container2 {
        width: 1270px !important;
    }
}

/* Tablo Stilleri */
.spvpstb-vpsfiyat-tablo {
    overflow: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-collapse: unset !important;
    border-spacing: 0 10px !important;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
}

.spvpstb-vpsfiyat-tablo * {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

/* Tablo Başlık */
.spvpstb-vpsfiyat-tablo > thead {
    background-color: transparent;
}

.spvpstb-vpsfiyat-tablo thead {
    border-bottom: 1px solid #dfe6ec;
}

.spvpstb-vpsfiyat-tablo > thead > tr > th {
    font-size: 13px;
    font-weight: 900;
    padding: 15px 0px !important;
    text-align: center;
    color: #272a2c;
}

.spvpstb-vpsfiyat-tablo > thead > tr > th,
.spvpstb-vpsfiyat-tablo > tbody > tr > th,
.spvpstb-vpsfiyat-tablo > tfoot > tr > th,
.spvpstb-vpsfiyat-tablo > thead > tr > td,
.spvpstb-vpsfiyat-tablo > tbody > tr > td,
.spvpstb-vpsfiyat-tablo > tfoot > tr > td {
    padding: 20px 30px;
    line-height: 1.42857143;
    vertical-align: middle;
}

/* Tablo Gövde */
.spvpstb-vpsfiyat-tablo > tbody > tr > td {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    background-color: #fff;
    border: 3px solid transparent;
    padding: 15px 0px;
}

.spvpstb-vpsfiyat-tablo > tbody td {
    border: 2px solid transparent;
}

/* İndirim Animasyonu */
.spvpstb-vpsfiyat-tablo > tbody > tr.spvpstb-ttabindirim > td:first-child {
    border-left: 3px solid var(--btn-primary-bg);
}

.spvpstb-vpsfiyat-tablo > tbody > tr.spvpstb-ttabindirim > td {
    border-top: 3px solid var(--btn-primary-bg);
    border-bottom: 3px solid var(--btn-primary-bg);
}

.spvpstb-vpsfiyat-tablo > tbody > tr.spvpstb-ttabindirim > td:last-child {
    border-right: 3px solid var(--btn-primary-bg);
}

/* Animasyon Efekti */
@keyframes spvpstb-indirimborder {
    0% {
        border-top: 3px solid var(--btn-primary-bg);
        border-bottom: 3px solid var(--btn-primary-bg);
    }
    50% {
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
    }
    100% {
        border-top: 3px solid var(--btn-primary-bg);
        border-bottom: 3px solid var(--btn-primary-bg);
    }
}

@keyframes spvpstb-indirimbordersol {
    0% {
        border-left: 3px solid var(--btn-primary-bg);
    }
    50% {
        border-left: 3px solid transparent;
    }
    100% {
        border-left: 3px solid var(--btn-primary-bg);
    }
}

@keyframes spvpstb-indirimborderright {
    0% {
        border-right: 3px solid var(--btn-primary-bg);
    }
    50% {
        border-right: 3px solid transparent;
    }
    100% {
        border-right: 3px solid var(--btn-primary-bg);
    }
}

/* Animasyon Sınıfları */
.spvpstb-animate-border td {
    animation: spvpstb-indirimborder 2s infinite;
}

.spvpstb-animate-border td:first-child {
    animation: spvpstb-indirimbordersol 2s infinite, spvpstb-indirimborder 2s infinite;
}

.spvpstb-animate-border td:last-child {
    animation: spvpstb-indirimborderright 2s infinite, spvpstb-indirimborder 2s infinite;
}

/* Hover Efekti */
.spvpstb-vpsfiyat-tablo tbody tr:hover > td {
    background: #f8f8f8;
}

.spvpstb-vpsfiyat-tablo tbody tr:hover .spvpstb-vpsbuton {
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
    color: white;
}

/* İçerik Stilleri */
.spvpstb-d-flex2 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.spvpstb-vpbaslik {
    font-size: 19px !important;
}

.spvpstb-icon-wrapper {
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spvpstb-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: var(--btn-hover);
}

.spvpstb-vpsfiyat-tablo .spvpstb-fiyat {
    font-weight: 900;
    color: var(--btn-hover);
    font-size: 22px;
}

.spvpstb-vpsfiyat-tablo .spvpstb-small {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #6c757d;
}

/* Buton Stili */
.spvpstb-vpsbuton {
    border-radius: 8px;
    font-size: 14px;
    padding: 0.938rem 2.187rem;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    color: white;
    background-color: var(--btn-primary-bg);
    border: 3px solid var(--btn-primary-bg);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.spvpstb-vpsbuton:hover {
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
    color: white;
    text-decoration: none;
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 992px) {
    .spvpstb-table-responsive {
        border: none;
        margin-bottom: 0;
    }

    .spvpstb-vpsfiyat-tablo {
        border-spacing: 0 !important;
    }

    .spvpstb-vpsfiyat-tablo thead {
        display: none;
    }

    .spvpstb-vpsfiyat-tablo tbody tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .spvpstb-vpsfiyat-tablo tbody tr.spvpstb-ttabindirim {
        border: 3px solid #90a4e0;
    }

    .spvpstb-vpsfiyat-tablo tbody tr td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px !important;
        text-align: right;
        border-bottom: 1px solid #eee;
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        animation: none !important;
    }

    .spvpstb-vpsfiyat-tablo tbody tr td:last-child {
        border-bottom: none;
        justify-content: center;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .spvpstb-vpsfiyat-tablo tbody tr td:before {
        content: attr(data-label);
        font-weight: 700;
        color: #333;
        text-align: left;
        padding-right: 10px;
    }

    .spvpstb-vpsfiyat-tablo tbody tr td:last-child:before {
        display: none;
    }

    .spvpstb-d-flex2 {
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .spvpstb-icon-wrapper {
        display: none;
    }

    .spvpstb-vpsbuton {
        width: 100%;
        display: block;
        text-align: center;
    }

    .spvpstb-vpbaslik {
        font-size: 18px !important;
        text-align: right;
    }

    .spvpstb-vpsfiyat-tablo .spvpstb-fiyat {
        font-size: 20px;
    }

    /* Mobil için animasyon düzeltmesi */
    .spvpstb-animate-border {
        border: 3px solid var(--btn-primary-bg) !important;
        animation: spvpstb-mobilBorder 2s infinite !important;
    }

    @keyframes spvpstb-mobilBorder {
        0% {
            border-color: #90a4e0 !important;
        }
        50% {
            border-color: transparent !important;
        }
        100% {
            border-color: #90a4e0 !important;
        }
    }
}

@media screen and (max-width: 576px) {
    .spvpstb-container {
        padding: 0 15px;
    }

    .spvpstb-vpsfiyat-tablo tbody tr td {
        padding: 12px 15px !important;
        font-size: 16px;
    }

    .spvpstb-vpsfiyat-tablo .spvpstb-fiyat {
        font-size: 18px;
    }

    .spvpstb-vpsfiyat-tablo .spvpstb-small {
        font-size: 12px;
    }

    .spvpstb-vpsbuton {
        padding: 0.75rem 1.5rem;
        font-size: 13px;
    }
}

/* ServerPlus Sanal Sunucu Paketleri Bitis */

/* ServerPlus Sanal Sunucu Avantajları Bitis  */


.serverplus-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.serverplus-text-navy {
    color: #333;
    letter-spacing: -0.3px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.serverplus-text-navy:hover {
    color: #90a4e0;
    transform: translateY(-2px);
}

.serverplus-bg-light-custom {
    background-color: #f8f9fa;
}

.serverplus-section-container {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.serverplus-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.serverplus-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.serverplus-image-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.serverplus-image-container:hover img {
    transform: scale(1.02);
}

.serverplus-list {
    padding-left: 20px;
    margin-bottom: 1rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.serverplus-list li {
    margin-bottom: 0.3rem;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.2px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.serverplus-list li:hover {
    transform: translateX(5px);
    color: #90a4e0;
}

h1.display-5 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    font-weight: 600;
}

h2.display-6 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .serverplus-section-container {
        padding: 30px 0;
    }

    .serverplus-content-section {
        text-align: left;
        margin-bottom: 20px;
    }

    .serverplus-list {
        text-align: left;
        padding-left: 15px;
    }

    h1.display-5 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    h2.display-6 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .serverplus-text, .serverplus-list li {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .serverplus-content-section {
        padding-right: 1rem;
    }

    .order-lg-2 .serverplus-content-section {
        padding-right: 0;
        padding-left: 1rem;
    }
}

/* ServerPlus Sanal Sunucu Avantajları Bitis  */


/* Populer WHM */


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.xwhmneden-hero-section {
    padding: 40px 0;
    background-color: #fff;
}

.xwhmneden-hero-section p {
    font-weight: 500;
}

.xwhmneden-title-underline {
    width: 100%;
    height: 3px;
    background-color: #90a4e0;
    margin: 15px 0;
    border: none;
}

.xwhmneden-highlight {
    color: #3498db;
    font-weight: 600;
}

@media (max-width: 768px) {
    .xwhmneden-hero-section {
        padding: 20px 0;
        text-align: center;
    }

    .xwhmneden-hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .xwhmneden-hero-section p {
        font-size: 0.9rem;
    }

    .xwhmneden-hero-section .btn {
        width: 100%;
        margin-bottom: 2rem;
    }

    .xwhmneden-hero-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .xwhmneden-title-underline {
        margin: 15px auto;
    }
}

@media (min-width: 769px) {
    .xwhmneden-hero-section h1 {
        font-size: 2.2rem;
    }
}

.xwhmneden-hero-section .btn {
    background-color: #90a4e0;
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 400;
}

.xwhmneden-hero-section .btn:hover {
    background-color: #7b93d3; /* Updated hover color */
    transform: translateY(-2px);
}

.xwhmneden-hero-image {
    transition: transform 0.3s ease;
}

.xwhmneden-hero-image:hover {
    transform: scale(1.02);
}

.xwhmneden-content-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.xwhmneden-hero-section h1 {
    font-weight: 700;
}

/* Populer WHM Bitiş */

/* Kurumsal - Hakımızda */
/* İzole edilmiş CSS - Tüm seçiciler .spkurumsal-wrapper altında */
.spkurumsal-wrapper {
    /* Base styles */
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.5;
    color: #212529;
    overflow-x: hidden;

    /* Theme variables - Updated to match xServer colors */
    --spkurumsal-primary-color: #2d3a5e; /* Dark navy blue from header */
    --spkurumsal-primary-hover: #3a4b7a; /* Slightly lighter navy blue */
    --spkurumsal-secondary-color: #4a63b8; /* Medium blue from buttons */
    --spkurumsal-warning-bg: #f8f9fc; /* Very light blue background */
    --spkurumsal-warning-border: #d1d9f0; /* Light blue border */
    --spkurumsal-text-dark: #212529; /* Dark text */
    --spkurumsal-text-light: #ffffff; /* White text */
    --spkurumsal-text-muted: #6c758d; /* Muted text color */
    --spkurumsal-border-color: #d1d9f0; /* Light blue border */
    --spkurumsal-divider-color: #e6eaf4; /* Very light blue divider */
    --spkurumsal-divider-dark: #c5cce6; /* Slightly darker divider */
    --spkurumsal-divider-light: #f8f9fc; /* Very light blue background */
    --spkurumsal-shadow-sm: 0 .125rem .25rem rgba(45, 58, 94, .075); /* Shadow with primary color */
    --spkurumsal-shadow-md: 0 .5rem 1rem rgba(45, 58, 94, .15); /* Shadow with primary color */
    --spkurumsal-transition-speed: 0.3s;
    --spkurumsal-success-color: #4a63b8; /* Medium blue */
    --spkurumsal-accent-color: #ffc107; /* Orange/yellow accent color */
}

.spkurumsal-wrapper .spkurumsal-container {
    max-width: 1200px;
    padding: 1rem;
}

/* Typography responsive styles */
.spkurumsal-wrapper .spkurumsal-h1,
.spkurumsal-wrapper .spkurumsal-h2,
.spkurumsal-wrapper .spkurumsal-h3,
.spkurumsal-wrapper .spkurumsal-h4,
.spkurumsal-wrapper .spkurumsal-h5,
.spkurumsal-wrapper .spkurumsal-h6,
.spkurumsal-wrapper h1,
.spkurumsal-wrapper h2,
.spkurumsal-wrapper h3,
.spkurumsal-wrapper h4,
.spkurumsal-wrapper h5,
.spkurumsal-wrapper h6 {
    font-weight: 600;
    font-family: 'Poppins', sans-serif !important;
}

.spkurumsal-wrapper .spkurumsal-p,
.spkurumsal-wrapper .spkurumsal-a,
.spkurumsal-wrapper .spkurumsal-span,
.spkurumsal-wrapper .spkurumsal-button,
.spkurumsal-wrapper .spkurumsal-li,
.spkurumsal-wrapper p,
.spkurumsal-wrapper a,
.spkurumsal-wrapper span,
.spkurumsal-wrapper button,
.spkurumsal-wrapper li,
.spkurumsal-wrapper .spkurumsal-bank-details p,
.spkurumsal-wrapper .spkurumsal-pdf-title,
.spkurumsal-wrapper .spkurumsal-alert p {
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
}

/* Apply font to all buttons */
.spkurumsal-wrapper .btn {
    font-family: 'Poppins', sans-serif !important;
}

/* Sidebar styles with enhanced responsiveness and dividers */
.spkurumsal-wrapper .spkurumsal-sidebar-menu {
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    position: relative;
    border: 1px solid var(--spkurumsal-divider-color);
    margin-bottom: 1.5rem; /* Added margin for mobile view */
}

/* Menu item styles without icons */
.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
    padding: 0.875rem 1.25rem;
    transition: all var(--spkurumsal-transition-speed) ease;
    font-weight: 500;
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--spkurumsal-divider-color);
    position: relative;
    cursor: pointer;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover:not(.active) {
    background-color: rgba(74, 99, 184, 0.05);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i.fa-chevron-right {
    transition: transform var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover i.fa-chevron-right {
    transform: translateX(3px);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active i.fa-chevron-right {
    color: var(--spkurumsal-text-light) !important;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:last-child {
    border-bottom: none;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--spkurumsal-primary-color);
    transition: width var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover::after {
    width: 100%;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i {
    transition: transform var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover:not(.active) {
    background-color: rgba(74, 99, 184, 0.05);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover i {
    transform: translateX(3px);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active {
    background-color: var(--spkurumsal-primary-color);
    border-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--spkurumsal-accent-color);
}

/* Enhanced vertical divider styles */
.spkurumsal-wrapper .spkurumsal-vertical-divider {
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--spkurumsal-divider-light), var(--spkurumsal-divider-dark), var(--spkurumsal-divider-light));
    display: none; /* Hidden by default, shown on larger screens */
    opacity: 0.8;
    box-shadow: 1px 0 3px rgba(45, 58, 94, 0.05);
}

/* Alert styles with enhanced responsiveness and dividers */
.spkurumsal-wrapper .spkurumsal-alert-warning {
    background-color: #ffffff;
    border: 1px solid var(--spkurumsal-border-color);
    border-radius: 0.375rem;
    padding: 1rem;
    transition: all var(--spkurumsal-transition-speed) ease;
    box-shadow: var(--spkurumsal-shadow-sm);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-alert-warning::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--spkurumsal-secondary-color);
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.spkurumsal-wrapper .spkurumsal-alert-warning strong {
    font-weight: 600;
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-alert-warning strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: rgba(45, 58, 94, 0.2);
}

/* Bank card styles with enhanced responsiveness and dividers */
.spkurumsal-wrapper .spkurumsal-bank-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-bank-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-bank-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
}

.spkurumsal-wrapper .spkurumsal-bank-logo {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--spkurumsal-text-light);
    height: 100%;
    transition: all var(--spkurumsal-transition-speed) ease;
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-bank-logo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--spkurumsal-divider-color);
}

/* Logo styling to ensure consistent size */
.spkurumsal-wrapper .spkurumsal-bank-logo img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    width: auto;
    object-fit: contain;
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-bank-details {
    padding: 1.25rem;
    background-color: var(--spkurumsal-secondary-color);
    color: var(--spkurumsal-text-light);
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-bank-details p {
    margin-bottom: 0.5rem;
    word-break: break-word;
    transition: all var(--spkurumsal-transition-speed) ease;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spkurumsal-wrapper .spkurumsal-bank-details p:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Improved bank details styling with better spacing */
.spkurumsal-wrapper .spkurumsal-bank-details strong {
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-bank-details strong::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

/* Info button styles with enhanced responsiveness */
.spkurumsal-wrapper .spkurumsal-info-button {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif !important;
    transition: all var(--spkurumsal-transition-speed) ease;
    box-shadow: var(--spkurumsal-shadow-sm);
    position: relative;
    overflow: hidden;
}

.spkurumsal-wrapper .spkurumsal-info-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.spkurumsal-wrapper .spkurumsal-info-button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.spkurumsal-wrapper .spkurumsal-info-button:hover {
    background-color: var(--spkurumsal-primary-hover);
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-1px);
}

.spkurumsal-wrapper .spkurumsal-info-button:active {
    transform: translateY(1px);
    box-shadow: var(--spkurumsal-shadow-sm);
}

.spkurumsal-wrapper .spkurumsal-info-button .spkurumsal-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.spkurumsal-wrapper .spkurumsal-info-button:focus:not(:active) .spkurumsal-ripple {
    animation: spkurumsal-ripple 1s ease-out;
}

@keyframes spkurumsal-ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Info list styles with enhanced responsiveness and dividers */
.spkurumsal-wrapper .spkurumsal-info-list {
    margin-top: 1.5rem;
    padding: 0.5rem;
    transition: all var(--spkurumsal-transition-speed) ease;
    border-top: 1px solid var(--spkurumsal-divider-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-info-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 50px;
    height: 3px;
    background-color: var(--spkurumsal-primary-color);
}

.spkurumsal-wrapper .spkurumsal-info-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0;
    padding-bottom: 1rem;
    line-height: 1.6;
    transition: all var(--spkurumsal-transition-speed) ease;
    border-bottom: 1px dashed var(--spkurumsal-divider-color);
}

.spkurumsal-wrapper .spkurumsal-info-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.spkurumsal-wrapper .spkurumsal-info-list li:before {
    content: "";
    position: absolute;
    left: 0;
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-info-list li:hover {
    transform: translateX(3px);
}

/* About Us page styles with enhanced responsiveness */
.spkurumsal-wrapper .spkurumsal-about-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-about-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-about-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
}

.spkurumsal-wrapper .spkurumsal-about-card-body {
    padding: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-about-card-title {
    color: var(--spkurumsal-primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.spkurumsal-wrapper .spkurumsal-about-card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--spkurumsal-primary-color);
}

/* Enhanced styles for Değerlerimiz section */
.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list {
    margin-top: 0.5rem;
    padding: 0;
    border-top: none;
}

.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list::before {
    display: none;
}

.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed var(--spkurumsal-divider-color);
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Remove bullet points from Değerlerimiz section */
.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list {
    list-style-type: none;
    padding-left: 0;
}

/* Content wrapper with enhanced divider */
.spkurumsal-wrapper .spkurumsal-content-wrapper {
    position: relative;
    border-left: none;
}

.spkurumsal-wrapper .spkurumsal-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--spkurumsal-divider-light), var(--spkurumsal-divider-dark), var(--spkurumsal-divider-light));
    display: none;
    opacity: 0.8;
}

/* Section divider */
.spkurumsal-wrapper .spkurumsal-section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--spkurumsal-divider-color), transparent);
    margin: 1.5rem 0;
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -3px;
    width: 50px;
    height: 7px;
    background-color: #fff;
    transform: translateX(-50%);
}

.spkurumsal-wrapper .spkurumsal-section-divider::after {
    content: '•';
    position: absolute;
    left: 50%;
    top: -8px;
    color: var(--spkurumsal-primary-color);
    transform: translateX(-50%);
    font-size: 1rem;
}

/* Page content styles */
.spkurumsal-wrapper .spkurumsal-page-content {
    display: none;
}

.spkurumsal-wrapper .spkurumsal-page-content.active {
    display: block;
}

.spkurumsal-wrapper .spkurumsal-page-title {
    color: var(--spkurumsal-primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--spkurumsal-divider-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background-color: var(--spkurumsal-primary-color);
}

/* Knowledge Base page styles */
.spkurumsal-wrapper .spkurumsal-kb-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-kb-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-kb-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
}

.spkurumsal-wrapper .spkurumsal-kb-card-header {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    padding: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.spkurumsal-wrapper .spkurumsal-kb-card-header i {
    transition: transform var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-kb-card-header.collapsed i {
    transform: rotate(-90deg);
}

.spkurumsal-wrapper .spkurumsal-kb-card-body {
    padding: 1.25rem;
    border-top: 1px solid var(--spkurumsal-divider-color);
}

/* Support Center page styles */
.spkurumsal-wrapper .spkurumsal-support-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-support-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-support-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
}

.spkurumsal-wrapper .spkurumsal-support-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-support-card-body {
    padding: 1.5rem;
    text-align: center;
}

.spkurumsal-wrapper .spkurumsal-support-card-title {
    color: var(--spkurumsal-primary-color);
    margin-bottom: 0.75rem;
}

/* Contact page styles */
.spkurumsal-wrapper .spkurumsal-contact-form-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-contact-form-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-contact-form-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
}

.spkurumsal-wrapper .spkurumsal-contact-form-header {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    padding: 1.25rem;
    font-weight: 500;
}

.spkurumsal-wrapper .spkurumsal-contact-form-body {
    padding: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-contact-form .form-control {
    border-radius: 0.375rem;
    padding: 0.75rem;
    border: 1px solid var(--spkurumsal-border-color);
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-contact-form .form-control:focus {
    border-color: var(--spkurumsal-primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45, 58, 94, 0.25);
}

.spkurumsal-wrapper .spkurumsal-contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.spkurumsal-wrapper .spkurumsal-contact-info-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-contact-info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-contact-info-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
}

.spkurumsal-wrapper .spkurumsal-contact-info-header {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    padding: 1.25rem;
    font-weight: 500;
}

.spkurumsal-wrapper .spkurumsal-contact-info-body {
    padding: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--spkurumsal-divider-color);
}

.spkurumsal-wrapper .spkurumsal-contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.spkurumsal-wrapper .spkurumsal-contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.spkurumsal-wrapper .spkurumsal-contact-info-text {
    flex-grow: 1;
}

.spkurumsal-wrapper .spkurumsal-contact-info-text h5 {
    margin-bottom: 0.25rem;
    color: var(--spkurumsal-primary-color);
}

/* PDF Document Card Styles */
.spkurumsal-wrapper .spkurumsal-pdf-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    margin-bottom: 1rem;
    background-color: white;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    cursor: pointer;
    text-decoration: none; /* Remove any text decoration */
}

.spkurumsal-wrapper .spkurumsal-pdf-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}

.spkurumsal-wrapper .spkurumsal-pdf-icon {
    color: var(--spkurumsal-secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.spkurumsal-wrapper .spkurumsal-pdf-title {
    flex-grow: 1;
    font-weight: 500;
    color: var(--spkurumsal-text-dark);
}

.spkurumsal-wrapper .spkurumsal-pdf-size {
    background-color: var(--spkurumsal-success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none; /* Remove any text decoration */
    border-bottom: none; /* Ensure no border-bottom is applied */
}

/* Modal styles for better responsiveness */
.spkurumsal-wrapper .spkurumsal-modal-dialog {
    max-width: 95%;
    margin: 1rem auto;
}

@media (min-width: 768px) {
    .spkurumsal-wrapper .spkurumsal-modal-dialog {
        max-width: 90%;
    }
}

@media (min-width: 992px) {
    .spkurumsal-wrapper .spkurumsal-modal-dialog {
        max-width: 800px;
    }
}

.spkurumsal-wrapper .spkurumsal-modal-content {
    border-radius: 0.5rem;
    overflow: hidden;
}

.spkurumsal-wrapper .spkurumsal-modal-header {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    border-bottom: none;
}

.spkurumsal-wrapper .spkurumsal-modal-title {
    font-weight: 500;
}

.spkurumsal-wrapper .spkurumsal-modal-body {
    padding: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-modal-footer {
    border-top: 1px solid var(--spkurumsal-divider-color);
    padding: 1rem 1.5rem;
}

/* PDF iframe container */
.spkurumsal-wrapper .spkurumsal-pdf-container {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    border: 1px solid var(--spkurumsal-border-color);
    border-radius: 0.375rem;
    overflow: hidden;
}

/* Sticky sidebar for larger screens */
@media (min-width: 992px) {
    .spkurumsal-wrapper .spkurumsal-sticky-sidebar {
        position: sticky;
        top: 1rem;
    }
}

/* Ultra-detailed responsive styles for different screen sizes */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .spkurumsal-wrapper .spkurumsal-container {
        padding: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu {
        margin-bottom: 1.25rem;
        border-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        border-bottom-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i {
        font-size: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active::before {
        width: 3px;
    }

    .spkurumsal-wrapper .spkurumsal-alert-warning {
        padding: 0.75rem 0.75rem 0.75rem 1rem;
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
        border-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-alert-warning::before {
        width: 3px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-card {
        margin-bottom: 1rem;
        border-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-card::before {
        height: 2px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo {
        padding: 0.75rem;
        border-bottom: 1px solid var(--spkurumsal-divider-color);
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo::after {
        display: none;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo img {
        max-height: 30px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details {
        padding: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details p {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
        padding-bottom: 0.375rem;
        border-bottom-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong {
        min-width: 90px;
        font-size: 0.8125rem;
        margin-bottom: 0.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong::after {
        right: 3px;
    }

    .spkurumsal-wrapper .spkurumsal-info-button {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .spkurumsal-wrapper .spkurumsal-section-divider {
        margin: 1rem 0;
    }

    .spkurumsal-wrapper .spkurumsal-section-divider::before {
        width: 30px;
    }

    .spkurumsal-wrapper .spkurumsal-info-list {
        margin-top: 1.25rem;
        border-top-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-info-list::before {
        width: 30px;
        height: 2px;
    }

    .spkurumsal-wrapper .spkurumsal-info-list li {
        font-size: 0.8125rem;
        padding-left: 0;
        margin-bottom: 0.875rem;
        padding-bottom: 0.875rem;
        line-height: 1.5;
        border-bottom-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
        font-size: 0.8125rem;
    }

    .spkurumsal-wrapper .spkurumsal-page-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card-body {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-kb-card-header {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-kb-card-body {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .spkurumsal-wrapper .spkurumsal-support-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-support-card-body {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-support-card-title {
        font-size: 1.125rem;
    }

    .spkurumsal-wrapper .spkurumsal-contact-form-header, .spkurumsal-wrapper .spkurumsal-contact-info-header {
        padding: 1rem;
        font-size: 1.125rem;
    }

    .spkurumsal-wrapper .spkurumsal-contact-form-body, .spkurumsal-wrapper .spkurumsal-contact-info-body {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-contact-info-icon {
        width: 35px;
        height: 35px;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-card {
        padding: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-icon {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-title {
        font-size: 0.875rem;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-size {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }

    /* Modal adjustments for mobile */
    .spkurumsal-wrapper .spkurumsal-modal-body {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-modal-footer {
        padding: 0.75rem 1rem;
        flex-direction: column;
    }

    .spkurumsal-wrapper .spkurumsal-modal-footer .btn {
        width: 100%;
        margin: 0.25rem 0;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-container {
        height: 60vh;
        min-height: 300px;
    }

    /* Improved bank details display for small screens */
    .spkurumsal-wrapper .spkurumsal-bank-details p {
        display: flex;
        flex-direction: column;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong {
        margin-bottom: 0.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong::after {
        display: none;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .spkurumsal-wrapper .spkurumsal-sidebar-menu {
        margin-bottom: 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
        padding: 0.875rem 1.125rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-alert-warning {
        padding: 0.875rem 0.875rem 0.875rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo {
        padding: 1rem;
        border-bottom: 1px solid var(--spkurumsal-divider-color);
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo::after {
        display: none;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo img {
        max-height: 35px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details p {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong {
        min-width: 95px;
    }

    .spkurumsal-wrapper .spkurumsal-info-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-list li {
        font-size: 0.875rem;
        padding-left: 0;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 0.625rem 0;
        margin-bottom: 0.625rem;
        font-size: 0.875rem;
    }

    .spkurumsal-wrapper .spkurumsal-page-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    /* Modal adjustments for small devices */
    .spkurumsal-wrapper .spkurumsal-modal-footer {
        flex-wrap: wrap;
    }

    .spkurumsal-wrapper .spkurumsal-modal-footer .btn {
        margin: 0.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-container {
        height: 65vh;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /* Show vertical divider on medium devices and up */
    .spkurumsal-wrapper .spkurumsal-vertical-divider {
        display: block;
    }

    .spkurumsal-wrapper .spkurumsal-content-wrapper::before {
        display: block;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
        padding: 0.9375rem 1.25rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo {
        border-right: 1px solid var(--spkurumsal-divider-color);
        border-bottom: none;
        padding: 1.125rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo::after {
        display: none;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details p {
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-button {
        padding: 0.75rem 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-list li {
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 0.75rem 0;
        margin-bottom: 0.75rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-page-title {
        font-size: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .spkurumsal-wrapper .spkurumsal-bank-logo {
        border-right: 1px solid var(--spkurumsal-divider-color);
    }

    .spkurumsal-wrapper .spkurumsal-bank-details p {
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 0.875rem 0;
        margin-bottom: 0.875rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .spkurumsal-wrapper .spkurumsal-container {
        padding: 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
        padding: 1rem 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo {
        padding: 1.5rem;
        border-right: 1px solid var(--spkurumsal-divider-color);
    }

    .spkurumsal-wrapper .spkurumsal-bank-details {
        padding: 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-button {
        padding: 0.875rem 1.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-list {
        margin-top: 1.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-list li {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-page-title {
        font-size: 2.25rem;
    }
}

/* Menu icon styles */
.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i {
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover:not(.active) i.text-primary {
    transform: translateX(3px);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active i.text-primary {
    color: var(--spkurumsal-text-light) !important;
}

/* Responsive adjustments for menu icons */
@media (max-width: 575.98px) {
    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i.me-3 {
        font-size: 0.875rem;
        margin-right: 0.5rem !important;
    }
}

/* Replace with new icon container styles */
.spkurumsal-wrapper .spkurumsal-icon-container {
    background-color: rgba(74, 99, 184, 0.1);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover:not(.active) .spkurumsal-icon-container {
    background-color: rgba(74, 99, 184, 0.2);
    transform: translateX(3px);
}

.spkurumsal-wrapper .spkurumsal-icon-container i {
    color: var(--spkurumsal-primary-color);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active .spkurumsal-icon-container {
    background-color: rgba(255, 255, 255, 0.2);
}

.spkurumsal-wrapper .spkurumsal-icon-container i {
    font-size: 14px;
    color: var(--spkurumsal-primary-color);
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active .spkurumsal-icon-container i {
    color: var(--spkurumsal-text-light);
}

/* Responsive adjustments for icon containers */
@media (max-width: 575.98px) {
    .spkurumsal-wrapper .spkurumsal-icon-container {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }

    .spkurumsal-wrapper .spkurumsal-icon-container i {
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    .spkurumsal-wrapper .spkurumsal-icon-container {
        width: 36px;
        height: 36px;
    }

    .spkurumsal-wrapper .spkurumsal-icon-container i {
        font-size: 16px;
    }
}

/* Loading indicator for PDF */
.spkurumsal-wrapper .spkurumsal-pdf-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.spkurumsal-wrapper .spkurumsal-pdf-loading-spinner {
    border: 4px solid rgba(45, 58, 94, 0.2);
    border-top: 4px solid var(--spkurumsal-primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spkurumsal-spin 1s linear infinite;
}

@keyframes spkurumsal-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Improved bank account display */
.spkurumsal-wrapper .spkurumsal-bank-account {
    font-family: monospace;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .spkurumsal-wrapper .spkurumsal-bank-account {
        word-break: break-all;
        display: block;
        margin-top: 4px;
    }
}

/* Kurumsal Slider Styles */
.spkurumsal-wrapper .spkurumsal-slider {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-md);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-slider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 10;
}

.spkurumsal-wrapper .spkurumsal-slider-item {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.spkurumsal-wrapper .spkurumsal-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.spkurumsal-wrapper .spkurumsal-slider-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.spkurumsal-wrapper .spkurumsal-slider-description {
    color: white;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.spkurumsal-wrapper .spkurumsal-slider-button {
    background-color: var(--spkurumsal-primary-color);
    color: white;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spkurumsal-wrapper .spkurumsal-slider-button:hover {
    background-color: white;
    color: var(--spkurumsal-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Bootstrap carousel overrides for isolation */
.spkurumsal-wrapper .carousel-indicators {
    margin-bottom: 1rem;
}

.spkurumsal-wrapper .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.spkurumsal-wrapper .carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

.spkurumsal-wrapper .carousel-control-prev,
.spkurumsal-wrapper .carousel-control-next {
    width: 10%;
    opacity: 0.7;
}

.spkurumsal-wrapper .carousel-control-prev:hover,
.spkurumsal-wrapper .carousel-control-next:hover {
    opacity: 1;
}

/* Responsive slider adjustments */
@media (max-width: 991.98px) {
    .spkurumsal-wrapper .spkurumsal-slider-item {
        height: 350px;
    }

    .spkurumsal-wrapper .spkurumsal-slider-title {
        font-size: 2rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .spkurumsal-wrapper .spkurumsal-slider-item {
        height: 300px;
    }

    .spkurumsal-wrapper .spkurumsal-slider-title {
        font-size: 1.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-description {
        font-size: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .spkurumsal-wrapper .spkurumsal-slider-item {
        height: 250px;
    }

    .spkurumsal-wrapper .spkurumsal-slider-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-button {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-overlay {
        padding: 1rem;
    }
}

/* Carousel isolation styles */
.spkurumsal-wrapper .spkurumsal-carousel {
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-carousel.spkurumsal-slide {
    overflow: hidden;
}

.spkurumsal-wrapper .spkurumsal-carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.spkurumsal-wrapper .spkurumsal-carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
}

.spkurumsal-wrapper .spkurumsal-carousel-item.active {
    display: block;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev,
.spkurumsal-wrapper .spkurumsal-carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev {
    left: 0;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-next {
    right: 0;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev:hover,
.spkurumsal-wrapper .spkurumsal-carousel-control-next:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 1;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev-icon,
.spkurumsal-wrapper .spkurumsal-carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.spkurumsal-wrapper .spkurumsal-carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.spkurumsal-wrapper .spkurumsal-carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.spkurumsal-wrapper .spkurumsal-carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 12px;
    height: 12px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border: 0;
    border-radius: 50%;
    transition: opacity .6s ease;
}

.spkurumsal-wrapper .spkurumsal-carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

.spkurumsal-wrapper .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Kurumsal - Hakkımızda Bitis */

/* Fiziksel Paketleri */
:root {
    --primary-color: #00a0e3;
    --dark-color: #252835;
    --light-color: #f5f5f5;
    --border-color: #e0e0e0;
    --hover-color: #f8f8f8;
    --text-color: #272a2c;
    --text-secondary: #6c757d;
    --border-radius: 20px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--light-color);
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow-x: hidden;
}

/* Logo ile hizalama için konteyner düzenlemeleri */
.spfiziksel-container {
    max-width: 100%;
    margin: 20px auto;
    padding: 0;
    width: auto;
    display: flex;
    justify-content: center;
}

.spfiziksel-container2 {
    width: 100% !important;
    max-width: 1200px; /* Logo ile aynı genişlikte olması için ayarlandı */
    margin: 0 auto;
    padding: 0 15px;
}

/* Tablo Stilleri */
.spfiziksel-vpsfiyat-tablo {
    overflow: visible;
    box-shadow: none;
    border: none;
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    font-size: 13px;
    table-layout: fixed;
}

.spfiziksel-vpsfiyat-tablo * {
    transition: var(--transition);
}

/* Tablo Başlık */
.spfiziksel-vpsfiyat-tablo > thead {
    background-color: transparent;
}

.spfiziksel-vpsfiyat-tablo thead {
    border-bottom: 1px solid #dfe6ec;
}

.spfiziksel-vpsfiyat-tablo > thead > tr > th {
    font-size: 12px;
    font-weight: 900;
    padding: 12px 0px !important;
    text-align: center;
    color: var(--text-color);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spfiziksel-vpsfiyat-tablo > thead > tr > th::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background-color: var(--primary-color);
}

.spfiziksel-vpsfiyat-tablo > thead > tr > th,
.spfiziksel-vpsfiyat-tablo > tbody > tr > th,
.spfiziksel-vpsfiyat-tablo > tfoot > tr > th,
.spfiziksel-vpsfiyat-tablo > thead > tr > td,
.spfiziksel-vpsfiyat-tablo > tbody > tr > td,
.spfiziksel-vpsfiyat-tablo > tfoot > tr > td {
    padding: 10px 8px;
    line-height: 1.3;
    vertical-align: middle;
}

/* Tablo Gövde */
.spfiziksel-vpsfiyat-tablo > tbody > tr > td {
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    background-color: #fff;
    border: 2px solid transparent;
    padding: 10px 5px;
    height: 80px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.spfiziksel-vpsfiyat-tablo > tbody td {
    border: 2px solid transparent;
}

/* Dikey çizgiler */
.spfiziksel-vpsfiyat-tablo > tbody > tr > td::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 0;
    width: 1px;
    height: calc(100% - 24px);
    background-color: var(--border-color);
}

.spfiziksel-vpsfiyat-tablo > tbody > tr > td:last-child::before {
    display: none;
}

/* Yatay çizgiler - satırlar arası */
.spfiziksel-vpsfiyat-tablo > tbody > tr {
    position: relative;
    transition: transform 0.2s ease;
}

.spfiziksel-vpsfiyat-tablo > tbody > tr::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #f0f0f0;
}

.spfiziksel-vpsfiyat-tablo > tbody > tr:last-child::after {
    display: none;
}

/* İndirim Animasyonu */
.spfiziksel-vpsfiyat-tablo > tbody > tr.spfiziksel-ttabindirim > td:first-child {
    border-left: 2px solid var(--primary-color);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.spfiziksel-vpsfiyat-tablo > tbody > tr.spfiziksel-ttabindirim > td {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.spfiziksel-vpsfiyat-tablo > tbody > tr.spfiziksel-ttabindirim > td:last-child {
    border-right: 2px solid var(--primary-color);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Animasyon Efekti */
@keyframes spfiziksel-indirimborder {
    0% {
        border-top: 2px solid var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
    }
    50% {
        border-top: 2px solid transparent;
        border-bottom: 2px solid transparent;
    }
    100% {
        border-top: 2px solid var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
    }
}

@keyframes spfiziksel-indirimbordersol {
    0% {
        border-left: 2px solid var(--primary-color);
    }
    50% {
        border-left: 2px solid transparent;
    }
    100% {
        border-left: 2px solid var(--primary-color);
    }
}

@keyframes spfiziksel-indirimborderright {
    0% {
        border-right: 2px solid var(--primary-color);
    }
    50% {
        border-right: 2px solid transparent;
    }
    100% {
        border-right: 2px solid var(--primary-color);
    }
}

/* Animasyon Sınıfları */
.spfiziksel-animate-border td {
    animation: spfiziksel-indirimborder 2s infinite;
}

.spfiziksel-animate-border td:first-child {
    animation: spfiziksel-indirimbordersol 2s infinite, spfiziksel-indirimborder 2s infinite;
}

.spfiziksel-animate-border td:last-child {
    animation: spfiziksel-indirimborderright 2s infinite, spfiziksel-indirimborder 2s infinite;
}

/* Hover Efekti */
.spfiziksel-vpsfiyat-tablo tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.spfiziksel-vpsfiyat-tablo tbody tr:hover > td {
    background: var(--hover-color);
}

.spfiziksel-vpsfiyat-tablo tbody tr:hover .spfiziksel-vpsbuton {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
    transform: translateY(-2px);
}

/* İçerik Stilleri */
.spfiziksel-d-flex2 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.spfiziksel-vpbaslik {
    font-size: 14px !important;
}

.spfiziksel-icon-wrapper {
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spfiziksel-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.spfiziksel-vpsfiyat-tablo .spfiziksel-fiyat {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 18px;
}

.spfiziksel-vpsfiyat-tablo .spfiziksel-small {
    display: block;
    font-weight: 500;
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Buton Stili */
.spfiziksel-vpsbuton {
    border-radius: var(--border-radius);
    font-size: 13px;
    padding: 0.6rem 1.5rem;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    color: white;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(144, 164, 224, 0.2);
}

.spfiziksel-vpsbuton:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 40, 53, 0.3);
}

/* Fiziksel Sunucu Stilleri - Yeni Tasarım */
.spfiziksel-server-container {
    position: relative;
    width: 100%;
    text-align: center;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 15px;
}

.spfiziksel-server-img {
    height: 30px;
    width: auto;
    display: inline-block;
    margin-top: 5px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

tr:hover .spfiziksel-server-img {
    transform: scale(1.05);
}

.spfiziksel-processor-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px 0;
    border-radius: 4px;
    z-index: 2;
}

.spfiziksel-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f4ff;
    margin-right: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

tr:hover .spfiziksel-icon-circle {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.spfiziksel-icon-circle svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

.spfiziksel-spec-value {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-color);
    display: block;
    margin-bottom: 1px;
}

/* Tablo başlık arkaplanı ve gövde hizalama */
.spfiziksel-table-header-bg {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    width: 100%;
    overflow: hidden;
}

/* Tablo responsive container */
.spfiziksel-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Büyük Ekranlar için Responsive Düzenlemeler */
@media screen and (min-width: 1400px) {
    .spfiziksel-container2 {
        max-width: 1200px; /* Logo ile aynı genişlikte olması için sabit değer */
    }

    .spfiziksel-vpsfiyat-tablo > tbody > tr > td {
        padding: 15px 8px;
        height: 90px;
    }

    .spfiziksel-icon-circle {
        width: 36px;
        height: 36px;
    }

    .spfiziksel-icon-circle svg {
        width: 18px;
        height: 18px;
    }

    .spfiziksel-spec-value {
        font-size: 16px;
    }

    .spfiziksel-server-img {
        height: 35px;
    }

    .spfiziksel-processor-title {
        font-size: 13px;
    }

    .spfiziksel-server-container {
        height: 70px;
    }
}

/* Orta Ekranlar için Responsive Düzenlemeler */
@media screen and (max-width: 1200px) {
    .spfiziksel-container2 {
        max-width: 100%;
        padding: 0 15px;
    }

    .spfiziksel-vpsfiyat-tablo > tbody > tr > td {
        padding: 10px 4px;
    }

    .spfiziksel-icon-circle {
        width: 28px;
        height: 28px;
        margin-right: 5px;
    }

    .spfiziksel-spec-value {
        font-size: 13px;
    }

    .spfiziksel-server-img {
        height: 28px;
    }

    .spfiziksel-processor-title {
        font-size: 11px;
    }

    /* Dikey çizgiler */
    .spfiziksel-vpsfiyat-tablo > tbody > tr > td::before {
        top: 8px;
        height: calc(100% - 16px);
    }
}

/* Tablet Ekranlar için Responsive Düzenlemeler */
@media screen and (max-width: 992px) {
    .spfiziksel-table-responsive {
        border: none;
        margin-bottom: 0;
    }

    .spfiziksel-vpsfiyat-tablo {
        border-spacing: 0 !important;
    }

    .spfiziksel-vpsfiyat-tablo thead {
        display: none;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr {
        display: block;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: var(--box-shadow);
        overflow: hidden;
        background-color: #fff;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .spfiziksel-vpsfiyat-tablo tbody tr.spfiziksel-ttabindirim {
        border: 2px solid var(--primary-color);
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px !important;
        text-align: right;
        border-bottom: 1px solid var(--border-color);
        border-top: none !important;
        border-left: none !important;
        border-right: none !important;
        animation: none !important;
        height: auto;
        background-color: transparent !important;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td::before {
        display: none;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td:last-child {
        border-bottom: none;
        justify-content: center;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        background-color: #f9fafc !important;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td:before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-color);
        text-align: left;
        padding-right: 8px;
        min-width: 100px;
        border-right: 1px solid var(--border-color);
        margin-right: 12px;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td:last-child:before {
        display: none;
    }

    .spfiziksel-d-flex2 {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        height: auto;
    }

    .spfiziksel-icon-wrapper {
        display: none;
    }

    .spfiziksel-vpsbuton {
        width: 100%;
        display: block;
        text-align: center;
        padding: 0.6rem 1.2rem;
    }

    .spfiziksel-vpbaslik {
        font-size: 14px !important;
        text-align: right;
    }

    .spfiziksel-vpsfiyat-tablo .spfiziksel-fiyat {
        font-size: 16px;
    }

    .spfiziksel-server-container {
        justify-content: flex-end;
        height: auto;
        flex-direction: row;
        padding-top: 0;
    }

    .spfiziksel-server-img {
        display: inline-block;
        height: 26px;
        margin-top: 0;
        margin-left: 8px;
    }

    .spfiziksel-processor-title {
        position: static;
        text-align: right;
        font-size: 14px;
        background-color: transparent;
        padding: 0;
    }

    .spfiziksel-icon-circle {
        width: 26px;
        height: 26px;
        margin-right: 6px;
    }

    .spfiziksel-spec-value {
        font-size: 14px;
        margin-bottom: 0;
    }

    /* Mobil için animasyon düzeltmesi */
    .spfiziksel-animate-border {
        border: 2px solid var(--primary-color) !important;
        animation: spfiziksel-mobilBorder 2s infinite !important;
    }

    @keyframes spfiziksel-mobilBorder {
        0% {
            border-color: var(--primary-color) !important;
        }
        50% {
            border-color: transparent !important;
        }
        100% {
            border-color: var(--primary-color) !important;
        }
    }

    /* Yatay çizgiler - satırlar arası */
    .spfiziksel-vpsfiyat-tablo > tbody > tr::after {
        display: none;
    }
}

/* Küçük Tablet Ekranlar için Responsive Düzenlemeler */
@media screen and (max-width: 768px) {
    .spfiziksel-container {
        padding: 0 10px;
    }

    .spfiziksel-container2 {
        padding: 0 5px;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td {
        padding: 8px 12px !important;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td:before {
        min-width: 90px;
        font-size: 13px;
        margin-right: 10px;
    }

    .spfiziksel-server-img {
        height: 24px;
    }

    .spfiziksel-processor-title {
        font-size: 13px;
    }

    .spfiziksel-icon-circle {
        width: 24px;
        height: 24px;
    }

    .spfiziksel-spec-value {
        font-size: 13px;
    }
}

/* Mobil Ekranlar için Responsive Düzenlemeler */
@media screen and (max-width: 576px) {
    .spfiziksel-container {
        padding: 0 5px;
    }

    .spfiziksel-container2 {
        padding: 0;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td {
        padding: 8px 10px !important;
        font-size: 13px;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td:before {
        min-width: 80px;
        font-size: 12px;
        padding-right: 6px;
        margin-right: 6px;
    }

    .spfiziksel-vpsfiyat-tablo .spfiziksel-fiyat {
        font-size: 15px;
    }

    .spfiziksel-vpsfiyat-tablo .spfiziksel-small {
        font-size: 10px;
    }

    .spfiziksel-vpsbuton {
        padding: 0.5rem 1rem;
        font-size: 12px;
    }

    .spfiziksel-icon-circle {
        width: 22px;
        height: 22px;
        margin-right: 5px;
    }

    .spfiziksel-icon-circle svg {
        width: 12px;
        height: 12px;
    }

    .spfiziksel-spec-value {
        font-size: 13px;
    }

    .spfiziksel-server-img {
        height: 22px;
        margin-left: 6px;
    }

    .spfiziksel-processor-title {
        font-size: 12px;
    }
}

/* Çok Küçük Ekranlar için Responsive Düzenlemeler */
@media screen and (max-width: 400px) {
    .spfiziksel-vpsfiyat-tablo tbody tr td {
        padding: 6px 8px !important;
        font-size: 12px;
    }

    .spfiziksel-vpsfiyat-tablo tbody tr td:before {
        min-width: 70px;
        font-size: 11px;
        padding-right: 5px;
        margin-right: 5px;
    }

    .spfiziksel-vpsfiyat-tablo .spfiziksel-fiyat {
        font-size: 14px;
    }

    .spfiziksel-vpsfiyat-tablo .spfiziksel-small {
        font-size: 9px;
    }

    .spfiziksel-vpsbuton {
        padding: 0.4rem 0.8rem;
        font-size: 11px;
    }

    .spfiziksel-icon-circle {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }

    .spfiziksel-icon-circle svg {
        width: 10px;
        height: 10px;
    }

    .spfiziksel-spec-value {
        font-size: 12px;
    }

    .spfiziksel-server-img {
        height: 20px;
        margin-left: 5px;
    }

    .spfiziksel-processor-title {
        font-size: 11px;
    }
}

/* Yeni Eklenen Özellikler */
.spfiziksel-vpsfiyat-tablo > thead > tr > th {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--primary-color);
}

.spfiziksel-vpsfiyat-tablo > tbody > tr {
    transition: all 0.3s ease;
}

.spfiziksel-vpsfiyat-tablo > tbody > tr > td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.spfiziksel-vpsfiyat-tablo > tbody > tr > td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* İndirim Etiketi */
.spfiziksel-discount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff6b6b;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transform: rotate(5deg);
}

@media (max-width: 992px) {
    .spfiziksel-discount-badge {
        position: static;
        display: inline-block;
        margin-left: 6px;
        transform: none;
        font-size: 9px;
        padding: 1px 5px;
        vertical-align: middle;
    }
}

/* Gelişmiş Animasyonlar */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

.spfiziksel-animate-border .spfiziksel-vpsbuton {
    animation: pulse 2s infinite;
}

/* Gelişmiş Erişilebilirlik */
.spfiziksel-vpsfiyat-tablo:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.spfiziksel-vpsbuton:focus {
    outline: 2px solid var(--dark-color);
    outline-offset: 2px;
}

/* Sayfa Yükleme Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spfiziksel-fiyatalan {
    animation: fadeIn 0.4s ease-out;
}

.spfiziksel-paket-row {
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
}

#paket1 {
    animation-delay: 0.1s;
}

#paket2 {
    animation-delay: 0.15s;
}

#paket3 {
    animation-delay: 0.2s;
}

#paket4 {
    animation-delay: 0.25s;
}

/* Fiziksel Paketleri Bitis */
/* dedicated page Css */
/* xThema Menu-Top-bar*/
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.promo-banner h2 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
}

.promo-banner p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.promo-banner .btn-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.promo-banner .btn-white:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .promo-banner {
        display: none;
    }
}

.top-bar {
    font-size: 13.5px;
    padding: 12px 0;
    color: #e0e0e0;
    font-weight: 500;
    border-top: 2px solid transparent;
    background: linear-gradient(to left, rgba(28, 35, 49, 0.9), rgb(0 160 227));
    border-image-slice: 1;
}

.top-bar a,
.top-bar .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 8px;
    font-weight: 500;
    line-height: 1;
}

.top-bar a:hover,
.top-bar .dropdown-toggle:hover {
    color: #ffffff;
}

.top-bar a svg,
.top-bar .dropdown-toggle svg {
    width: 14px;
    height: 14px;
    position: relative;
    top: -1px;
    vertical-align: middle;
}

.top-bar a span,
.top-bar .dropdown-toggle span {
    position: relative;
    top: 0.5px;
}

.navbar {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky; /* MenÃ¼ KaydÄ±ÄŸÄ±nda sabit olacak */
    width: 100%; /* GeniÅŸlik tamamen dolu olacak */
    top: 50px; /* BaÅŸlangÄ±Ã§ta topbarÄ±n altÄ±na yerleÅŸir */
    z-index: 1000; /* DiÄŸer elemanlarÄ±n Ã¼stÃ¼nde */
    transition: top 0.3s ease-in-out; /* GeÃ§iÅŸ efekti */
}

.navbar.sticky {
    top: 0; /* Sayfa kaydÄ±ÄŸÄ±nda menÃ¼ en Ã¼ste geÃ§er */
}

.navbar-brand img {
    height: 38px;
    width: auto;
}

.navbar-nav {
    gap: 5px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #555;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    white-space: nowrap;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: var(--btn-hover);
}

.navbar-nav .dropdown-item {
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-nav .dropdown-item:hover {
    color: var(--primary-red);
    background-color: #f8f9fa;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

.navbar-nav .divider {
    border-right: 1px solid #e0e0e0;
    height: 1.5em;
    margin: 0 5px;
    align-self: center;
}

.badge-new {
    background-color: var(--primary-red) !important;
    font-size: 11px;
    padding: 0.25em 0.6em;
    margin-left: 6px;
    font-weight: 400;
    vertical-align: middle;
}

.btn-login {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    color: #333;
    font-size: 14.5px;
    padding: 8px 16px;
    font-weight: 400;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.btn-login:active,
.btn-login:focus,
.btn-login:focus-visible,
.btn-login:hover {
    background-color: #f1f3f5;
    color: var(--btn-hover);
    border-color: #ced4da;
}

.btn-login .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--success-green);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 400;
}

.btn-login svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    font-size: 14.5px;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 8px 16px;
    font-weight: 300;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-red);
}

.top-bar .dropdown-menu {
    min-width: 160px;
    margin-top: 10px;
}

.top-bar .dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.8;
}

/* Updated Mega Menu Styles */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
    z-index: 1000;
}

.mega-menu.show {
    opacity: 1;
    visibility: visible;
}

.hosting-option {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hosting-option:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.hosting-option .icon {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.6s ease;
}

.hosting-option:hover .icon {
    transform: rotate(360deg);
}

.hosting-option .content h3 {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hosting-option .content p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.mega-menu-divider {
    position: relative;
}

.mega-menu-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: rgba(102, 112, 147, 0.2);
}

@media (max-width: 991.98px) {
    .offcanvas {
        max-width: 300px;
    }

    .offcanvas .nav-link {
        padding: 12px 16px;
        border-bottom: 1px solid #eee;
        font-size: 15px;
    }

    .navbar-brand img {
        height: 32px;
    }

    .offcanvas-header {
        padding: 16px;
        border-bottom: 1px solid #eee;
    }

    .offcanvas-header .btn-close {
        margin: 0;
    }

    .offcanvas-title {
        font-size: 18px;
        font-weight: 500;
    }

    .offcanvas .btn-login {
        margin: 16px;
        width: calc(100% - 32px);
        text-align: center;
        font-size: 13.5px;
        padding: 6px 12px;
    }

    .navbar-nav .divider {
        display: none;
    }

    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 0;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        border-top: none;
        opacity: 1;
        visibility: visible;
    }

    .hosting-option {
        padding: 0.75rem;
        border-bottom: 1px solid #eee;
    }

    .hosting-option .icon {
        width: 32px;
        height: 32px;
    }

    .hosting-option:last-child {
        border-bottom: none;
    }

    .mega-menu-divider::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .navbar {
        padding: 10px 0;
    }

    .top-bar-mobile-dropdown .dropdown-menu {
        position: absolute;
        left: auto;
        right: 0;
        top: 100%;
        margin-top: 5px;
        border-radius: 0.25rem;
        max-height: none;
        overflow-y: visible;
    }

    .top-bar-mobile-dropdown .dropdown-toggle::after {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .top-bar {
        font-size: 12px;
    }

    .top-bar a, .top-bar .dropdown-toggle {
        padding: 2px 4px;
    }
}

.nav-link, .dropdown-item, .btn-login, .top-bar a {
    transition: all 0.2s ease-in-out;
}

.dropdown-menu {
    display: none;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-menu.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar .align-items-center {
    height: 100%;
}

.top-bar .divider {
    border-right: 1px solid rgba(224, 224, 224, 0.3);
    height: 1em;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .top-bar .divider {
        display: none;
    }
}

.promo-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.promo-banner-text {
    flex: 1;
}

.promo-banner-text h2 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.promo-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.promo-btn {
    background: #fff;
    color: #4A6ED3;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #4A6ED3;
}

@media (max-width: 768px) {
    .promo-banner {
        display: none;
    }
}

/* xThema Menu-Top-bar BitiÅŸ*/

/* xThema Reklam-Slider */

/* Update 2: Added .xslider-body styles */
.xslider-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333333;
}

/* Announcement Banner Styles */
.xslider-announcement-banner {
    background: linear-gradient(135deg, #0f9fe0 0%, #2a475b 100%);
    color: white;
    padding: 0.5rem 0; /* Update 1 */
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.xslider-announcement-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #424867;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    margin: 0 0.3rem; /* Update 2 */
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.xslider-announcement-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.xslider-announcement-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.xslider-announcement-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.xslider-announcement-text {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.xslider-announcement-content { /* Update 6 */
    gap: 0.3rem;
}

@media (max-width: 575.98px) {
    /* Update 6 */
    .xslider-announcement-content {
        gap: 0.2rem;
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.xslider-announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@media (max-width: 767.98px) {
    /* Update 3 */
    .xslider-announcement-banner {
        padding: 0.4rem 40px 0.4rem 0.4rem;
        text-align: center;
        font-size: 0.9rem;
    }

    .xslider-announcement-highlight {
        padding: 0.1rem 0.3rem;
        margin: 0.1rem;
        font-size: 0.85rem;
    }

    .xslider-announcement-close {
        width: 25px;
        height: 25px;
        font-size: 1rem;
        right: 10px;
    }
}

@media (max-width: 575.98px) {
    /* Update 4 */
    .xslider-announcement-banner {
        font-size: 0.7rem;
    }

    .xslider-announcement-highlight {
        padding: 0.1rem 0.2rem;
        margin: 0.1rem 0;
    }

    .xslider-announcement-close {
        padding: 0.1rem 0.3rem;
        font-size: 1rem;
    }
}

/* Existing Styles */
.xslider-bg-custom {
    background-image: url('../img/slider-1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    filter: brightness(0.98) contrast(1.02);
    backdrop-filter: blur(1px);
    transition: background-image 0.5s ease-in-out;
}

.xslider-bg-image-filter {
    filter: brightness(0.98) contrast(1.02);
    backdrop-filter: blur(1px);
}

.xslider-bg-gradient-custom {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    min-height: 400px;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none;
    padding: 0.6rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background-color: #424867;
    margin-right: 1px;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background-color: #4a5174;
}

.nav-tabs .nav-link.active {
    color: #424867;
    background-color: #fff;
    font-weight: 700;
}

.tab-content {
    background-color: #fff;
    border-top: 2px solid #424867;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-pane {
    padding: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #333333;
}

.btn-custom {
    background-color: #8BA3FB;
    border-color: #8BA3FB;
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn-custom:hover {
    background-color: #7B93EB;
    border-color: #7B93EB;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(139, 163, 251, 0.4);
}

.btn-custom:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(139, 163, 251, 0.4);
}

.btn-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: inherit;
    transition: transform 0.3s ease;
}

.btn-custom:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.text-primary {
    color: #8BA3FB !important;
}

.border-primary {
    border-color: #424867 !important;
}

.xslider-content-box {
    max-width: 400px;
    width: 100%;
}

@media (max-width: 991.98px) {
    .xslider-content-box {
        max-width: 100%;
    }
}

.price {
    font-size: 2rem;
    font-weight: 500;
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
    vertical-align: super;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #333333;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8BA3FB;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .xslider-bg-custom, .xslider-bg-gradient-custom {
        min-height: 350px;
    }

    .xslider-content-box {
        max-width: 100%;
    }

    .nav-tabs .nav-link {
        font-size: 0.65rem;
        padding: 0.5rem 0.3rem;
    }

    .tab-pane {
        padding: 1.2rem;
    }

    .price {
        font-size: 1.75rem;
    }

    .currency {
        font-size: 1.1rem;
    }

    .feature-list li {
        font-size: 0.8rem;
    }
}

.xslider-image-wrapper {
    position: relative;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.xslider-poster-effect {
    max-width: 350px;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.xslider-poster-effect:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.xslider-image-wrapper::before,
.xslider-image-wrapper::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.xslider-image-wrapper::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.xslider-image-wrapper::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.xslider-image-wrapper-position {
    position: relative;
    top: -40px;
    right: -80px;
}

.text-end {
    text-align: end;
}

@keyframes slideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@media (max-width: 991.98px) {
    .xslider-content-box {
        max-width: 100%;
    }

    .xslider-image-wrapper-position {
        top: 0;
        right: 0;
    }
}

@media (max-width: 767.98px) {
    .xslider-bg-custom, .xslider-bg-gradient-custom {
        min-height: 300px;
    }

    .xslider-content-box {
        max-width: 100%;
    }

    .nav-tabs .nav-link {
        font-size: 0.6rem;
        padding: 0.4rem 0.2rem;
    }

    .tab-pane {
        padding: 1rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .currency {
        font-size: 1rem;
    }

    .feature-list li {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .nav-tabs .nav-link {
        font-size: 0.55rem;
        padding: 0.3rem 0.1rem;
    }

    .tab-pane {
        padding: 0.8rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .currency {
        font-size: 0.9rem;
    }

    .feature-list li {
        font-size: 0.7rem;
    }

    .btn-custom {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
    }
}

/* xThema Reklam-Slider BitiÅŸ */

/* xThema wordpress-reklam */

.wpreklam-custom-banner {
    background: linear-gradient(to right, #1C2331, #3a4b7c, #7386FF);
    padding: 18px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.wpreklam-custom-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(28, 35, 49, 0.9), rgb(0 160 227));
    z-index: 1;
}

.wpreklam-custom-banner .container {
    position: relative;
    z-index: 2;
}

.wpreklam-custom-banner h2 {
    font-size: 24px;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 600;
}

.wpreklam-btn {
    font-size: 16px;
    padding: 6px 16px;
    margin-left: 20px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.wpreklam-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.wpreklam-btn:hover::before {
    left: 100%;
}

.wpreklam-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .wpreklam-custom-banner {
        padding: 15px 0;
    }

    .wpreklam-custom-banner h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .wpreklam-btn {
        font-size: 14px;
        padding: 5px 14px;
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .wpreklam-custom-banner h2 {
        font-size: 18px;
    }

    .wpreklam-btn {
        font-size: 12px;
        padding: 4px 12px;
    }
}

/* xThema wordpress-reklam BitiÅŸ */

/* xThema Anasayfa-slider'altÄ± partner */

.xtpartner-partners-section {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

.xtpartner-partner-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    height: 28px;
    width: auto;
    transition: all 0.3s ease;
}

.xtpartner-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.xtpartner-partner-divider {
    width: 1px;
    height: 40px;
    background-color: #e5e7eb;
    margin: 0 0.125rem;
}

.xtpartner-awesome-partners-text {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.xtpartner-partner-logo-container {
    margin: 0 0.125rem;
    overflow: hidden;
    position: relative;
}

.xtpartner-partner-logo-container:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.13) 0%,
            rgba(255, 255, 255, 0.13) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 0.0) 100%
    );
}

.xtpartner-partner-logo-container:hover:after {
    opacity: 1;
    left: 130%;
    transition: all 0.7s ease-in-out;
}

.xtpartner-partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .xtpartner-partners-section {
        display: none;
    }
}

/* xThema Anasayfa-slider'altÄ± partner BitiÅŸ */


/* xThema Anasayfa-xDomain Sorgulama */


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xdomains-bg-custom-blue {
    background-color: #0055FB;
}

.xdomains-bg-custom-yellow {
    background-color: #FFB800;
}

.xdomains-text-custom-dark {
    color: #0A2540;
}

.xdomains-promotion-bg {
    background-image: url('../img/domain-back.avif');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.xdomains-promotion-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    transition: backdrop-filter 0.3s ease;
}

.xdomains-promotion-bg:hover::before {
    backdrop-filter: blur(2px);
}

.xdomains-promotion-content {
    position: relative;
    z-index: 1;
}

.xdomains-domain-card {
    transition: transform 0.3s ease;
}

.xdomains-domain-card:hover {
    transform: translateY(-5px);
}

.xdomains-nav-tabs .nav-link {
    color: var(--btn-primary-bg);
    font-weight: 600;
    border: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.xdomains-nav-tabs .nav-link:hover,
.xdomains-nav-tabs .nav-link.active {
    color: var(--btn-hover);
    background-color: transparent;
    border-bottom: 2px solid var(--btn-hover);
}

.xdomains-nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.xdomains-promotion-badge {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xdomains-promotion-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.xdomains-promotion-title {
    transition: transform 0.3s ease;
}

.xdomains-promotion-title:hover {
    transform: translateY(-3px);
}

.xdomains-promotion-subtitle {
    transition: transform 0.3s ease;
}

.xdomains-promotion-subtitle:hover {
    transform: translateX(5px);
}

.xdomains-promotion-button {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xdomains-promotion-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.xdomains-promotion-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xdomains-promotion-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.xdomains-btn-custom-blue {
    background: var(--btn-primary-bg) !important;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.xdomains-btn-custom-blue:hover {
    background: var(--btn-primary-bg-hover) !important;
    color: white;
    transform: translateY(-2px);
}

.xdomains-domain-card .card-body {
    min-height: 80px;
    padding: 0.5rem;
}

.xdomains-domain-logo {
    max-height: 25px;
    width: auto;
    margin-bottom: 0.5rem;
}

.xdomains-domain-price {
    font-size: 0.8rem;
}

.xdomains-domain-price .xdomains-original-price {
    font-size: 0.7rem;
}

.xdomains-domain-price .xdomains-current-price {
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .xdomains-display-6 {
        font-size: 1.75rem;
    }

    .xdomains-lead {
        font-size: 0.9rem;
    }

    .xdomains-nav-tabs .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.4rem;
    }

    .xdomains-promotion-title {
        font-size: 2rem;
    }

    .xdomains-promotion-subtitle {
        font-size: 1rem;
    }

    .xdomains-domain-card .card-body {
        min-height: 70px;
    }

    .xdomains-domain-logo {
        max-height: 20px;
    }

    .xdomains-domain-price {
        font-size: 0.7rem;
    }

    .xdomains-domain-price .xdomains-original-price {
        font-size: 0.6rem;
    }

    .xdomains-domain-price .xdomains-current-price {
        font-size: 0.8rem;
    }
}


/* xThema Anasayfa-xDomain Sorgulama BitiÅŸ */


/* xThema BoÅŸluk atma <br> gÃ¶revi gÃ¶rÃ¼r */

.xtema-br {
    display: block;
    height: 1em; /* Bu, satÄ±r aralÄ±ÄŸÄ±nÄ± ayarlamak iÃ§in kullanÄ±labilir */
}

/* xThema BoÅŸluk atma <br> gÃ¶revi gÃ¶rÃ¼r BitiÅŸ */


/* xThema Footer */


.xfooter-footer * {
    box-sizing: border-box;
}

.xfooter-footer {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background: linear-gradient(to bottom, var(--btn-primary-bg), #163b60);
    color: #fff;
    font-size: 0.875rem;
    border-top: 5px solid #add6f0;
}

.xfooter-footer-link {
    color: #b8c5ff;
    text-decoration: none;
    transition: color 0.2s;
}

.xfooter-footer-link:hover {
    color: #fff;
}

.xfooter-footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.xfooter-footer-text {
    color: #b8c5ff;
}

.xfooter-accordion-button {
    background-color: transparent !important;
    color: #fff !important;
    padding: 0.75rem 0;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    border: none;
}

.xfooter-accordion-button:not(.collapsed) {
    box-shadow: none;
}

.xfooter-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
    float: right;
    margin-left: 0.5rem;
    transition: transform 0.2s ease-in-out;
}

.xfooter-accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.xfooter-accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #3d4b8e;
}

.xfooter-accordion-item:last-of-type {
    border-bottom: none;
}

.xfooter-accordion-body {
    padding: 0.5rem 0 1rem;
}

@media (max-width: 991.98px) {
    .xfooter-footer-desktop {
        display: none;
    }
}

@media (min-width: 992px) {
    .xfooter-footer-mobile {
        display: none;
    }
}

.xfooter-footer-bottom {
    background-color: #141b3d;
    color: #b8c5ff;
    font-size: 0.75rem;
    padding: 0.75rem 0;
}

.xfooter-footer-bottom .xfooter-footer-link {
    color: #b8c5ff;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.xfooter-footer-bottom .xfooter-footer-link:hover {
    color: #fff;
}

/* xThema Footer BitiÅŸ */


/* xThema Paket-1 */


body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xpaket1-feature-icon {
    width: 20px;
    height: 20px;
    color: #6c757d;
    stroke-width: 1.5;
}

.xpaket1-price-card {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    border-top: 5px solid var(--btn-hover);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.xpaket1-discount-badge {
    background-color: #ffd54f;
    color: #000;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
}

.xpaket1-old-price {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 0.8em;
    margin-bottom: 2px;
}

.xpaket1-btn-purchase {
    background-color: var(--btn-primary-bg);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 0;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.xpaket1-btn-purchase:active,
.xpaket1-btn-purchase:focus,
.xpaket1-btn-purchase:focus-visible,
.xpaket1-btn-purchase:hover {
    background-color: var(--btn-hover) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(122, 145, 212, 0.3);
}

.xpaket1-specs-row {
    padding: 10px 0;
    border-bottom: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.xpaket1-specs-row:hover {
    background-color: #f8f9fa;
    border-bottom-color: #adb5bd;
}

.xpaket1-specs-row:last-of-type {
    border-bottom: none;
}

.xpaket1-server-type {
    color: #6c757d;
    font-size: 0.65em;
    letter-spacing: 1px;
    margin-top: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.xpaket1-form-select {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.85em;
    color: #495057;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.xpaket1-form-select:focus {
    border-color: #90a4e0;
    box-shadow: 0 0 0 0.2rem rgba(144, 164, 224, 0.25);
}

.xpaket1-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #212529;
    line-height: 1;
}

.xpaket1-price-decimal {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: super;
}

.xpaket1-price-period {
    color: #6c757d;
    font-size: 0.8em;
    margin-top: 2px;
    font-weight: 400;
}

.xpaket1-spec-label {
    font-size: 0.75em;
    color: #343a40;
    margin-bottom: 1px;
    font-weight: 700;
}

.xpaket1-spec-value {
    font-size: 0.7em;
    color: #6c757d;
    font-weight: 400;
}

.xpaket1-h3 {
    font-weight: 800;
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 2px;
}

.xpaket1-container {
    max-width: 1200px;
}

.xpaket1-server-title {
    border-bottom: 3px solid #dee2e6;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.xpaket1-price-section {
    border-top: 3px solid #dee2e6;
    padding-top: 20px;
    margin-top: auto;
}

.xpaket1-price-card:hover .xpaket1-server-title,
.xpaket1-price-card:hover .xpaket1-price-section {
    border-color: #adb5bd;
}

.xpaket1-specs-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

@media (max-width: 1399.98px) {
    .xpaket1-container {
        max-width: 1140px;
    }
}

@media (max-width: 1199.98px) {
    .xpaket1-container {
        max-width: 960px;
    }

    .xpaket1-price-amount {
        font-size: 2rem;
    }

    .xpaket1-spec-label, .xpaket1-spec-value {
        font-size: 0.7em;
    }
}

@media (max-width: 991.98px) {
    .xpaket1-container {
        max-width: 720px;
    }

    .xpaket1-price-card {
        margin-bottom: 20px;
    }

    .xpaket1-price-amount {
        font-size: 1.8rem;
    }

    .xpaket1-h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .xpaket1-container {
        max-width: 540px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .xpaket1-price-card {
        padding: 15px;
    }

    .xpaket1-specs-container {
        padding: 8px;
    }

    .xpaket1-specs-row {
        padding: 8px 0;
    }

    .xpaket1-server-title {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }

    .xpaket1-price-section {
        padding-top: 15px;
    }

    .xpaket1-price-amount {
        font-size: 1.6rem;
    }

    .xpaket1-btn-purchase {
        padding: 8px 0;
        font-size: 0.85em;
    }
}

@media (max-width: 575.98px) {
    .xpaket1-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .xpaket1-price-card {
        padding: 12px;
    }

    .xpaket1-specs-container {
        padding: 6px;
    }

    .xpaket1-specs-row {
        padding: 6px 0;
    }

    .xpaket1-price-amount {
        font-size: 1.4rem;
    }

    .xpaket1-spec-label, .xpaket1-spec-value {
        font-size: 0.65em;
    }

    .xpaket1-server-title {
        padding-bottom: 10px;
        margin-bottom: 12px;
    }

    .xpaket1-price-section {
        padding-top: 12px;
    }
}

.xpaket1-section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.xpaket1-section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}

.xpaket1-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, var(--btn-hover), transparent);
    margin: 20px auto 30px;
    width: 80%;
    max-width: 300px;
}

/* xThema Paket-1 BitiÅŸ */

/* xThema Paket 2 */

/* xThema Paket-1 */
body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xpaket2-feature-icon {
    width: 20px;
    height: 20px;
    color: #6c757d;
    stroke-width: 1.5;
}

.xpaket2-price-card {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    border-top: 5px solid #42b8d4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.xpaket2-discount-badge {
    background-color: #ffd54f;
    color: #000;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
}

.xpaket2-old-price {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 0.8em;
    margin-bottom: 2px;
}

.xpaket2-btn-purchase {
    background-color: #90a4e0;
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 0;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.xpaket2-btn-purchase:hover {
    background-color: #7a91d4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(122, 145, 212, 0.3);
}

.xpaket2-specs-row {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.xpaket2-specs-row:last-of-type {
    border-bottom: none;
}

.xpaket2-server-type {
    color: #6c757d;
    font-size: 0.65em;
    letter-spacing: 1px;
    margin-top: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.xpaket2-form-select {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.85em;
    color: #495057;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.xpaket2-form-select:focus {
    border-color: #90a4e0;
    box-shadow: 0 0 0 0.2rem rgba(144, 164, 224, 0.25);
}

.xpaket2-price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #212529;
    line-height: 1;
}

.xpaket2-price-decimal {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: super;
}

.xpaket2-price-period {
    color: #6c757d;
    font-size: 0.8em;
    margin-top: 2px;
    font-weight: 400;
}

.xpaket2-spec-label {
    font-size: 0.85em;
    color: #343a40;
    margin-bottom: 1px;
    font-weight: 600;
}

.xpaket2-spec-value {
    font-size: 0.8em;
    color: #6c757d;
    font-weight: 400;
}

.xpaket2-h3 {
    font-weight: 800;
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 2px;
}

.xpaket2-container {
    max-width: 1200px;
}

.xpaket2-server-title {
    border-bottom: 3px solid #dee2e6;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.xpaket2-price-section {
    border-top: 3px solid #dee2e6;
    padding-top: 20px;
    margin-top: auto;
}

.xpaket2-price-card:hover .xpaket2-server-title,
.xpaket2-price-card:hover .xpaket2-price-section {
    border-color: #adb5bd;
}

.xpaket2-specs-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

@media (max-width: 1399.98px) {
    .xpaket2-container {
        max-width: 1140px;
    }
}

@media (max-width: 1199.98px) {
    .xpaket2-container {
        max-width: 960px;
    }

    .xpaket2-price-amount {
        font-size: 2rem;
    }

    .xpaket2-spec-label, .xpaket2-spec-value {
        font-size: 0.7em;
    }
}

@media (max-width: 991.98px) {
    .xpaket2-container {
        max-width: 720px;
    }

    .xpaket2-price-card {
        margin-bottom: 20px;
    }

    .xpaket2-price-amount {
        font-size: 1.8rem;
    }

    .xpaket2-h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .xpaket2-container {
        max-width: 540px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .xpaket2-price-card {
        padding: 15px;
    }

    .xpaket2-specs-container {
        padding: 8px;
    }

    .xpaket2-specs-row {
        padding: 8px 0;
    }

    .xpaket2-server-title {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }

    .xpaket2-price-section {
        padding-top: 15px;
    }

    .xpaket2-price-amount {
        font-size: 1.6rem;
    }

    .xpaket2-btn-purchase {
        padding: 8px 0;
        font-size: 0.85em;
    }
}

@media (max-width: 575.98px) {
    .xpaket2-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .xpaket2-price-card {
        padding: 12px;
    }

    .xpaket2-specs-container {
        padding: 6px;
    }

    .xpaket2-specs-row {
        padding: 6px 0;
    }

    .xpaket2-price-amount {
        font-size: 1.4rem;
    }

    .xpaket2-spec-label, .xpaket2-spec-value {
        font-size: 0.65em;
    }

    .xpaket2-server-title {
        padding-bottom: 10px;
        margin-bottom: 12px;
    }

    .xpaket2-price-section {
        padding-top: 12px;
    }
}

.xpaket2-section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.xpaket2-section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}

.xpaket2-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, #42b8d4, transparent);
    margin: 20px auto 30px;
    width: 80%;
    max-width: 300px;
}

/* Yeni eklenen stiller */
.info-icon {
    cursor: pointer;
    margin-left: 5px;
    color: #6c757d;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.xpaket2-specs-row {
    position: relative;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.xpaket2-feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.xpaket2-spec-label {
    font-weight: bold;
}

.xpaket2-spec-value {
    color: #666;
}

.info-icon-wrapper {
    position: relative;
    display: inline-block;
}

.info-icon {
    cursor: pointer;
    color: #888;
}

.tooltiptext {
    visibility: hidden;
    width: 300px;
    max-width: 90vw;
    background-color: #555;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 125%;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.tooltiptext::before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 10px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
}

.tooltiptext.show {
    visibility: visible;
    opacity: 1;
}

.tooltiptext ul {
    margin: 0;
    padding-left: 20px;
}

.tooltiptext ul li {
    margin-bottom: 5px;
}

.tooltiptext ul ul {
    margin-top: 5px;
}

/* xThema Paket 3 Bitiş */


/* xThema xBanner-1 */

.xbanner1 .banner-wrapper {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    transition: padding 0.3s ease;
}

.xbanner1 .banner-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80%;
    height: 140%;
    background-color: #e8f3ff;
    transform: rotate(-12deg);
    z-index: -1;
    transition: all 0.3s ease;
}

.xbanner1 .banner-image {
    border-radius: 15px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xbanner1 .banner-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.xbanner1 .price-text {
    font-size: 1.75rem;
    font-weight: 600;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.xbanner1 .price-text:hover {
    color: var(--btn-hover);
}

.xbanner1 .price-period {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

.xbanner1 .btn-custom {
    background-color: var(--btn-primary-bg);
    border: none;
    color: white;
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(139, 154, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.xbanner1 .btn-custom:hover {
    background-color: var(--btn-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(139, 154, 255, 0.3);
}

.xbanner1 .btn-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.xbanner1 .btn-custom:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.xbanner1 h1.display-4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.xbanner1 h1.display-4:hover {
    color: var(--btn-hover);
}

.xbanner1 .lead {
    font-weight: 500;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s ease;
}

.xbanner1 .lead:hover {
    color: #333;
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 1399.98px) {
    .xbanner1 .banner-wrapper {
        padding: 2.75rem 0;
    }

    .xbanner1 h1.display-4 {
        font-size: 2.75rem;
    }
}

@media (max-width: 1199.98px) {
    .xbanner1 .banner-wrapper {
        padding: 2.5rem 0;
    }

    .xbanner1 h1.display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .xbanner1 .banner-wrapper {
        padding: 2rem 0;
    }

    .xbanner1 .banner-bg {
        width: 100%;
        right: -20%;
    }

    .xbanner1 h1.display-4 {
        font-size: 2rem;
    }

    .xbanner1 .price-text {
        font-size: 1.5rem;
        display: block;
        margin: 1rem 0 0 0;
    }
}

@media (max-width: 767.98px) {
    .xbanner1 .banner-wrapper {
        padding: 1.5rem 0;
    }

    .xbanner1 h1.display-4 {
        font-size: 1.75rem;
    }

    .xbanner1 .lead {
        font-size: 1rem;
    }

    .xbanner1 .btn-custom {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .xbanner1 .price-text {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .xbanner1 .banner-type {
        font-size: 12px;
        padding: 4px 12px;
    }

    .xbanner1 .banner-wrapper {
        padding: 1rem 0;
    }

    .xbanner1 h1.display-4 {
        font-size: 1.5rem;
    }

    .xbanner1 .lead {
        font-size: 0.9rem;
    }

    .xbanner1 .price-text {
        font-size: 1.25rem;
    }

    .xbanner1 .price-period {
        font-size: 0.875rem;
    }
}

/* xThema xBanner-1 BitiÅŸ */

/* xThema xForm1 */


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xromlbg-custom {
    background-color: rgb(0, 160, 227, .08);
    border: 2px solid #00a0e357;
    border-radius: 6px;
    padding: 10px 0;
}

.xromlbtn-custom:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(63, 78, 216, 0.2);
}

.xromlbtn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    transition: 0.5s;
}

.xromlbtn-custom:hover::before {
    left: 100%;
}

.xromlform-control {
    height: calc(1.5em + 0.75rem + 2px);
    font-size: 0.875rem;
    border-color: #E2E8F0;
    transition: all 0.3s ease;
}

.xromlform-control:focus {
    border-color: #00a0e3;
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 227, 0.25);
    transform: translateY(-1px);
}

.xromltext-custom {
    color: #1A1F37;
    font-size: 1.25rem;
}

.xromlheader-container {
    min-height: 65px;
}

@media (max-width: 991.98px) {
    .xromlheader-item {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.75rem;
    }

    .xromlheader-container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .xromlheader-item .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .xromlbtn-custom {
        width: 100%;
        max-width: 200px;
    }
}

@media (min-width: 992px) {
    .xromlheader-container {
        height: 65px;
    }
}


/* xThema xForm1 BitiÅŸ */

/* xThema MenÃ¼ ÃœstÃ¼ Reklam */


.indirim-badge {
    display: inline-block;
    background-color: #424867;
    color: white;
    font-size: 10px; /* YazÄ± boyutunu eski haline getirdim */
    font-weight: bold;
    padding: 2px 10px; /* SaÄŸa ve sola Ã§ok az padding ekleyerek yazÄ±yÄ± uzatÄ±yorum */
    border-radius: 4px;
    position: absolute;
    top: -10px; /* BaÄŸlantÄ±nÄ±n Ã¼stÃ¼ne Ã§Ä±karÄ±r */
    left: 50%; /* Ortalar */
    transform: translateX(-50%); /* GerÃ§ekten ortalamak iÃ§in */
    animation: yanip-sonme 1.2s infinite ease-in-out; /* YanÄ±p sÃ¶nme efekti */
}

/* MenÃ¼nÃ¼n referansÄ± */
.nav-link {
    position: relative; /* "Ä°NDÄ°RÄ°M" iÃ§in referans noktasÄ± */
}

/* YanÄ±p sÃ¶nme animasyonu */
@keyframes yanip-sonme {
    0%, 100% {
        opacity: 1; /* Tam gÃ¶rÃ¼nÃ¼yor */
    }
    50% {
        opacity: 0.4; /* Daha belirgin bir soluklaÅŸma */
    }
}

/* Responsive dÃ¼zenlemeler */
@media (max-width: 768px) {
    .indirim-badge {
        font-size: 9px; /* KÃ¼Ã§Ã¼k ekranlarda yazÄ± boyutunu azaltÄ±r */
        padding: 1px 8px; /* KÃ¼Ã§Ã¼k ekranlar iÃ§in saÄŸ ve sol padding'i artÄ±rÄ±r */
        top: -8px; /* YukarÄ± boÅŸluklarÄ± ufakÃ§a dÃ¼zenler */
    }
}

@media (max-width: 480px) {
    .indirim-badge {
        font-size: 8px; /* Daha kÃ¼Ã§Ã¼k ekranlarda yazÄ±yÄ± daha da kÃ¼Ã§Ã¼ltÃ¼r */
        padding: 1px 7px; /* KÃ¼Ã§Ã¼k ekranlar iÃ§in daha fazla saÄŸ ve sol padding */
        top: -6px; /* Konum hala sabit ve dÃ¼zenli */
    }
}

/* xThema MenÃ¼ ÃœstÃ¼ Reklam  BitiÅŸ */

/* xThema Cookie */


body {
    font-family: 'Poppins', sans-serif;
}

.cookie-banner {
    background-color: #0a0a16;
    color: #e8e8e8;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 16px;
    line-height: 1.2;
}

.cookie-banner .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.cookie-banner .text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cookie-banner a {
    color: #e8e8e8;
    text-decoration: underline;
    white-space: nowrap;
    margin-left: 4px;
    font-weight: 500;
}

.cookie-banner a:hover {
    color: #ffffff;
}

.cookie-banner .btn {
    font-weight: 500;
    background-color: white;
    color: black;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-banner .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199.98px) {
    .cookie-banner {
        font-size: 13px;
    }

    .cookie-banner .btn {
        font-size: 13px;
        padding: 5px 10px;
    }
}

@media (max-width: 991.98px) {
    .cookie-banner {
        font-size: 12px;
    }

    .cookie-banner .btn {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 767.98px) {
    .cookie-banner {
        font-size: 11px;
        padding: 10px 12px;
    }

    .cookie-banner .content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner .text {
        white-space: normal;
        margin-bottom: 8px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .cookie-banner a {
        margin-left: 0;
        margin-top: 4px;
    }

    .cookie-banner .btn {
        font-size: 11px;
        padding: 4px 8px;
        align-self: flex-end;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .cookie-banner {
        font-size: 10px;
        padding: 8px 10px;
    }

    .cookie-banner .btn {
        font-size: 10px;
        padding: 3px 6px;
        margin-top: 4px;
    }
}

/* xThema Cookie BitiÅŸ */

/* xThema Datacenter Lokasyon Map */


:root {
    --secondary-color: #818cf8;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --background-color: #f3f4f6;
    --card-color: #90a4e0;
    --card-text-color: #2d3748;
    --card-title-color: #1a202c;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--background-color);
}

h2, h5 {
    font-weight: 700;
}

.netmap-global-network {
    overflow: hidden;
}

.netmap-map-wrapper, .netmap-card-wrapper {
    position: relative;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.netmap-map-container {
    position: relative;
    background: linear-gradient(145deg, var(--btn-primary-bg), var(--btn-hover));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.netmap-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: saturate(1.2) contrast(1.1);
}

.netmap-map-container:hover .netmap-map-image {
    opacity: 0.9;
}

.netmap-location-marker:hover, .netmap-location-marker.netmap-selected {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    background-color: var(--btn-hover);
}

.netmap-location-marker .netmap-sublabel {
    opacity: 0.9;
    font-size: 0.7rem;
    font-weight: 500;
}

.netmap-fade-in {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.netmap-fade-in.netmap-visible {
    opacity: 1;
    transform: translateY(0);
}

.netmap-modern-card {
    background: linear-gradient(145deg, #ffffff, var(--background-color));
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.netmap-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.netmap-modern-card-body {
    padding: 1.25rem;
    font-size: 0.9rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: var(--card-text-color);
}

.netmap-modern-card-body h6 {
    color: var(--card-title-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.netmap-info-item {
    transition: all 0.3s ease;
    padding: 0.4rem;
    border-radius: 0.5rem;
}

.netmap-info-item:hover {
    background-color: rgba(144, 164, 224, 0.1);
    transform: translateX(5px);
}

.netmap-info-icon {
    font-size: 1.2rem;
    color: var(--card-color);
    margin-right: 0.5rem;
}

.netmap-line-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgb(0 0 0 / 30%);
    border-radius: 1.2rem;
    z-index: -1;
}

.netmap-line-effect::before, .netmap-line-effect::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
}

.netmap-line-effect::before {
    top: 20px;
    bottom: 20px;
    left: -2px;
    width: 2px;
}

.netmap-line-effect::after {
    left: 20px;
    right: 20px;
    top: -2px;
    height: 2px;
}

.netmap-map-wrapper .netmap-line-effect {
    border-color: rgba(0 0 0 / 30%);
}

.netmap-map-wrapper .netmap-line-effect::before,
.netmap-map-wrapper .netmap-line-effect::after {
    background-color: rgba(255, 255, 255, 0.4);
}

.netmap-pulse {
    animation: netmap-pulse 2s infinite;
}

@keyframes netmap-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .netmap-location-marker {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
    }

    .netmap-modern-card-header h5 {
        font-size: 1rem;
    }

    .netmap-modern-card-body {
        font-size: 0.8rem;
    }

    .netmap-info-item {
        padding: 0.3rem;
    }

    .netmap-info-icon {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .netmap-location-marker {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }

    .netmap-modern-card-header h5 {
        font-size: 1.1rem;
    }

    .netmap-modern-card-body {
        font-size: 0.85rem;
    }
}

.netmap-connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.netmap-connection-line {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    animation: netmap-dash 30s linear infinite;
}

@keyframes netmap-dash {
    to {
        stroke-dashoffset: 1000;
    }
}

#netmap-locationDescription {
    font-weight: 500;
    color: #1a202c;
}


/* xThema Datacenter Lokasyon Map BitiÅŸ */

/* Müşteri Paneli / Clientareahome */


:root {
    --header-bg: #1e3c72;
    --header-text: #ffffff;
    --nav-bg: #f1f3f4;
    --nav-text: #333333;
    --nav-hover: #0d6efd;
    --card-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.xmpanel-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: #f8f9fa;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.xmpanel-header {
    background-color: var(--header-bg);
    color: var(--header-text);
    padding: 10px 0;
}

.xmpanel-profile {
    display: flex;
    align-items: center;
}

.xmpanel-profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.xmpanel-profile-img i {
    color: var(--header-bg);
    font-size: 16px;
}

.xmpanel-username {
    font-weight: 500;
    font-size: 14px;
}

.xmpanel-stats {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.xmpanel-stat-item {
    margin-left: 15px;
    text-align: center;
}

.xmpanel-stat-value {
    font-size: 16px;
    font-weight: 500;
}

.xmpanel-stat-label {
    font-size: 11px;
    opacity: 0.8;
}

.xmpanel-nav {
    background-color: #ffffff;
    padding: 5px 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.xmpanel-nav-list {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.xmpanel-nav-item {
    flex: 1 1 auto;
    text-align: center;
}

.xmpanel-nav-link {
    color: #495057;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

.xmpanel-nav-link:hover {
    color: var(--nav-hover);
    background-color: #f8f9fa;
}

.xmpanel-nav-link i {
    font-size: 18px;
    margin-bottom: 3px;
    transition: transform 0.3s ease;
}

.xmpanel-nav-link:hover i {
    transform: rotate(360deg);
}

.xmpanel-container {
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.xmpanel-card {
    margin-bottom: 1rem;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.xmpanel-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.xmpanel-card-header {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem;
}

.xmpanel-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.xmpanel-header-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.95rem;
    font-weight: 500;
}

.xmpanel-header-buttons {
    display: flex;
    gap: 0.4rem;
}

.xmpanel-btn-edit, .xmpanel-btn-password {
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 400;
    border: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.xmpanel-btn-edit:hover, .xmpanel-btn-password:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.xmpanel-btn-edit {
    background-color: #0d6efd;
    color: white;
}

.xmpanel-btn-edit:hover {
    background-color: #0b5ed7;
}

.xmpanel-btn-password {
    background-color: #6c757d;
    color: white;
}

.xmpanel-btn-password:hover {
    background-color: #5c636a;
}

.xmpanel-breadcrumb {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.xmpanel-alert {
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

.xmpanel-card-body {
    padding: 0.75rem;
}

.xmpanel-table {
    margin-bottom: 0;
    font-size: 0.85rem;
    width: 100%;
}

.xmpanel-table th {
    font-weight: 500;
    background-color: #f8f9fa;
    padding: 0.5rem;
}

.xmpanel-table td {
    padding: 0.5rem;
    vertical-align: middle;
}

.xmpanel-customer-info {
    font-size: 0.9rem;
}

.xmpanel-customer-info label {
    font-weight: 500;
    margin-bottom: 0.15rem;
    color: #495057;
}

.xmpanel-customer-info p {
    margin-bottom: 0.5rem;
}

.xmpanel-customer-info p:last-child {
    margin-bottom: 0;
}

.xmpanel-table-hover tbody tr {
    transition: background-color 0.2s ease-in-out;
}

.xmpanel-table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Responsive styles */
@media (max-width: 1199.98px) {
    .xmpanel-container {
        max-width: 960px;
    }
}

@media (max-width: 991.98px) {
    .xmpanel-container {
        max-width: 720px;
    }

    .xmpanel-nav-item {
        flex: 1 1 25%;
    }

    .xmpanel-card-body {
        padding: 0.6rem;
    }
}

@media (max-width: 767.98px) {
    .xmpanel-container {
        max-width: 540px;
    }

    .xmpanel-nav-item {
        flex: 1 1 33.333%;
    }

    .xmpanel-body {
        font-size: 13px;
    }

    .xmpanel-header-content {
        flex-wrap: wrap;
    }

    .xmpanel-header-title {
        font-size: 0.9rem;
    }

    .xmpanel-btn-edit, .xmpanel-btn-password {
        padding: 0.2rem 0.6rem;
        font-size: 0.8rem;
    }

    .xmpanel-table-responsive {
        margin: -0.6rem;
        padding: 0.6rem;
        width: calc(100% + 1.2rem);
    }

    .xmpanel-table th, .xmpanel-table td {
        padding: 0.4rem;
        white-space: nowrap;
    }

    .xmpanel-customer-info {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .xmpanel-container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .xmpanel-nav-item {
        flex: 1 1 50%;
    }

    .xmpanel-card {
        margin-bottom: 0.75rem;
    }

    .xmpanel-card-header {
        padding: 0.5rem;
    }

    .xmpanel-header-content {
        gap: 0.3rem;
    }

    .xmpanel-header-buttons {
        width: 100%;
    }

    .xmpanel-btn-edit, .xmpanel-btn-password {
        flex: 1;
        text-align: center;
        padding: 0.25rem;
    }

    .xmpanel-table th, .xmpanel-table td {
        padding: 0.35rem;
        font-size: 0.8rem;
    }

    .xmpanel-alert {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .xmpanel-customer-info label {
        display: block;
        margin-bottom: 0.1rem;
    }

    .xmpanel-stats {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .xmpanel-stat-item {
        margin-left: 0;
        margin-right: 15px;
    }
}

/* Müşteri Paneli / Clientareahome Bitiş */

/* xThema cPanel Sayfası Slider  */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.cpslider-section {
    background-image: url('../../assets/img/xslider-cpanel.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.cpslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.cpslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.cpslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.cpslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.cpslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.cpslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.cpslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.cpslider-cta-button {
    background-color: #90a4e0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.cpslider-cta-button:hover {
    background-color: #7b8fc7;
    color: white;
}

.cpslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.cpslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.cpslider-contact-link:hover {
    text-decoration: underline;
}

.cpslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.cpslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .cpslider-content {
        margin-left: 50px;
    }

    .cpslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .cpslider-content {
        margin-left: 40px;
    }

    .cpslider-main-title {
        font-size: 2rem;
    }

    .cpslider-subtitle {
        font-size: 0.95rem;
    }

    .cpslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .cpslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .cpslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .cpslider-main-title {
        font-size: 1.8rem;
    }

    .cpslider-subtitle {
        font-size: 0.9rem;
    }

    .cpslider-feature-list li {
        font-size: 0.8rem;
    }

    .cpslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .cpslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .cpslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .cpslider-main-title {
        font-size: 1.5rem;
    }

    .cpslider-small-title {
        font-size: 0.7rem;
    }

    .cpslider-subtitle {
        font-size: 0.85rem;
    }

    .cpslider-feature-list li {
        font-size: 0.75rem;
    }

    .cpslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .cpslider-contact-text {
        font-size: 0.7rem;
    }

    .cpslider-logo {
        max-width: 100px;
    }
}

/* xThema cPanel Sayfası Slider Bitiş */


/* xThema cPanel Sayfası Slider  */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.kurumsalslider-section {
    background-image: url('../../assets/img/xslider-kurumsal.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.kurumsalslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.kurumsalslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.kurumsalslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.kurumsalslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.kurumsalslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.kurumsalslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.kurumsalslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.kurumsalslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.kurumsalslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.kurumsalslider-contact-link:hover {
    text-decoration: underline;
}

.kurumsalslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.kurumsalslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .kurumsalslider-content {
        margin-left: 50px;
    }

    .kurumsalslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .kurumsalslider-content {
        margin-left: 40px;
    }

    .kurumsalslider-main-title {
        font-size: 2rem;
    }

    .kurumsalslider-subtitle {
        font-size: 0.95rem;
    }

    .kurumsalslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .kurumsalslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .kurumsalslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .kurumsalslider-main-title {
        font-size: 1.8rem;
    }

    .kurumsalslider-subtitle {
        font-size: 0.9rem;
    }

    .kurumsalslider-feature-list li {
        font-size: 0.8rem;
    }

    .kurumsalslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .kurumsalslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .kurumsalslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .kurumsalslider-main-title {
        font-size: 1.5rem;
    }

    .kurumsalslider-small-title {
        font-size: 0.7rem;
    }

    .kurumsalslider-subtitle {
        font-size: 0.85rem;
    }

    .kurumsalslider-feature-list li {
        font-size: 0.75rem;
    }

    .kurumsalslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .kurumsalslider-contact-text {
        font-size: 0.7rem;
    }

    .kurumsalslider-logo {
        max-width: 100px;
    }
}

/* xThema cPanel Sayfası Slider Bitiş */


/* xThema Reseller Sayfası Slider  */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.whmslider-section {
    background-image: url('../../assets/img/xslider-whm.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.whmslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.whmslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.whmslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.whmslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.whmslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.whmslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.whmslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.whmslider-cta-button {
    background-color: #90a4e0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.whmslider-cta-button:hover {
    background-color: #7b8fc7;
    color: white;
}

.whmslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.whmslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.whmslider-contact-link:hover {
    text-decoration: underline;
}

.whmslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.whmslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .whmslider-content {
        margin-left: 50px;
    }

    .whmslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .whmslider-content {
        margin-left: 40px;
    }

    .whmslider-main-title {
        font-size: 2rem;
    }

    .whmslider-subtitle {
        font-size: 0.95rem;
    }

    .whmslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .whmslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .whmslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .whmslider-main-title {
        font-size: 1.8rem;
    }

    .whmslider-subtitle {
        font-size: 0.9rem;
    }

    .whmslider-feature-list li {
        font-size: 0.8rem;
    }

    .whmslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .whmslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .whmslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .whmslider-main-title {
        font-size: 1.5rem;
    }

    .whmslider-small-title {
        font-size: 0.7rem;
    }

    .whmslider-subtitle {
        font-size: 0.85rem;
    }

    .whmslider-feature-list li {
        font-size: 0.75rem;
    }

    .whmslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .whmslider-contact-text {
        font-size: 0.7rem;
    }

    .whmslider-logo {
        max-width: 100px;
    }
}

/* xThema Reseller Sayfası Slider Bitiş */


/* xThema WordPress Sayfası Slider  */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.wpslider-section {
    background-image: url('../../assets/img/xslider-wordpress.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.wpslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.wpslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.wpslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.wpslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.wpslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.wpslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.wpslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.wpslider-cta-button {
    background-color: #90a4e0;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.wpslider-cta-button:hover {
    background-color: #7b8fc7;
    color: white;
}

.wpslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.wpslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.wpslider-contact-link:hover {
    text-decoration: underline;
}

.wpslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.wpslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .wpslider-content {
        margin-left: 50px;
    }

    .wpslider-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .wpslider-content {
        margin-left: 40px;
    }

    .wpslider-main-title {
        font-size: 2rem;
    }

    .wpslider-subtitle {
        font-size: 0.95rem;
    }

    .wpslider-feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .wpslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .wpslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .wpslider-main-title {
        font-size: 1.8rem;
    }

    .wpslider-subtitle {
        font-size: 0.9rem;
    }

    .wpslider-feature-list li {
        font-size: 0.8rem;
    }

    .wpslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .wpslider-contact-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .wpslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .wpslider-main-title {
        font-size: 1.5rem;
    }

    .wpslider-small-title {
        font-size: 0.7rem;
    }

    .wpslider-subtitle {
        font-size: 0.85rem;
    }

    .wpslider-feature-list li {
        font-size: 0.75rem;
    }

    .wpslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .wpslider-contact-text {
        font-size: 0.7rem;
    }

    .wpslider-logo {
        max-width: 100px;
    }
}

/* xThema WordPress Sayfası Slider Bitiş */


/* xThema Sanal Sunucu Sayfası Slider  */

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.vpsslider-section {
    background-image: url('../../assets/img/xslider-vps.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #00a0e357;
}

.vpsslider-content {
    padding: 50px 0;
    margin-left: 70px;
}

.vpsslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #7000f3;
}

.vpsslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #1e1e1e;
}

.vpsslider-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
}

.vpsslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.vpsslider-feature-list li {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.vpsslider-feature-list li::before {
    content: "✓";
    color: #00b300;
    margin-right: 7px;
    font-weight: bold;
}

.vpsslider-contact-text {
    color: #666;
    font-size: 0.8rem;
}

.vpsslider-contact-link {
    color: #7000f3;
    text-decoration: none;
    font-weight: 600;
}

.vpsslider-contact-link:hover {
    text-decoration: underline;
}

.vpsslider-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.vpsslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Yeni eklenen ve düzenlenen stiller */
.vpsslider-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vpsslider-image {
    max-width: 70%;
    height: auto;
    object-fit: contain;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .vpsslider-content {
        margin-left: 50px;
    }

    .vpsslider-main-title {
        font-size: 2.2rem;
    }

    .vpsslider-image {
        max-width: 90%;
    }
}

@media (max-width: 991px) {
    .vpsslider-content {
        margin-left: 40px;
    }

    .vpsslider-main-title {
        font-size: 2rem;
    }

    .vpsslider-subtitle {
        font-size: 0.95rem;
    }

    .vpsslider-feature-list li {
        font-size: 0.85rem;
    }

    .vpsslider-image {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    .vpsslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .vpsslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
    }

    .vpsslider-main-title {
        font-size: 1.8rem;
    }

    .vpsslider-subtitle {
        font-size: 0.9rem;
    }

    .vpsslider-feature-list li {
        font-size: 0.8rem;
    }

    .vpsslider-cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .vpsslider-contact-text {
        font-size: 0.75rem;
    }

    .vpsslider-image-wrapper {
        display: none; /* Mobilde resmi gizle */
    }
}

@media (max-width: 575px) {
    .vpsslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .vpsslider-main-title {
        font-size: 1.5rem;
    }

    .vpsslider-small-title {
        font-size: 0.7rem;
    }

    .vpsslider-subtitle {
        font-size: 0.85rem;
    }

    .vpsslider-feature-list li {
        font-size: 0.75rem;
    }

    .vpsslider-cta-button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .vpsslider-contact-text {
        font-size: 0.7rem;
    }

    .vpsslider-logo {
        max-width: 100px;
    }
}

/* xThema Sanal Sunucu Sayfası Slider Bitiş  */


/* xThema Dedicated Server Sayfası Slider  */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.spdcslider-section {
    /* Improved gradient with multiple color stops for smoother transition */
    background: linear-gradient(135deg,
    #1a2a6c 0%,
    #b21f1f 50%,
    #fdbb2d 100%);
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    min-height: 450px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #fdbb2d;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

/* Add overlay effect */
.spdcslider-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.spdcslider-content {
    padding: 50px 0;
    margin-left: 70px;
    color: white;
    position: relative;
    z-index: 2;
}

.spdcslider-small-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: #fdbb2d;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.spdcslider-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.7rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.spdcslider-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.7rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.spdcslider-feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.spdcslider-feature-list li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.spdcslider-feature-list li::before {
    content: "✓";
    color: #fdbb2d;
    margin-right: 7px;
    font-weight: bold;
}

.spdcslider-cta-button {
    background-color: #fdbb2d;
    color: #1a2a6c;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.spdcslider-cta-button:hover {
    background-color: #ffffff;
    color: #1a2a6c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.spdcslider-contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.spdcslider-contact-link {
    color: #fdbb2d;
    text-decoration: none;
    font-weight: 600;
}

.spdcslider-contact-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Virtualization Logos Styles */
.virtualization-logos {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.virtualization-logo {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px;
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.virtualization-logo:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.spdcslider-contact-wrapper {
    margin-top: 1.5rem;
}

/* Dedicated Server SVG Illustration Styles */
.dedicated-server-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dedicated-svg-container {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Responsive styles */
@media (max-width: 1199px) {
    .spdcslider-content {
        margin-left: 50px;
    }

    .spdcslider-main-title {
        font-size: 2.2rem;
    }

    .virtualization-logo {
        height: 45px;
    }
}

@media (max-width: 991px) {
    .spdcslider-content {
        margin-left: 40px;
    }

    .spdcslider-main-title {
        font-size: 2rem;
    }

    .spdcslider-subtitle {
        font-size: 0.95rem;
    }

    .spdcslider-feature-list li {
        font-size: 0.85rem;
    }

    .dedicated-svg-container {
        max-width: 320px;
    }

    .virtualization-logo {
        height: 40px;
    }
}

@media (max-width: 767px) {
    .spdcslider-section {
        min-height: auto;
        padding: 40px 0;
    }

    .spdcslider-content {
        margin-left: 25px;
        margin-right: 25px;
        padding: 25px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }

    .spdcslider-main-title {
        font-size: 1.8rem;
    }

    .spdcslider-subtitle {
        font-size: 0.9rem;
    }

    .spdcslider-feature-list li {
        font-size: 0.8rem;
    }

    .spdcslider-cta-button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .spdcslider-contact-text {
        font-size: 0.75rem;
    }

    .dedicated-server-illustration {
        margin-top: 30px;
    }

    .dedicated-svg-container {
        max-width: 250px;
    }

    .virtualization-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .virtualization-logo {
        height: 35px;
    }
}

@media (max-width: 575px) {
    .spdcslider-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .spdcslider-main-title {
        font-size: 1.5rem;
    }

    .spdcslider-small-title {
        font-size: 0.7rem;
    }

    .spdcslider-subtitle {
        font-size: 0.85rem;
    }

    .spdcslider-feature-list li {
        font-size: 0.75rem;
    }

    .spdcslider-cta-button {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .spdcslider-contact-text {
        font-size: 0.7rem;
    }

    .virtualization-logo {
        height: 30px;
    }

    .dedicated-svg-container {
        max-width: 200px;
    }
}

/* xThema Dedicated Server Sayfası Slider Bitiş */

/* xThema cPanel Hosting Avantajları */


.xTeknoloji-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.xTeknoloji-text-navy {
    color: #333;
    letter-spacing: -0.3px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.xTeknoloji-text-navy:hover {
    color: #90a4e0;
    transform: translateY(-2px);
}

.xTeknoloji-bg-light-custom {
    background-color: #f8f9fa;
}

.xTeknoloji-section-container {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.xTeknoloji-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.xTeknoloji-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.xTeknoloji-image-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.xTeknoloji-image-container:hover img {
    transform: scale(1.02);
}

.xTeknoloji-list {
    padding-left: 20px;
    margin-bottom: 1rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.xTeknoloji-list li {
    margin-bottom: 0.3rem;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.2px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.xTeknoloji-list li:hover {
    transform: translateX(5px);
    color: #90a4e0;
}

h1.display-5 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    font-weight: 600;
}

h2.display-6 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .xTeknoloji-section-container {
        padding: 30px 0;
    }

    .xTeknoloji-content-section {
        text-align: left;
        margin-bottom: 20px;
    }

    .xTeknoloji-list {
        text-align: left;
        padding-left: 15px;
    }

    h1.display-5 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    h2.display-6 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .xTeknoloji-text, .xTeknoloji-list li {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .xTeknoloji-content-section {
        padding-right: 1rem;
    }

    .order-lg-2 .xTeknoloji-content-section {
        padding-right: 0;
        padding-left: 1rem;
    }
}

/* xThema cPanel Hosting Avantajları Bitiş */

/* Windows Hosting Yönlendirme */


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.xcpwin-hosting-banner {
    background: linear-gradient(to right, #00a0e34a, #00a0e345);
    padding: 12px 0;
    width: 100%;
    transition: background 0.3s ease;
}

.xcpwin-banner-text {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    color: #333;
    font-weight: 400;
}

.xcpwin-windows-icon {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    vertical-align: middle;
}

.xcpwin-highlight {
    font-weight: 700;
    color: #0056b3;
}

.xcpwin-windows-hosting-text {
    white-space: nowrap;
}

/* Tablet ve küçük masaüstü ekranlar için */
@media (max-width: 991px) {
    .xcpwin-banner-text {
        font-size: 16px;
    }

    .xcpwin-windows-icon {
        width: 18px;
        height: 18px;
    }
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 767px) {
    .xcpwin-hosting-banner {
        padding: 10px 15px;
    }

    .xcpwin-banner-text {
        font-size: 14px;
        line-height: 1.3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .xcpwin-windows-icon {
        width: 16px;
        height: 16px;
    }
}

/* Çok küçük ekranlar için ek optimizasyon */
@media (max-width: 375px) {
    .xcpwin-banner-text {
        font-size: 12px;
    }

    .xcpwin-windows-icon {
        width: 14px;
        height: 14px;
    }
}

/* Link stili */
.xcpwin-hosting-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.xcpwin-hosting-link:hover {
    color: inherit;
}


/* Windows Hosting Yönlendirme Bitiş */

/* Hosting Ortak Özellikler */

.xt-feature-icon {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.xt-feature-card {
    padding: 1.5rem;
    height: 100%;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.xt-feature-card:hover {
    transform: translateY(-0.3125rem);
}

.xt-section-title {
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
}

.xt-section-subtitle {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.xt-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.xt-title {
    display: flex;
    align-items: center;
    min-height: 3rem;
    font-weight: 500;
}

.xt-hosting-features {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #333;
}

.xt-hosting-features h3 {
    color: #fff;
}

.xt-feature-card p {
    font-weight: 400;
}

@media (max-width: 575.98px) {
    .xt-feature-card {
        padding: 1rem;
    }

    .xt-title-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .xt-feature-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .xt-hosting-features h3 {
        font-size: 1rem;
    }

    .xt-section-title {
        font-size: 2rem;
    }
}

/* Hosting Ortak Özellikler Bitiş */

/* Paket Karşılaştırma */


:root {
    --primary-color: #00a0e3;
    --karsilatirma-ozel: #2c3e50;
    --accent-color: #f39c12;
    --background-color: #f8f9fa;
    --text-color: #2c3e50;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: var(--background-color);
    font-size: 16px;
    color: var(--text-color);
}

.xkarsill-container {
    max-width: 1300px;
    padding: 0 15px;
    margin: 0 auto;
}

h1 {
    font-weight: 600;
    color: var(--karsilatirma-ozel);
    margin-bottom: 0.75rem;
    font-size: 2.2rem;
}

.xkarsill-subtitle {
    font-weight: 400;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.xkarsill-table-custom {
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.xkarsill-table-custom:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}

.xkarsill-table-custom th,
.xkarsill-table-custom td {
    border: 1px solid #d1d8e0;
    padding: 0.75rem;
    transition: all 0.3s ease;
    line-height: 1.4;
    width: 20%;
}

.xkarsill-table-custom thead th {
    background-color: var(--btn-primary-bg);
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #7691d6;
    font-size: 0.95rem;
}

.xkarsill-table-custom tbody tr:nth-of-type(odd) {
    background-color: rgba(144, 164, 224, 0.05);
}

.xkarsill-table-custom tbody tr:hover {
    background-color: rgba(144, 164, 224, 0.1);
}

.xkarsill-table-custom tbody th {
    font-weight: 500;
    color: var(--karsilatirma-ozel);
    background-color: rgba(144, 164, 224, 0.1);
    border-right: 2px solid var(--primary-color);
    font-size: 0.95rem;
}

.xkarsill-check-icon {
    color: #2ecc71;
    font-size: 1.3rem;
    font-weight: 600;
}

.xkarsill-cross-icon {
    color: #e74c3c;
    font-size: 1.3rem;
    font-weight: 600;
}

.xkarsill-feature-background {
    background-color: rgba(0, 160, 227, 0.04) !important;
}

.xkarsill-feature-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
    color: var(--karsilatirma-ozel);
}

.xkarsill-feature-title::after {
    content: '\F282';
    font-family: 'Bootstrap-icons';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.xkarsill-feature-title.collapsed::after {
    transform: rotate(-90deg);
}

.xkarsill-feature-description {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: #34495e;
    padding: 1rem;
    background-color: rgba(144, 164, 224, 0.05);
    border-radius: 6px;
    margin-top: 0.75rem;
    border-left: 3px solid var(--primary-color);
}

.xkarsill-btn-custom {
    width: 100%;
    padding: 10px 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    background-color: var(--btn-primary-bg);
    border: none;
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
}

.xkarsill-btn-custom:active,
.xkarsill-btn-custom:focus-visible,
.xkarsill-btn-custom:focus,
.xkarsill-btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 140, 227, 0.3);
    background-color: var(--btn-hover) !important;
}

.xkarsill-price-container {
    position: relative;
    padding: 0;
    margin-top: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xkarsill-discount-badge {
    position: static;
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2px;
    animation: xkarsill-pulse 2s infinite;
}

.xkarsill-price-content {
    text-align: center;
    width: 100%;
}

.xkarsill-original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.2;
}

.xkarsill-current-price {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    color: var(--karsilatirma-ozel);
}

.xkarsill-price-period {
    color: #666;
    font-size: 0.8rem;
    margin-top: -2px;
    margin-bottom: 8px;
}

.xkarsill-table-custom td {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--karsilatirma-ozel);
}

.xkarsill-feature-value {
    font-weight: 500;
    color: var(--karsilatirma-ozel);
    display: block;
    margin: 4px 0;
}

.xkarsill-recommended-text {
    font-size: 0.7em;
    color: white;
    background-color: var(--accent-color);
    margin-left: 5px;
    padding: 2px 4px;
    border: 1px solid var(--accent-color);
    border-radius: 3px;
    display: inline-block;
    animation: xkarsill-blink 2s infinite;
    font-weight: 600;
}

@keyframes xkarsill-blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes xkarsill-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.xkarsill-table-responsive {
    overflow-x: auto;
}

@media (max-width: 991px) {
    h1 {
        font-size: 1.8rem;
    }

    .xkarsill-subtitle {
        font-size: 1rem;
    }

    .xkarsill-btn-custom {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .xkarsill-table-custom {
        border: none;
        box-shadow: none;
    }

    .xkarsill-table-custom thead {
        display: none;
    }

    .xkarsill-table-custom, .xkarsill-table-custom tbody, .xkarsill-table-custom tr, .xkarsill-table-custom td {
        display: block;
        width: 100%;
    }

    .xkarsill-table-custom tr {
        margin-bottom: 1rem;
        border-radius: 12px;
        overflow: hidden;
    }

    .xkarsill-table-custom td {
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    .xkarsill-table-custom td::before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        text-align: left;
    }

    .xkarsill-table-custom tbody th {
        text-align: center;
        color: white;
        border-bottom: none;
        border-right: none;
    }

    .xkarsill-feature-title::after {
        display: none;
    }

    .xkarsill-feature-description {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .xkarsill-price-container {
        padding: 1rem;
    }
}

/* Paket Karşılaştırma Bitiş */

/* Otomatik Kurulan Uygulamalar */
.xhuygulama {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.xhuygulama .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.xhuygulama .nav-pills {
    gap: 8px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.xhuygulama .nav-pills .nav-item {
    flex: 0 0 auto;
}

.xhuygulama .nav-pills .nav-link {
    color: #333;
    background-color: #f8f9ff;
    border: 1px solid #e9ecef;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    white-space: nowrap;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.xhuygulama .nav-pills .nav-link.active {
    background-color: #f1f3ff;
    color: #333;
    font-weight: 400;
}

.xhuygulama .app-section {
    background-color: #f8f9ff;
    border-radius: 8px;
    margin-top: 2rem;
}

.xhuygulama .card {
    background: #fff;
    border: none;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

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

.xhuygulama .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.xhuygulama .app-icon {
    width: 48px;
    height: 48px;
    margin: 1rem auto;
    object-fit: contain;
}

.xhuygulama .card-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-align: center;
}

.xhuygulama .card-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
    .xhuygulama .container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .xhuygulama {
        font-size: 15px;
    }

    .xhuygulama .card-title {
        font-size: 0.95rem;
    }

    .xhuygulama .card-text {
        font-size: 0.8rem;
    }

    .xhuygulama .nav-pills .nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .xhuygulama {
        font-size: 14px;
    }

    .xhuygulama .container {
        padding: 0 10px;
    }

    .xhuygulama .nav-pills .nav-link {
        font-size: 12px;
        padding: 5px 10px;
    }

    .xhuygulama h1 {
        font-size: 1.75rem;
    }

    .xhuygulama h2 {
        font-size: 1.2rem;
    }

    .xhuygulama .card-title {
        font-size: 0.9rem;
    }

    .xhuygulama .card-text {
        font-size: 0.75rem;
    }

    .xhuygulama .app-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .xhuygulama {
        font-size: 13px;
    }

    .xhuygulama .nav-pills {
        justify-content: flex-start;
    }

    .xhuygulama .nav-pills .nav-item {
        flex: 0 0 auto;
    }

    .xhuygulama .nav-pills .nav-link {
        margin-bottom: 5px;
        padding: 4px 8px;
        font-size: 11px;
    }

    .xhuygulama .card {
        margin-bottom: 1rem;
    }

    .xhuygulama .row-cols-1 {
        margin-right: -5px;
        margin-left: -5px;
    }

    .xhuygulama .col {
        padding-right: 5px;
        padding-left: 5px;
    }

    .xhuygulama h1 {
        font-size: 1.5rem;
    }

    .xhuygulama .card-title {
        font-size: 0.85rem;
    }

    .xhuygulama .card-text {
        font-size: 0.7rem;
        -webkit-line-clamp: 4;
    }

    .xhuygulama .app-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 400px) {
    .xhuygulama {
        font-size: 12px;
    }

    .xhuygulama .nav-pills .nav-link {
        padding: 3px 6px;
        font-size: 10px;
    }

    .xhuygulama .card-title {
        font-size: 0.8rem;
    }

    .xhuygulama .card-text {
        font-size: 0.65rem;
        -webkit-line-clamp: 3;
    }

    .xhuygulama .app-icon {
        width: 32px;
        height: 32px;
    }
}

.xhuygulama #appTabsMain, .xhuygulama #appTabsSecondary {
    gap: 8px;
    flex-wrap: wrap;
}

.xhuygulama #appTabsSecondary {
    margin-top: -4px;
}

.xhuygulama h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Otomatik Kurulan Uygulamalar Bitiş */

/* WordPpress Nedir */

.xwpneden-wrapper {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.xwpneden-hero-section {
    background-image: url('../../assets/img/wordpress-slider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.xwpneden-content-wrapper {
    color: #333;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #90a4e0;
    border-bottom: 4px solid #90a4e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xwpneden-content-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.xwpneden-content-wrapper h1 {
    font-size: 1.75rem;
    font-weight: 700;
    width: 80%;
    border-bottom: 3px solid #90a4e0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.xwpneden-content-wrapper p {
    font-weight: 400;
    line-height: 1.4;
}

.xwpneden-highlight {
    color: #3498db;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .xwpneden-hero-section {
        background-position: right center;
    }
}

@media (max-width: 992px) {
    .xwpneden-hero-section {
        min-height: 300px;
    }

    .xwpneden-content-wrapper {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .xwpneden-hero-section {
        padding: 40px 0;
        background-position: center;
    }

    .xwpneden-content-wrapper {
        max-width: 100%;
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .xwpneden-hero-section {
        min-height: 250px;
        padding: 20px 0;
    }

    .xwpneden-content-wrapper {
        padding: 20px;
    }

    .xwpneden-content-wrapper h1 {
        font-size: 1.5rem;
    }

    .xwpneden-content-wrapper p {
        font-size: 0.9rem;
    }
}

/* WordPress Nedir Bitiş */

/* Populer WHM */


body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.xwhmneden-hero-section {
    padding: 40px 0;
    background-color: #fff;
}

.xwhmneden-hero-section p {
    font-weight: 500;
}

.xwhmneden-title-underline {
    width: 100%;
    height: 3px;
    background-color: #90a4e0;
    margin: 15px 0;
    border: none;
}

.xwhmneden-highlight {
    color: #3498db;
    font-weight: 600;
}

@media (max-width: 768px) {
    .xwhmneden-hero-section {
        padding: 20px 0;
        text-align: center;
    }

    .xwhmneden-hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .xwhmneden-hero-section p {
        font-size: 0.9rem;
    }

    .xwhmneden-hero-section .btn {
        width: 100%;
        margin-bottom: 2rem;
    }

    .xwhmneden-hero-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .xwhmneden-title-underline {
        margin: 15px auto;
    }
}

@media (min-width: 769px) {
    .xwhmneden-hero-section h1 {
        font-size: 2.2rem;
    }
}

.xwhmneden-hero-section .btn {
    background-color: var(--btn-primary-bg);
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 400;
}

.xwhmneden-hero-section .btn:hover {
    background-color: var(--btn-hover); /* Updated hover color */
    transform: translateY(-2px);
}

.xwhmneden-hero-image {
    transition: transform 0.3s ease;
}

.xwhmneden-hero-image:hover {
    transform: scale(1.02);
}

.xwhmneden-content-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.xwhmneden-hero-section h1 {
    font-weight: 700;
}

/* Populer WHM Bitiş */

/* xServer IMG */

.xserverimg-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    padding: 0;
}

.xserverimg-image-container::before {
    content: '';
    position: absolute;
    left: -15%;
    right: -15%;
    top: 20%;
    bottom: 0;
    background: linear-gradient(to bottom,
    rgba(26, 60, 110, 0) 0%,
    rgba(26, 60, 110, 0.7) 40%,
    rgba(26, 60, 110, 0.95) 100%
    );
    z-index: -1;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.xserverimg-image-container img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .xserverimg-image-container {
        padding: 0;
    }

    .xserverimg-image-container::before {
        top: 30%;
        left: -5%;
        right: -5%;
    }
}

@media (max-width: 576px) {
    .xserverimg-image-container {
        padding: 0;
    }

    .xserverimg-image-container::before {
        top: 40%;
        left: 0;
        right: 0;
    }
}

/* xServer IMG Bitiş */

/* İşletim Sistemleri */

body.xosi {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.xosi .os-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 4px 4px;
    max-width: 1100px;
    margin: 0 auto;
}

.xosi .os-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 160px;
    height: 56px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.xosi .os-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #f3f3f3, #ffffff);
}

.xosi .os-item:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.xosi .os-logo-name {
    display: flex;
    align-items: center;
}

.xosi .os-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.xosi .os-item:hover .os-logo {
    transform: scale(1.1);
}

.xosi .os-logo[alt="Linux"] {
    width: 44px;
    height: 44px;
}

.xosi .os-name {
    color: #333;
    font-size: 0.9rem;
    white-space: nowrap;
    margin: 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xosi .os-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.xosi .os-item:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

.xosi .os-item[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.xosi .os-item[data-tooltip]:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

@keyframes xosi-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.xosi .os-item:hover {
    animation: xosi-pulse 1.5s infinite;
}

@media (max-width: 767px) {
    .xosi .os-container {
        gap: 8px;
        padding: 8px;
    }

    .xosi .os-item {
        width: calc(50% - 4px);
        height: 60px;
    }

    .xosi .os-logo {
        width: 36px;
        height: 36px;
    }

    .xosi .os-logo[alt="Linux"] {
        width: 40px;
        height: 40px;
    }

    .xosi .os-name {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .xosi .os-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: #888 #f1f1f1;
    }

    .xosi .os-container::-webkit-scrollbar {
        height: 6px;
    }

    .xosi .os-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .xosi .os-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

    .xosi .os-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

/* İşletim Sistemleri Bitiş */

/* Dedicated Server Paketleri */
body {
    font-family: 'Poppins', sans-serif;
    --plusdcp-primary-blue: #00a0e3;
    --plusdcp-border-color: #00a0e347;
    --plusdcp-border-width: 1px;
}

.plusdcp-package-card {
    border: var(--plusdcp-border-width) solid var(--plusdcp-border-color) !important;
    border-top: 3px solid var(--plusdcp-primary-blue) !important;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
    overflow: visible;
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.plusdcp-package-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--plusdcp-primary-blue) !important;
}

.plusdcp-card-body {
    padding: 1rem !important;
    border-top: none !important;
}

.plusdcp-spec-section {
    padding: 0.5rem;
    border-bottom: var(--plusdcp-border-width) solid var(--plusdcp-border-color);
    display: flex;
    flex-direction: column;
    height: auto;
}

.plusdcp-flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.plusdcp-spec-icon-wrapper {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: var(--plusdcp-border-width) solid var(--plusdcp-border-color);
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.plusdcp-spec-section:hover .plusdcp-spec-icon-wrapper {
    background-color: #f0f4ff;
    border-color: var(--plusdcp-primary-blue);
}

.plusdcp-spec-icon {
    width: 18px;
    height: 18px;
    color: var(--plusdcp-primary-blue);
}

.plusdcp-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--plusdcp-primary-blue);
}

.plusdcp-price-period {
    font-size: 14px;
    color: #6c757d;
    font-weight: normal;
}

.plusdcp-next-payment {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
}

.plusdcp-btn-configure {
    background-color: #0486bd;
    border-color: #0486bd;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.plusdcp-btn-configure:hover {
    background-color: var(--plusdcp-primary-blue);
    border-color: var(--plusdcp-primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.plusdcp-btn-configure:active {
    transform: translateY(0);
    box-shadow: none;
}

.plusdcp-btn-configure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.plusdcp-btn-configure:active::after {
    animation: ripple 0.6s ease-out;
}

.plusdcp-spec-label {
    font-size: 12px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 2px;
}

.plusdcp-spec-value {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
}

.plusdcp-processor-name {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
}

.plusdcp-processor-type {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.plusdcp-processor-image {
    width: 100%;
    max-width: 80px;
    height: auto;
    object-fit: contain;
}

.plusdcp-spec-icon-container > div {
    border-bottom: var(--plusdcp-border-width) solid var(--plusdcp-border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.plusdcp-spec-icon-container > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.plusdcp-spec-icon-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plusdcp-row.g-3 {
    align-items: stretch;
}

.plusdcp-card-body .row > [class^="col-"] {
    display: flex;
    flex-direction: column;
}

.plusdcp-toggle-details-btn {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: var(--plusdcp-border-width) solid var(--plusdcp-border-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plusdcp-toggle-details-btn:hover {
    background-color: var(--plusdcp-primary-blue);
    border-color: var(--plusdcp-primary-blue);
}

.plusdcp-toggle-details-btn:hover svg {
    stroke: white;
}

.plusdcp-toggle-details-btn.active {
    transform: translateX(-50%) rotate(180deg);
    background-color: var(--plusdcp-primary-blue);
    border-color: var(--plusdcp-primary-blue);
}

.plusdcp-toggle-details-btn.active svg {
    stroke: white;
}

.plusdcp-details-container {
    background-color: #f8f9fa;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease;
    border-top: var(--plusdcp-border-width) solid var(--plusdcp-border-color);
    padding-top: 0;
    padding-bottom: 0;
}

.plusdcp-details-container.active {
    max-height: 500px;
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 1rem;
    animation: highlight 1s ease;
}

.plusdcp-details-title {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.plusdcp-details-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.plusdcp-details-list li {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    font-weight: 500;
}

.plusdcp-details-list li:hover {
    transform: translateX(3px);
    color: #495057;
}

.plusdcp-details-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.plusdcp-details-list li:hover svg {
    transform: scale(1.1);
}

.plusdcp-original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 18px;
    margin-right: 8px;
    font-weight: 500;
}

.plusdcp-package-info {
    font-size: 13px;
    line-height: 1.5;
    color: #495057;
    font-weight: 500;
}

.plusdcp-package-info-title {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.plusdcp-feature-icon {
    width: 16px;
    height: 16px;
    color: var(--plusdcp-primary-blue);
    margin-right: 8px;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

@keyframes highlight {
    0% {
        background-color: rgba(0, 160, 227, 0.04);
    }
    30% {
        background-color: rgba(0, 160, 227, 0.08);
    }
    100% {
        background-color: rgba(0, 160, 227, 0.04);
    }
}

/* Responsive Styles */
@media (min-width: 992px) {
    .plusdcp-spec-section {
        border-bottom: none;
        border-right: var(--plusdcp-border-width) solid var(--plusdcp-border-color);
    }

    .plusdcp-spec-section:last-child {
        border-right: none;
    }
}

@media (max-width: 991px) {
    .plusdcp-spec-section {
        border-right: none !important;
        border-bottom: var(--plusdcp-border-width) solid var(--plusdcp-border-color);
    }

    .plusdcp-spec-section:last-child {
        border-bottom: none;
    }

    .plusdcp-processor-info {
        text-align: center;
        align-items: center !important;
    }

    .plusdcp-flag-container {
        justify-content: center;
    }

    .plusdcp-price-section {
        text-align: center;
    }

    .plusdcp-card-body {
        padding: 0.75rem !important;
    }

    .row.g-3 {
        --bs-gutter-y: 0.5rem;
    }
}

@media (max-width: 767px) {
    .plusdcp-processor-image {
        max-width: 70px;
    }

    .plusdcp-spec-icon-container > div:first-child {
        margin-bottom: 0.75rem;
    }

    .plusdcp-spec-section {
        padding: 0.5rem 0.25rem;
    }

    .plusdcp-card-body {
        padding: 0.5rem !important;
    }

    .row.g-3 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.25rem;
    }

    .plusdcp-details-title {
        font-size: 13px;
    }

    .plusdcp-details-list li {
        font-size: 11px;
    }

    .plusdcp-package-info {
        font-size: 12px;
    }

    .plusdcp-package-info-title {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .plusdcp-processor-image {
        max-width: 60px;
    }

    .plusdcp-spec-section {
        padding: 0.25rem;
    }

    .plusdcp-spec-icon-wrapper {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .plusdcp-spec-icon {
        width: 12px;
        height: 12px;
    }

    .plusdcp-processor-name {
        font-size: 13px;
    }

    .plusdcp-processor-type {
        font-size: 11px;
    }

    .plusdcp-spec-label {
        font-size: 11px;
    }

    .plusdcp-spec-value {
        font-size: 10px;
    }

    .plusdcp-price {
        font-size: 20px;
    }

    .plusdcp-price-period {
        font-size: 12px;
    }

    .plusdcp-next-payment {
        font-size: 10px;
    }

    .plusdcp-btn-configure {
        font-size: 11px;
        padding: 4px 8px;
    }

    .plusdcp-flag-icon {
        width: 20px;
        height: 14px;
        margin-right: 4px;
    }

    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .plusdcp-original-price {
        font-size: 16px;
        margin-right: 5px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .plusdcp-processor-image {
        max-width: 50px;
    }

    .plusdcp-processor-name {
        font-size: 12px;
    }

    .plusdcp-processor-type {
        font-size: 10px;
    }

    .plusdcp-spec-label {
        font-size: 10px;
    }

    .plusdcp-spec-value {
        font-size: 9px;
    }

    .plusdcp-price {
        font-size: 18px;
    }

    .plusdcp-price-period {
        font-size: 11px;
    }

    .plusdcp-next-payment {
        font-size: 9px;
    }

    .plusdcp-btn-configure {
        font-size: 10px;
        padding: 3px 6px;
    }

    .plusdcp-flag-icon {
        width: 18px;
        height: 12px;
        margin-right: 3px;
    }

    .plusdcp-spec-icon-wrapper {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    .plusdcp-spec-icon {
        width: 10px;
        height: 10px;
    }

    .plusdcp-original-price {
        font-size: 14px;
        margin-right: 4px;
    }
}

.plusdcp-details-container .col-md-5 {
    border-right: 1px solid var(--plusdcp-border-color);
    padding-right: 20px;
}

.plusdcp-details-container .col-md-7 {
    padding-left: 20px;
}

@media (max-width: 767px) {
    .plusdcp-details-container .col-md-5 {
        border-right: none;
        border-bottom: 1px solid var(--plusdcp-border-color);
        padding-right: 15px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .plusdcp-details-container .col-md-7 {
        padding-left: 15px;
        padding-top: 15px;
    }
}

/* Dedicated Server Paketleri Bitis */

/* Tier Verimerkezi */
plusdcxbody {
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.plusdcxservice-section {
    padding: 50px 0 70px;
    text-align: center;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.plusdcxsection-title {
    color: #000000; /* Siyah renk */
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.plusdcxsection-subtitle {
    color: #7a8999;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 15px;
    line-height: 1.6;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.plusdcxlogo-container-wrapper {
    position: relative;
    width: 100%;
    padding: 0 15px;
    overflow: hidden; /* Hide overflow */
}

.plusdcxlogo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 auto;
    gap: 15px;
    padding: 0 5px 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    /* Add right padding to ensure last logo is fully visible */
    padding-right: 20px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.plusdcxlogo-container::-webkit-scrollbar {
    display: none;
}

.plusdcxlogo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    transition: transform 0.3s ease;
}

.plusdcxlogo-item:hover {
    transform: translateY(-5px);
}

.plusdcxpartner-logo {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

/* Extra large screens */
@media (min-width: 1400px) {
    .plusdcxlogo-container {
        justify-content: space-between;
        max-width: 1100px;
        flex-wrap: nowrap;
    }

    .plusdcxpartner-logo {
        max-height: 95px;
    }
}

/* Large screens (desktops) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .plusdcxlogo-container {
        justify-content: space-between;
        max-width: 1000px;
        flex-wrap: nowrap;
    }
}

/* Medium screens (tablets and small desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
    .plusdcxlogo-container {
        gap: 10px;
        max-width: 900px;
        flex-wrap: nowrap;
    }

    .plusdcxpartner-logo {
        max-height: 80px;
    }

    .plusdcxsection-title {
        font-size: 2.3rem;
    }
}

/* Small screens (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
    .plusdcxsection-title {
        font-size: 2.2rem;
    }

    .plusdcxsection-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
        padding: 0 15px;
    }

    .plusdcxlogo-container {
        flex-wrap: nowrap; /* Keep in single row with horizontal scroll */
        justify-content: flex-start; /* Start from left */
        gap: 20px;
        padding: 0 20px 15px 5px; /* Add right padding */
    }

    .plusdcxpartner-logo {
        max-height: 70px;
    }

    .plusdcxlogo-item {
        min-width: 120px; /* Ensure minimum width for each logo */
    }
}

/* Extra small screens (mobile phones) */
@media (min-width: 576px) and (max-width: 767px) {
    .plusdcxservice-section {
        padding: 40px 0 50px;
    }

    .plusdcxsection-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .plusdcxsection-subtitle {
        font-size: 0.95rem;
        margin-bottom: 10px;
        line-height: 1.5;
        padding: 0 20px;
    }

    .plusdcxlogo-container {
        flex-wrap: nowrap; /* Keep in single row with horizontal scroll */
        justify-content: flex-start;
        gap: 15px;
        padding: 0 25px 15px 5px; /* Increased right padding */
    }

    .plusdcxpartner-logo {
        max-height: 60px;
    }

    .plusdcxlogo-item {
        min-width: 100px;
    }
}

/* Very small screens */
@media (min-width: 400px) and (max-width: 575px) {
    .plusdcxsection-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .plusdcxsection-subtitle {
        font-size: 0.9rem;
        margin-bottom: 8px;
        padding: 0 15px;
    }

    .plusdcxlogo-container {
        gap: 12px;
        justify-content: flex-start;
        padding: 0 30px 10px 5px; /* Increased right padding */
        flex-wrap: nowrap;
    }

    .plusdcxlogo-item {
        min-width: 90px;
        padding: 0 5px;
    }

    .plusdcxpartner-logo {
        max-height: 50px;
    }
}

/* Extra small phones */
@media (max-width: 399px) {
    .plusdcxservice-section {
        padding: 30px 0 40px;
    }

    .plusdcxsection-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .plusdcxsection-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 10px;
        margin-bottom: 8px;
    }

    .plusdcxlogo-container {
        gap: 10px;
        padding: 0 35px 10px 5px; /* Increased right padding */
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .plusdcxlogo-item {
        min-width: 80px;
        padding: 0 3px;
    }

    .plusdcxpartner-logo {
        max-height: 45px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .plusdcxservice-section {
        padding: 20px 0 30px;
    }

    .plusdcxsection-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .plusdcxsection-subtitle {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .plusdcxlogo-container {
        flex-wrap: nowrap;
        padding: 0 25px 10px 5px; /* Increased right padding */
    }

    .plusdcxpartner-logo {
        max-height: 50px;
    }
}

/* Tier Verimerkezi Bitis */

/* Dedicated Server Eklentiler */
/* İzole edilmiş CSS - Tüm seçiciler #plusdcekl-container içinde kapsüllenmiştir */
#plusdcekl-container {
    --plusdcekl-primary-color: #1a1a8e !important;
    --plusdcekl-primary-dark: #151578 !important;
    --plusdcekl-primary-light: #2929a3 !important;
    --plusdcekl-accent-color: #90a4e0 !important;
    --plusdcekl-accent-dark: #7a8fc9 !important;
    --plusdcekl-accent-light: #a6b8e9 !important;
    --plusdcekl-accent-gradient: linear-gradient(135deg, #90a4e0, #7a8fc9) !important;
    --plusdcekl-accent-hover: linear-gradient(135deg, #7a8fc9, #6a7fb8) !important;
    --plusdcekl-icon-bg-color: #90a4e0 !important;
    --plusdcekl-text-light: #ffffff !important;
    --plusdcekl-text-dark: #333333 !important;
    --plusdcekl-text-black: #000000 !important;
    --plusdcekl-text-muted: #666666 !important;
    --plusdcekl-card-bg: #ffffff !important;
    --plusdcekl-body-bg: #f8f9fa !important;
    --plusdcekl-card-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
    --plusdcekl-card-hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;

    /* Citrix Section Colors */
    --plusdcekl-firewall-color: #38b6ff !important;
    --plusdcekl-firewall-gradient: linear-gradient(135deg, #38b6ff, #2a8bcc) !important;
    --plusdcekl-file-security-color: #e95f40 !important;
    --plusdcekl-file-security-gradient: linear-gradient(135deg, #e95f40, #d04b30) !important;
    --plusdcekl-data-color: #b44bc4 !important;
    --plusdcekl-data-gradient: linear-gradient(135deg, #b44bc4, #9a3aa8) !important;
    --plusdcekl-cache-color: #ff6b8b !important;
    --plusdcekl-cache-gradient: linear-gradient(135deg, #ff6b8b, #e55a77) !important;
    --plusdcekl-tcp-color: #8c9cb1 !important;
    --plusdcekl-tcp-gradient: linear-gradient(135deg, #8c9cb1, #768aa0) !important;
    --plusdcekl-https-color: #0a617d !important;
    --plusdcekl-https-gradient: linear-gradient(135deg, #0a617d, #084e64) !important;

    /* Sunucu Kiralama Colors */
    --plusdcekl-feature-blue: #38b6ff !important;
    --plusdcekl-feature-pink: #ff6b8b !important;

    /* Container özellikleri */
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333333 !important;
    background-color: #f8f9fa !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
}

#plusdcekl-container * {
    box-sizing: border-box !important;
    font-family: 'Poppins', sans-serif !important;
}

#plusdcekl-container .plusdcekl-row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

#plusdcekl-container .plusdcekl-col-lg-4 {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

#plusdcekl-container .plusdcekl-col-lg-6 {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

#plusdcekl-container .plusdcekl-col-lg-8 {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

#plusdcekl-container .plusdcekl-col-md-6 {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

#plusdcekl-container .plusdcekl-d-flex {
    display: flex !important;
}

#plusdcekl-container .plusdcekl-align-items-center {
    align-items: center !important;
}

#plusdcekl-container .plusdcekl-text-center {
    text-align: center !important;
}

#plusdcekl-container .plusdcekl-my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* Responsive typography */
#plusdcekl-container .plusdcekl-h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--plusdcekl-text-black) !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

#plusdcekl-container .plusdcekl-h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--plusdcekl-text-black) !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

#plusdcekl-container .plusdcekl-h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: var(--plusdcekl-text-black) !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

#plusdcekl-container .plusdcekl-h4 {
    font-size: clamp(1rem, 2.5vw, 1.3rem) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: var(--plusdcekl-text-black) !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

#plusdcekl-container .plusdcekl-p {
    font-size: clamp(0.875rem, 2vw, 1rem) !important;
    line-height: 1.5 !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
}

#plusdcekl-container .plusdcekl-container {
    width: 100% !important;
    max-width: 1400px !important;
    padding-left: clamp(1rem, 3vw, 2rem) !important;
    padding-right: clamp(1rem, 3vw, 2rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Common section spacing */
#plusdcekl-container .plusdcekl-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0 !important;
}

/* Common animation classes */
#plusdcekl-container .plusdcekl-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-hover-lift:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

#plusdcekl-container .plusdcekl-hover-scale {
    transition: transform 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-hover-scale:hover {
    transform: scale(1.05) !important;
}

/* Hero Section with Background Effects */
#plusdcekl-container .plusdcekl-hero-section {
    background: linear-gradient(135deg, var(--plusdcekl-primary-color), var(--plusdcekl-primary-dark)) !important;
    color: var(--plusdcekl-text-light) !important;
    padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.5rem, 5vw, 3.5rem) !important;
    border-radius: clamp(8px, 2vw, 12px) !important;
    margin-bottom: clamp(2rem, 5vw, 3.5rem) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

/* Hero section headings should remain white */
#plusdcekl-container .plusdcekl-hero-section h1,
#plusdcekl-container .plusdcekl-hero-section h2,
#plusdcekl-container .plusdcekl-hero-section h3,
#plusdcekl-container .plusdcekl-hero-section h4,
#plusdcekl-container .plusdcekl-hero-section .plusdcekl-h1,
#plusdcekl-container .plusdcekl-hero-section .plusdcekl-h2,
#plusdcekl-container .plusdcekl-hero-section .plusdcekl-h3,
#plusdcekl-container .plusdcekl-hero-section .plusdcekl-h4 {
    color: var(--plusdcekl-text-light) !important;
}

/* Background decorative elements */
#plusdcekl-container .plusdcekl-hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: -50px !important;
    right: -50px !important;
    width: 200px !important;
    height: 200px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
}

#plusdcekl-container .plusdcekl-hero-section::after {
    content: '' !important;
    position: absolute !important;
    bottom: -80px !important;
    left: -80px !important;
    width: 250px !important;
    height: 250px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
}

#plusdcekl-container .plusdcekl-hero-bg-grid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    z-index: -1 !important;
}

#plusdcekl-container .plusdcekl-hero-bg-dots {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    z-index: -1 !important;
}

#plusdcekl-container .plusdcekl-hero-bg-circuit {
    position: absolute !important;
    top: 20% !important;
    right: 5% !important;
    width: 180px !important;
    height: 180px !important;
    opacity: 0.07 !important;
    z-index: -1 !important;
    animation: plusdcekl-float 6s ease-in-out infinite !important;
}

#plusdcekl-container .plusdcekl-hero-bg-server {
    position: absolute !important;
    bottom: 10% !important;
    left: 60% !important;
    width: 120px !important;
    height: 120px !important;
    opacity: 0.07 !important;
    z-index: -1 !important;
    animation: plusdcekl-float 8s ease-in-out infinite reverse !important;
}

@keyframes plusdcekl-float {
    0% {
        transform: translateY(0px) !important;
    }
    50% {
        transform: translateY(-10px) !important;
    }
    100% {
        transform: translateY(0px) !important;
    }
}

#plusdcekl-container .plusdcekl-logo-container {
    display: inline-block !important;
    margin-bottom: clamp(0.75rem, 2vw, 1rem) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    padding: clamp(6px, 1.5vw, 8px) !important;
    border-radius: 8px !important;
    border-left: 3px solid var(--plusdcekl-accent-color) !important;
    position: relative !important;
    z-index: 2 !important;
    transition: transform 0.3s ease, background-color 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-logo-container:hover {
    transform: translateY(-3px) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}

#plusdcekl-container .plusdcekl-svg-icon {
    width: clamp(24px, 5vw, 28px) !important;
    height: clamp(24px, 5vw, 28px) !important;
    transition: transform 0.3s ease !important;
    fill: none !important;
    stroke: white !important;
}

#plusdcekl-container .plusdcekl-svg-icon-lg {
    width: clamp(30px, 6vw, 36px) !important;
    height: clamp(30px, 6vw, 36px) !important;
    transition: transform 0.3s ease !important;
    fill: none !important;
    stroke: white !important;
}

#plusdcekl-container .plusdcekl-logo-container:hover .plusdcekl-svg-icon-lg {
    transform: scale(1.1) !important;
}

#plusdcekl-container .plusdcekl-hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
    font-weight: 500 !important;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.7rem) !important;
    opacity: 0.9 !important;
    position: relative !important;
    z-index: 2 !important;
    color: var(--plusdcekl-text-light) !important;
}

#plusdcekl-container .plusdcekl-hero-title {
    position: relative !important;
    z-index: 2 !important;
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    line-height: 1.3 !important;
    margin-bottom: clamp(0.75rem, 2vw, 1rem) !important;
    color: var(--plusdcekl-text-light) !important;
    font-weight: 700 !important;
}

#plusdcekl-container .plusdcekl-hero-description {
    font-size: clamp(0.875rem, 2vw, 1rem) !important;
    opacity: 0.8 !important;
    max-width: 90% !important;
    line-height: 1.5 !important;
    margin-bottom: clamp(1rem, 3vw, 1.5rem) !important;
    position: relative !important;
    z-index: 2 !important;
    font-weight: 500 !important;
    color: var(--plusdcekl-text-light) !important;
}

/* Improved Button Styles with New Color */
#plusdcekl-container .plusdcekl-cta-button-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2 !important;
}

#plusdcekl-container .plusdcekl-cta-button {
    background: var(--btn-primary-bg) !important;
    border: none !important;
    padding: clamp(0.7rem, 2vw, 0.9rem) clamp(1.4rem, 3vw, 2rem) !important;
    font-size: clamp(0.875rem, 2vw, 1rem) !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(144, 164, 224, 0.3) !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
    color: var(--plusdcekl-text-light) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transform: translateY(0) !important;
    min-height: 44px !important;
    width: 100% !important;
    max-width: 300px !important;
    cursor: pointer !important;
}

#plusdcekl-container .plusdcekl-cta-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--btn-hover) !important;
    z-index: -1 !important;
    transition: opacity 0.3s ease !important;
    opacity: 0 !important;
}

#plusdcekl-container .plusdcekl-cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(144, 164, 224, 0.4) !important;
    color: var(--plusdcekl-text-light) !important;
}

#plusdcekl-container .plusdcekl-cta-button:hover::before {
    opacity: 1 !important;
}

#plusdcekl-container .plusdcekl-cta-button:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(144, 164, 224, 0.4) !important;
}

#plusdcekl-container .plusdcekl-cta-button-icon {
    display: inline-block !important;
    width: clamp(16px, 4vw, 20px) !important;
    height: clamp(16px, 4vw, 20px) !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
    fill: none !important;
    stroke: white !important;
}

#plusdcekl-container .plusdcekl-cta-button:hover .plusdcekl-cta-button-icon {
    transform: translateX(4px) !important;
}

/* Enhanced Features Section */
#plusdcekl-container .plusdcekl-features-container {
    margin-bottom: clamp(2rem, 5vw, 3rem) !important;
}

/* Improved Feature Card Styles */
#plusdcekl-container .plusdcekl-feature-card {
    padding: clamp(1.5rem, 4vw, 2rem) !important;
    border-radius: clamp(10px, 2vw, 15px) !important;
    background-color: var(--plusdcekl-card-bg) !important;
    box-shadow: var(--plusdcekl-card-shadow) !important;
    height: 100% !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: clamp(1rem, 3vw, 1.5rem) !important;
}

#plusdcekl-container .plusdcekl-feature-card::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 5px !important;
    background: var(--btn-primary-bg) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.4s ease !important;
    z-index: 1 !important;
}

#plusdcekl-container .plusdcekl-feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--plusdcekl-card-hover-shadow) !important;
}

#plusdcekl-container .plusdcekl-feature-card:hover::after {
    transform: scaleX(1) !important;
}

#plusdcekl-container .plusdcekl-feature-icon-wrapper {
    margin-bottom: clamp(1rem, 3vw, 1.5rem) !important;
    position: relative !important;
}

#plusdcekl-container .plusdcekl-feature-icon-wrapper::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: clamp(70px, 14vw, 85px) !important;
    height: clamp(70px, 14vw, 85px) !important;
    background: radial-gradient(circle, rgba(144, 164, 224, 0.1) 0%, rgba(144, 164, 224, 0) 70%) !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
    transition: all 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-feature-card:hover .plusdcekl-feature-icon-wrapper::before {
    width: clamp(80px, 16vw, 100px) !important;
    height: clamp(80px, 16vw, 100px) !important;
    opacity: 0.8 !important;
}

#plusdcekl-container .plusdcekl-feature-icon {
    width: clamp(55px, 11vw, 65px) !important;
    height: clamp(55px, 11vw, 65px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    background-color: var(--btn-primary-bg) !important;
}

#plusdcekl-container .plusdcekl-feature-card:hover .plusdcekl-feature-icon {
    transform: scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

#plusdcekl-container .plusdcekl-feature-title {
    color: var(--btn-primary-bg) !important;
    font-size: clamp(0.8rem, 2vw, 0.95rem) !important;
    font-weight: 600 !important;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.7rem) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    display: inline-block !important;
    padding: 0 5px !important;
}

#plusdcekl-container .plusdcekl-feature-title::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background-color: rgba(58, 98, 205, .2) !important;
    border-radius: 2px !important;
}

#plusdcekl-container .plusdcekl-feature-heading {
    font-weight: 700 !important;
    margin-bottom: clamp(0.8rem, 2vw, 1rem) !important;
    font-size: clamp(1.2rem, 3vw, 1.5rem) !important;
    text-align: center !important;
    color: var(--plusdcekl-text-black) !important;
}

#plusdcekl-container .plusdcekl-feature-text {
    color: var(--plusdcekl-text-muted) !important;
    font-size: clamp(0.85rem, 2vw, 1rem) !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
}

/* CITRIX SECTION STYLES - ENHANCED */
#plusdcekl-container .plusdcekl-citrix-section {
    position: relative !important;
    width: 100% !important;
    min-height: 70vh !important;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 3vw, 2.5rem) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(rgba(0, 0, 20, 0.75), rgba(0, 0, 60, 0.85)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2034&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    margin-top: clamp(1.5rem, 4vw, 3rem) !important;
    overflow: hidden !important;
}

/* Citrix section headings should remain white */
#plusdcekl-container .plusdcekl-citrix-section h1,
#plusdcekl-container .plusdcekl-citrix-section h2,
#plusdcekl-container .plusdcekl-citrix-section h3,
#plusdcekl-container .plusdcekl-citrix-section h4,
#plusdcekl-container .plusdcekl-citrix-section .plusdcekl-h1,
#plusdcekl-container .plusdcekl-citrix-section .plusdcekl-h2,
#plusdcekl-container .plusdcekl-citrix-section .plusdcekl-h3,
#plusdcekl-container .plusdcekl-citrix-section .plusdcekl-h4 {
}

/* Background patterns for Citrix section */
#plusdcekl-container .plusdcekl-citrix-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    z-index: 0 !important;
}

#plusdcekl-container .plusdcekl-citrix-section::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    z-index: 0 !important;
}

#plusdcekl-container .plusdcekl-citrix-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem) !important;
    font-weight: 500 !important;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem) !important;
    color: var(--plusdcekl-accent-color) !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
    letter-spacing: 0.5px !important;
}

#plusdcekl-container .plusdcekl-citrix-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
    font-weight: 700 !important;
    margin-bottom: clamp(0.75rem, 2vw, 1rem) !important;
    text-align: center !important;
    color: var(--plusdcekl-text-light) !important;
    position: relative !important;
    z-index: 1 !important;
    letter-spacing: 0.5px !important;
}

#plusdcekl-container .plusdcekl-citrix-description {
    font-size: clamp(0.9rem, 2.2vw, 1rem) !important;
    max-width: 800px !important;
    margin-bottom: clamp(1.5rem, 4vw, 2rem) !important;
    text-align: center !important;
    opacity: 0.9 !important;
    color: var(--plusdcekl-text-light) !important;
    position: relative !important;
    z-index: 1 !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    padding: 0 clamp(0.5rem, 2vw, 1rem) !important;
}

/* Enhanced Services Grid */
#plusdcekl-container .plusdcekl-services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: clamp(10px, 3vw, 25px) !important;
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
    padding: 0 clamp(10px, 3vw, 30px) !important;
}

/* Enhanced Service Box */
#plusdcekl-container .plusdcekl-service-box {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative !important;
    min-height: 160px !important;
}

#plusdcekl-container .plusdcekl-service-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

#plusdcekl-container .plusdcekl-service-box::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: var(--plusdcekl-accent-gradient) !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: transform 0.4s ease !important;
}

#plusdcekl-container .plusdcekl-service-box:hover::after {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}

#plusdcekl-container .plusdcekl-service-icon-area {
    height: auto !important;
    aspect-ratio: 1/1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(15px, 4vw, 30px) !important;
    position: relative !important;
    overflow: hidden !important;
}

#plusdcekl-container .plusdcekl-service-icon-area::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-service-box:hover .plusdcekl-service-icon-area::before {
    opacity: 1 !important;
}

#plusdcekl-container .plusdcekl-service-icon-area svg {
    width: clamp(32px, 8vw, 55px) !important;
    height: clamp(32px, 8vw, 55px) !important;
    transition: transform 0.3s ease !important;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)) !important;
    fill: none !important;
    stroke: white !important;
    stroke-width: 2 !important;
}

#plusdcekl-container .plusdcekl-service-box:hover .plusdcekl-service-icon-area svg {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15)) !important;
}

#plusdcekl-container .plusdcekl-service-text-area {
    padding: clamp(12px, 3vw, 20px) !important;
    text-align: center !important;
    background-color: white !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

#plusdcekl-container .plusdcekl-service-name {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem) !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: clamp(3px, 1vw, 5px) !important;
}

#plusdcekl-container .plusdcekl-service-type {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem) !important;
    color: #000000 !important;
    font-weight: 600 !important;
    margin-top: 0 !important;
}

/* Service-specific styles with enhanced gradients */
#plusdcekl-container .plusdcekl-firewall-service .plusdcekl-service-icon-area {
    background: var(--plusdcekl-firewall-gradient) !important;
}

#plusdcekl-container .plusdcekl-file-security-service .plusdcekl-service-icon-area {
    background: var(--plusdcekl-file-security-gradient) !important;
}

#plusdcekl-container .plusdcekl-data-service .plusdcekl-service-icon-area {
    background: var(--plusdcekl-data-gradient) !important;
}

#plusdcekl-container .plusdcekl-cache-service .plusdcekl-service-icon-area {
    background: var(--plusdcekl-cache-gradient) !important;
}

#plusdcekl-container .plusdcekl-tcp-service .plusdcekl-service-icon-area {
    background: var(--plusdcekl-tcp-gradient) !important;
}

#plusdcekl-container .plusdcekl-https-service .plusdcekl-service-icon-area {
    background: var(--plusdcekl-https-gradient) !important;
}

/* SUNUCU KIRALAMA SECTION STYLES - ENHANCED */
#plusdcekl-container .plusdcekl-rental-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0 !important;
    background-color: var(--plusdcekl-body-bg) !important;
    position: relative !important;
}

#plusdcekl-container .plusdcekl-rental-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: radial-gradient(var(--plusdcekl-accent-light) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    opacity: 0.1 !important;
    z-index: 0 !important;
}

/* Başlık container'ı için yeni stil */
#plusdcekl-container .plusdcekl-rental-title-container {
    text-align: center !important;
    margin-bottom: clamp(1.5rem, 4vw, 2rem) !important;
}

#plusdcekl-container .plusdcekl-rental-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem) !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 5px !important;
}

#plusdcekl-container .plusdcekl-rental-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 3px !important;
    background-color: var(--plusdcekl-feature-blue) !important;
    border-radius: 3px !important;
    transition: width 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-rental-title-container:hover .plusdcekl-rental-title::after {
    width: 60px !important;
}

#plusdcekl-container .plusdcekl-rental-title.blue {
    color: var(--plusdcekl-feature-blue) !important;
}

#plusdcekl-container .plusdcekl-rental-title.blue::after {
    background-color: var(--plusdcekl-feature-blue) !important;
}

#plusdcekl-container .plusdcekl-rental-title.pink {
    color: var(--plusdcekl-feature-pink) !important;
}

#plusdcekl-container .plusdcekl-rental-title.pink::after {
    background-color: var(--plusdcekl-feature-pink) !important;
}

#plusdcekl-container .plusdcekl-rental-subtitle {
    font-size: clamp(1.5rem, 4vw, 1.8rem) !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: clamp(1.5rem, 4vw, 2rem) !important;
    text-align: center !important;
    color: var(--plusdcekl-text-black) !important;
}

#plusdcekl-container .plusdcekl-feature-list {
    margin-bottom: clamp(2rem, 5vw, 2.5rem) !important;
}

#plusdcekl-container .plusdcekl-feature-item {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: clamp(1rem, 2.5vw, 1.25rem) !important;
    background-color: white !important;
    border-radius: 12px !important;
    padding: clamp(1rem, 2.5vw, 1.25rem) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

#plusdcekl-container .plusdcekl-feature-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

#plusdcekl-container .plusdcekl-feature-item::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 0 !important;
    height: 3px !important;
    background: var(--plusdcekl-accent-gradient) !important;
    transition: width 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-feature-item:hover::after {
    width: 100% !important;
}

#plusdcekl-container .plusdcekl-feature-item-icon {
    width: clamp(40px, 8vw, 50px) !important;
    height: clamp(40px, 8vw, 50px) !important;
    min-width: clamp(40px, 8vw, 50px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(144, 164, 224, 0.1) !important;
    border-radius: 10px !important;
    margin-right: clamp(0.75rem, 2vw, 1rem) !important;
    transition: all 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-feature-item:hover .plusdcekl-feature-item-icon {
    transform: scale(1.05) !important;
    background-color: rgba(144, 164, 224, 0.2) !important;
}

#plusdcekl-container .plusdcekl-feature-item-icon svg {
    width: clamp(20px, 4vw, 24px) !important;
    height: clamp(20px, 4vw, 24px) !important;
    transition: transform 0.3s ease !important;
    fill: none !important;
    stroke-width: 2 !important;
}

#plusdcekl-container .plusdcekl-feature-item-icon svg path {
    stroke: var(--plusdcekl-primary-color) !important;
}

#plusdcekl-container .plusdcekl-feature-item:hover .plusdcekl-feature-item-icon svg {
    transform: scale(1.1) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) !important;
}

#plusdcekl-container .plusdcekl-feature-item-content {
    flex: 1 !important;
}

#plusdcekl-container .plusdcekl-feature-item-number {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem) !important;
    font-weight: 600 !important;
    color: var(--plusdcekl-accent-color) !important;
    margin-bottom: clamp(0.25rem, 0.75vw, 0.3rem) !important;
    display: flex !important;
    align-items: center !important;
    transition: color 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-feature-item:hover .plusdcekl-feature-item-number {
    color: var(--plusdcekl-primary-light) !important;
}

#plusdcekl-container .plusdcekl-feature-item-title {
    font-size: clamp(1rem, 2.2vw, 1.1rem) !important;
    font-weight: 700 !important;
    color: var(--plusdcekl-text-black) !important;
    margin-bottom: clamp(0.25rem, 0.75vw, 0.3rem) !important;
    transition: color 0.3s ease !important;
}

#plusdcekl-container .plusdcekl-feature-item:hover .plusdcekl-feature-item-title {
    color: var(--plusdcekl-primary-color) !important;
}

#plusdcekl-container .plusdcekl-feature-item-description {
    font-size: clamp(0.85rem, 1.8vw, 0.9rem) !important;
    color: var(--plusdcekl-text-muted) !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

/* Pink feature items */
#plusdcekl-container .plusdcekl-feature-item.pink .plusdcekl-feature-item-icon {
    background-color: rgba(255, 107, 139, 0.1) !important;
}

#plusdcekl-container .plusdcekl-feature-item.pink:hover .plusdcekl-feature-item-icon {
    background-color: rgba(255, 107, 139, 0.2) !important;
}

#plusdcekl-container .plusdcekl-feature-item.pink .plusdcekl-feature-item-icon svg path {
    stroke: var(--plusdcekl-feature-pink) !important;
}

#plusdcekl-container .plusdcekl-feature-item.pink .plusdcekl-feature-item-number {
    color: var(--plusdcekl-feature-pink) !important;
}

#plusdcekl-container .plusdcekl-feature-item.pink:hover .plusdcekl-feature-item-title {
    color: var(--plusdcekl-feature-pink) !important;
}

#plusdcekl-container .plusdcekl-feature-item.pink::after {
    background: linear-gradient(135deg, var(--plusdcekl-feature-pink), #e55a77) !important;
}

/* Responsive Layout Adjustments */
@media (min-width: 992px) {
    #plusdcekl-container .plusdcekl-col-lg-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }

    #plusdcekl-container .plusdcekl-col-lg-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    #plusdcekl-container .plusdcekl-col-lg-8 {
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #plusdcekl-container .plusdcekl-col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 575.98px) {
    #plusdcekl-container .plusdcekl-feature-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    #plusdcekl-container .plusdcekl-feature-item-icon {
        margin-right: 0 !important;
        margin-bottom: 10px !important;
    }

    #plusdcekl-container .plusdcekl-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 399.98px) {
    #plusdcekl-container .plusdcekl-services-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* Dedicaetd Server Eklentiler Bitis */

/* Kurumsal - Hakımızda */
/* İzole edilmiş CSS - Tüm seçiciler .spkurumsal-wrapper altında */
.spkurumsal-wrapper {
    /* Base styles */
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.5;
    color: #212529;
    overflow-x: hidden;

    /* Theme variables - Updated to match xServer colors */
    --spkurumsal-primary-color: #2d3a5e; /* Dark navy blue from header */
    --spkurumsal-primary-hover: #3a4b7a; /* Slightly lighter navy blue */
    --spkurumsal-secondary-color: #4a63b8; /* Medium blue from buttons */
    --spkurumsal-warning-bg: #f8f9fc; /* Very light blue background */
    --spkurumsal-warning-border: #d1d9f0; /* Light blue border */
    --spkurumsal-text-dark: #212529; /* Dark text */
    --spkurumsal-text-light: #ffffff; /* White text */
    --spkurumsal-text-muted: #6c758d; /* Muted text color */
    --spkurumsal-border-color: #d1d9f0; /* Light blue border */
    --spkurumsal-divider-color: #e6eaf4; /* Very light blue divider */
    --spkurumsal-divider-dark: #c5cce6; /* Slightly darker divider */
    --spkurumsal-divider-light: #f8f9fc; /* Very light blue background */
    --spkurumsal-shadow-sm: 0 .125rem .25rem rgba(45, 58, 94, .075); /* Shadow with primary color */
    --spkurumsal-shadow-md: 0 .5rem 1rem rgba(45, 58, 94, .15); /* Shadow with primary color */
    --spkurumsal-transition-speed: 0.3s;
    --spkurumsal-success-color: #4a63b8; /* Medium blue */
    --spkurumsal-accent-color: #ffc107; /* Orange/yellow accent color */
}

.spkurumsal-wrapper .spkurumsal-container {
    max-width: 1200px;
    padding: 1rem;
}

/* Typography responsive styles */
.spkurumsal-wrapper .spkurumsal-h1,
.spkurumsal-wrapper .spkurumsal-h2,
.spkurumsal-wrapper .spkurumsal-h3,
.spkurumsal-wrapper .spkurumsal-h4,
.spkurumsal-wrapper .spkurumsal-h5,
.spkurumsal-wrapper .spkurumsal-h6,
.spkurumsal-wrapper h1,
.spkurumsal-wrapper h2,
.spkurumsal-wrapper h3,
.spkurumsal-wrapper h4,
.spkurumsal-wrapper h5,
.spkurumsal-wrapper h6 {
    font-weight: 600;
    font-family: 'Poppins', sans-serif !important;
}

.spkurumsal-wrapper .spkurumsal-p,
.spkurumsal-wrapper .spkurumsal-a,
.spkurumsal-wrapper .spkurumsal-span,
.spkurumsal-wrapper .spkurumsal-button,
.spkurumsal-wrapper .spkurumsal-li,
.spkurumsal-wrapper p,
.spkurumsal-wrapper a,
.spkurumsal-wrapper span,
.spkurumsal-wrapper button,
.spkurumsal-wrapper li,
.spkurumsal-wrapper .spkurumsal-bank-details p,
.spkurumsal-wrapper .spkurumsal-pdf-title,
.spkurumsal-wrapper .spkurumsal-alert p {
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
}

/* Apply font to all buttons */
.spkurumsal-wrapper .btn {
    font-family: 'Poppins', sans-serif !important;
}

/* Sidebar styles with enhanced responsiveness and dividers */
.spkurumsal-wrapper .spkurumsal-sidebar-menu {
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    position: relative;
    border: 1px solid var(--spkurumsal-divider-color);
    margin-bottom: 1.5rem; /* Added margin for mobile view */
}

/* Menu item styles without icons */
.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
    padding: 0.875rem 1.25rem;
    transition: all var(--spkurumsal-transition-speed) ease;
    font-weight: 500;
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--spkurumsal-divider-color);
    position: relative;
    cursor: pointer;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover:not(.active) {
    background-color: rgba(74, 99, 184, 0.05);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i.fa-chevron-right {
    transition: transform var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover i.fa-chevron-right {
    transform: translateX(3px);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active i.fa-chevron-right {
    color: var(--spkurumsal-text-light) !important;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:last-child {
    border-bottom: none;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--spkurumsal-primary-color);
    transition: width var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover::after {
    width: 100%;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i {
    transition: transform var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover:not(.active) {
    background-color: rgba(74, 99, 184, 0.05);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover i {
    transform: translateX(3px);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active {
    background-color: var(--spkurumsal-primary-color);
    border-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--spkurumsal-accent-color);
}

/* Enhanced vertical divider styles */
.spkurumsal-wrapper .spkurumsal-vertical-divider {
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--spkurumsal-divider-light), var(--spkurumsal-divider-dark), var(--spkurumsal-divider-light));
    display: none; /* Hidden by default, shown on larger screens */
    opacity: 0.8;
    box-shadow: 1px 0 3px rgba(45, 58, 94, 0.05);
}

/* Alert styles with enhanced responsiveness and dividers */
.spkurumsal-wrapper .spkurumsal-alert-warning {
    background-color: #ffffff;
    border: 1px solid var(--spkurumsal-border-color);
    border-radius: 0.375rem;
    padding: 1rem;
    transition: all var(--spkurumsal-transition-speed) ease;
    box-shadow: var(--spkurumsal-shadow-sm);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-alert-warning::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--spkurumsal-secondary-color);
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.spkurumsal-wrapper .spkurumsal-alert-warning strong {
    font-weight: 600;
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-alert-warning strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: rgba(45, 58, 94, 0.2);
}

/* Bank card styles with enhanced responsiveness and dividers */
.spkurumsal-wrapper .spkurumsal-bank-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-bank-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-bank-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
}

.spkurumsal-wrapper .spkurumsal-bank-logo {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--spkurumsal-text-light);
    height: 100%;
    transition: all var(--spkurumsal-transition-speed) ease;
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-bank-logo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--spkurumsal-divider-color);
}

/* Logo styling to ensure consistent size */
.spkurumsal-wrapper .spkurumsal-bank-logo img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    width: auto;
    object-fit: contain;
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-bank-details {
    padding: 1.25rem;
    background-color: var(--spkurumsal-secondary-color);
    color: var(--spkurumsal-text-light);
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-bank-details p {
    margin-bottom: 0.5rem;
    word-break: break-word;
    transition: all var(--spkurumsal-transition-speed) ease;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spkurumsal-wrapper .spkurumsal-bank-details p:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Improved bank details styling with better spacing */
.spkurumsal-wrapper .spkurumsal-bank-details strong {
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-bank-details strong::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

/* Info button styles with enhanced responsiveness */
.spkurumsal-wrapper .spkurumsal-info-button {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif !important;
    transition: all var(--spkurumsal-transition-speed) ease;
    box-shadow: var(--spkurumsal-shadow-sm);
    position: relative;
    overflow: hidden;
}

.spkurumsal-wrapper .spkurumsal-info-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.spkurumsal-wrapper .spkurumsal-info-button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.spkurumsal-wrapper .spkurumsal-info-button:hover {
    background-color: var(--spkurumsal-primary-hover);
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-1px);
}

.spkurumsal-wrapper .spkurumsal-info-button:active {
    transform: translateY(1px);
    box-shadow: var(--spkurumsal-shadow-sm);
}

.spkurumsal-wrapper .spkurumsal-info-button .spkurumsal-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.spkurumsal-wrapper .spkurumsal-info-button:focus:not(:active) .spkurumsal-ripple {
    animation: spkurumsal-ripple 1s ease-out;
}

@keyframes spkurumsal-ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Info list styles with enhanced responsiveness and dividers */
.spkurumsal-wrapper .spkurumsal-info-list {
    margin-top: 1.5rem;
    padding: 0.5rem;
    transition: all var(--spkurumsal-transition-speed) ease;
    border-top: 1px solid var(--spkurumsal-divider-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-info-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 50px;
    height: 3px;
    background-color: var(--spkurumsal-primary-color);
}

.spkurumsal-wrapper .spkurumsal-info-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0;
    padding-bottom: 1rem;
    line-height: 1.6;
    transition: all var(--spkurumsal-transition-speed) ease;
    border-bottom: 1px dashed var(--spkurumsal-divider-color);
}

.spkurumsal-wrapper .spkurumsal-info-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.spkurumsal-wrapper .spkurumsal-info-list li:before {
    content: "";
    position: absolute;
    left: 0;
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-info-list li:hover {
    transform: translateX(3px);
}

/* About Us page styles with enhanced responsiveness */
.spkurumsal-wrapper .spkurumsal-about-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-about-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-about-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
}

.spkurumsal-wrapper .spkurumsal-about-card-body {
    padding: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-about-card-title {
    color: var(--spkurumsal-primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.spkurumsal-wrapper .spkurumsal-about-card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--spkurumsal-primary-color);
}

/* Enhanced styles for Değerlerimiz section */
.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list {
    margin-top: 0.5rem;
    padding: 0;
    border-top: none;
}

.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list::before {
    display: none;
}

.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed var(--spkurumsal-divider-color);
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Remove bullet points from Değerlerimiz section */
.spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list {
    list-style-type: none;
    padding-left: 0;
}

/* Content wrapper with enhanced divider */
.spkurumsal-wrapper .spkurumsal-content-wrapper {
    position: relative;
    border-left: none;
}

.spkurumsal-wrapper .spkurumsal-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--spkurumsal-divider-light), var(--spkurumsal-divider-dark), var(--spkurumsal-divider-light));
    display: none;
    opacity: 0.8;
}

/* Section divider */
.spkurumsal-wrapper .spkurumsal-section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--spkurumsal-divider-color), transparent);
    margin: 1.5rem 0;
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -3px;
    width: 50px;
    height: 7px;
    background-color: #fff;
    transform: translateX(-50%);
}

.spkurumsal-wrapper .spkurumsal-section-divider::after {
    content: '•';
    position: absolute;
    left: 50%;
    top: -8px;
    color: var(--spkurumsal-primary-color);
    transform: translateX(-50%);
    font-size: 1rem;
}

/* Page content styles */
.spkurumsal-wrapper .spkurumsal-page-content {
    display: none;
}

.spkurumsal-wrapper .spkurumsal-page-content.active {
    display: block;
}

.spkurumsal-wrapper .spkurumsal-page-title {
    color: var(--spkurumsal-primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--spkurumsal-divider-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background-color: var(--spkurumsal-primary-color);
}

/* Knowledge Base page styles */
.spkurumsal-wrapper .spkurumsal-kb-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-kb-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-kb-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
}

.spkurumsal-wrapper .spkurumsal-kb-card-header {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    padding: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.spkurumsal-wrapper .spkurumsal-kb-card-header i {
    transition: transform var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-kb-card-header.collapsed i {
    transform: rotate(-90deg);
}

.spkurumsal-wrapper .spkurumsal-kb-card-body {
    padding: 1.25rem;
    border-top: 1px solid var(--spkurumsal-divider-color);
}

/* Support Center page styles */
.spkurumsal-wrapper .spkurumsal-support-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-support-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-support-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
}

.spkurumsal-wrapper .spkurumsal-support-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-support-card-body {
    padding: 1.5rem;
    text-align: center;
}

.spkurumsal-wrapper .spkurumsal-support-card-title {
    color: var(--spkurumsal-primary-color);
    margin-bottom: 0.75rem;
}

/* Contact page styles */
.spkurumsal-wrapper .spkurumsal-contact-form-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-contact-form-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-contact-form-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
}

.spkurumsal-wrapper .spkurumsal-contact-form-header {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    padding: 1.25rem;
    font-weight: 500;
}

.spkurumsal-wrapper .spkurumsal-contact-form-body {
    padding: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-contact-form .form-control {
    border-radius: 0.375rem;
    padding: 0.75rem;
    border: 1px solid var(--spkurumsal-border-color);
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-contact-form .form-control:focus {
    border-color: var(--spkurumsal-primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45, 58, 94, 0.25);
}

.spkurumsal-wrapper .spkurumsal-contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.spkurumsal-wrapper .spkurumsal-contact-info-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    margin-bottom: 1.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-contact-info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 1;
}

.spkurumsal-wrapper .spkurumsal-contact-info-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
}

.spkurumsal-wrapper .spkurumsal-contact-info-header {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    padding: 1.25rem;
    font-weight: 500;
}

.spkurumsal-wrapper .spkurumsal-contact-info-body {
    padding: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--spkurumsal-divider-color);
}

.spkurumsal-wrapper .spkurumsal-contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.spkurumsal-wrapper .spkurumsal-contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.spkurumsal-wrapper .spkurumsal-contact-info-text {
    flex-grow: 1;
}

.spkurumsal-wrapper .spkurumsal-contact-info-text h5 {
    margin-bottom: 0.25rem;
    color: var(--spkurumsal-primary-color);
}

/* PDF Document Card Styles */
.spkurumsal-wrapper .spkurumsal-pdf-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--spkurumsal-border-color);
    margin-bottom: 1rem;
    background-color: white;
    box-shadow: var(--spkurumsal-shadow-sm);
    transition: all var(--spkurumsal-transition-speed) ease;
    cursor: pointer;
    text-decoration: none; /* Remove any text decoration */
}

.spkurumsal-wrapper .spkurumsal-pdf-card:hover {
    box-shadow: var(--spkurumsal-shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}

.spkurumsal-wrapper .spkurumsal-pdf-icon {
    color: var(--spkurumsal-secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.spkurumsal-wrapper .spkurumsal-pdf-title {
    flex-grow: 1;
    font-weight: 500;
    color: var(--spkurumsal-text-dark);
}

.spkurumsal-wrapper .spkurumsal-pdf-size {
    background-color: var(--spkurumsal-success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none; /* Remove any text decoration */
    border-bottom: none; /* Ensure no border-bottom is applied */
}

/* Modal styles for better responsiveness */
.spkurumsal-wrapper .spkurumsal-modal-dialog {
    max-width: 95%;
    margin: 1rem auto;
}

@media (min-width: 768px) {
    .spkurumsal-wrapper .spkurumsal-modal-dialog {
        max-width: 90%;
    }
}

@media (min-width: 992px) {
    .spkurumsal-wrapper .spkurumsal-modal-dialog {
        max-width: 800px;
    }
}

.spkurumsal-wrapper .spkurumsal-modal-content {
    border-radius: 0.5rem;
    overflow: hidden;
}

.spkurumsal-wrapper .spkurumsal-modal-header {
    background-color: var(--spkurumsal-primary-color);
    color: var(--spkurumsal-text-light);
    border-bottom: none;
}

.spkurumsal-wrapper .spkurumsal-modal-title {
    font-weight: 500;
}

.spkurumsal-wrapper .spkurumsal-modal-body {
    padding: 1.5rem;
}

.spkurumsal-wrapper .spkurumsal-modal-footer {
    border-top: 1px solid var(--spkurumsal-divider-color);
    padding: 1rem 1.5rem;
}

/* PDF iframe container */
.spkurumsal-wrapper .spkurumsal-pdf-container {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    border: 1px solid var(--spkurumsal-border-color);
    border-radius: 0.375rem;
    overflow: hidden;
}

/* Sticky sidebar for larger screens */
@media (min-width: 992px) {
    .spkurumsal-wrapper .spkurumsal-sticky-sidebar {
        position: sticky;
        top: 1rem;
    }
}

/* Ultra-detailed responsive styles for different screen sizes */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .spkurumsal-wrapper .spkurumsal-container {
        padding: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu {
        margin-bottom: 1.25rem;
        border-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        border-bottom-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i {
        font-size: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active::before {
        width: 3px;
    }

    .spkurumsal-wrapper .spkurumsal-alert-warning {
        padding: 0.75rem 0.75rem 0.75rem 1rem;
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
        border-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-alert-warning::before {
        width: 3px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-card {
        margin-bottom: 1rem;
        border-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-card::before {
        height: 2px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo {
        padding: 0.75rem;
        border-bottom: 1px solid var(--spkurumsal-divider-color);
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo::after {
        display: none;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo img {
        max-height: 30px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details {
        padding: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details p {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
        padding-bottom: 0.375rem;
        border-bottom-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong {
        min-width: 90px;
        font-size: 0.8125rem;
        margin-bottom: 0.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong::after {
        right: 3px;
    }

    .spkurumsal-wrapper .spkurumsal-info-button {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .spkurumsal-wrapper .spkurumsal-section-divider {
        margin: 1rem 0;
    }

    .spkurumsal-wrapper .spkurumsal-section-divider::before {
        width: 30px;
    }

    .spkurumsal-wrapper .spkurumsal-info-list {
        margin-top: 1.25rem;
        border-top-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-info-list::before {
        width: 30px;
        height: 2px;
    }

    .spkurumsal-wrapper .spkurumsal-info-list li {
        font-size: 0.8125rem;
        padding-left: 0;
        margin-bottom: 0.875rem;
        padding-bottom: 0.875rem;
        line-height: 1.5;
        border-bottom-width: 1px;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
        font-size: 0.8125rem;
    }

    .spkurumsal-wrapper .spkurumsal-page-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card-body {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-kb-card-header {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-kb-card-body {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .spkurumsal-wrapper .spkurumsal-support-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-support-card-body {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-support-card-title {
        font-size: 1.125rem;
    }

    .spkurumsal-wrapper .spkurumsal-contact-form-header, .spkurumsal-wrapper .spkurumsal-contact-info-header {
        padding: 1rem;
        font-size: 1.125rem;
    }

    .spkurumsal-wrapper .spkurumsal-contact-form-body, .spkurumsal-wrapper .spkurumsal-contact-info-body {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-contact-info-icon {
        width: 35px;
        height: 35px;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-card {
        padding: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-icon {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-title {
        font-size: 0.875rem;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-size {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }

    /* Modal adjustments for mobile */
    .spkurumsal-wrapper .spkurumsal-modal-body {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-modal-footer {
        padding: 0.75rem 1rem;
        flex-direction: column;
    }

    .spkurumsal-wrapper .spkurumsal-modal-footer .btn {
        width: 100%;
        margin: 0.25rem 0;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-container {
        height: 60vh;
        min-height: 300px;
    }

    /* Improved bank details display for small screens */
    .spkurumsal-wrapper .spkurumsal-bank-details p {
        display: flex;
        flex-direction: column;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong {
        margin-bottom: 0.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong::after {
        display: none;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .spkurumsal-wrapper .spkurumsal-sidebar-menu {
        margin-bottom: 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
        padding: 0.875rem 1.125rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-alert-warning {
        padding: 0.875rem 0.875rem 0.875rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo {
        padding: 1rem;
        border-bottom: 1px solid var(--spkurumsal-divider-color);
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo::after {
        display: none;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo img {
        max-height: 35px;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details {
        padding: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details p {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details strong {
        min-width: 95px;
    }

    .spkurumsal-wrapper .spkurumsal-info-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-list li {
        font-size: 0.875rem;
        padding-left: 0;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 0.625rem 0;
        margin-bottom: 0.625rem;
        font-size: 0.875rem;
    }

    .spkurumsal-wrapper .spkurumsal-page-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    /* Modal adjustments for small devices */
    .spkurumsal-wrapper .spkurumsal-modal-footer {
        flex-wrap: wrap;
    }

    .spkurumsal-wrapper .spkurumsal-modal-footer .btn {
        margin: 0.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-pdf-container {
        height: 65vh;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /* Show vertical divider on medium devices and up */
    .spkurumsal-wrapper .spkurumsal-vertical-divider {
        display: block;
    }

    .spkurumsal-wrapper .spkurumsal-content-wrapper::before {
        display: block;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
        padding: 0.9375rem 1.25rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo {
        border-right: 1px solid var(--spkurumsal-divider-color);
        border-bottom: none;
        padding: 1.125rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo::after {
        display: none;
    }

    .spkurumsal-wrapper .spkurumsal-bank-details p {
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-button {
        padding: 0.75rem 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-list li {
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 0.75rem 0;
        margin-bottom: 0.75rem;
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-page-title {
        font-size: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .spkurumsal-wrapper .spkurumsal-bank-logo {
        border-right: 1px solid var(--spkurumsal-divider-color);
    }

    .spkurumsal-wrapper .spkurumsal-bank-details p {
        font-size: 0.9375rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 0.875rem 0;
        margin-bottom: 0.875rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .spkurumsal-wrapper .spkurumsal-container {
        padding: 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item {
        padding: 1rem 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-bank-logo {
        padding: 1.5rem;
        border-right: 1px solid var(--spkurumsal-divider-color);
    }

    .spkurumsal-wrapper .spkurumsal-bank-details {
        padding: 1.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-button {
        padding: 0.875rem 1.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-list {
        margin-top: 1.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-info-list li {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .spkurumsal-wrapper .spkurumsal-about-card .spkurumsal-info-list li {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-page-title {
        font-size: 2.25rem;
    }
}

/* Menu icon styles */
.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i {
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover:not(.active) i.text-primary {
    transform: translateX(3px);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active i.text-primary {
    color: var(--spkurumsal-text-light) !important;
}

/* Responsive adjustments for menu icons */
@media (max-width: 575.98px) {
    .spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item i.me-3 {
        font-size: 0.875rem;
        margin-right: 0.5rem !important;
    }
}

/* Replace with new icon container styles */
.spkurumsal-wrapper .spkurumsal-icon-container {
    background-color: rgba(74, 99, 184, 0.1);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item:hover:not(.active) .spkurumsal-icon-container {
    background-color: rgba(74, 99, 184, 0.2);
    transform: translateX(3px);
}

.spkurumsal-wrapper .spkurumsal-icon-container i {
    color: var(--spkurumsal-primary-color);
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active .spkurumsal-icon-container {
    background-color: rgba(255, 255, 255, 0.2);
}

.spkurumsal-wrapper .spkurumsal-icon-container i {
    font-size: 14px;
    color: var(--spkurumsal-primary-color);
    transition: all var(--spkurumsal-transition-speed) ease;
}

.spkurumsal-wrapper .spkurumsal-sidebar-menu .list-group-item.active .spkurumsal-icon-container i {
    color: var(--spkurumsal-text-light);
}

/* Responsive adjustments for icon containers */
@media (max-width: 575.98px) {
    .spkurumsal-wrapper .spkurumsal-icon-container {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }

    .spkurumsal-wrapper .spkurumsal-icon-container i {
        font-size: 12px;
    }
}

@media (min-width: 1200px) {
    .spkurumsal-wrapper .spkurumsal-icon-container {
        width: 36px;
        height: 36px;
    }

    .spkurumsal-wrapper .spkurumsal-icon-container i {
        font-size: 16px;
    }
}

/* Loading indicator for PDF */
.spkurumsal-wrapper .spkurumsal-pdf-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.spkurumsal-wrapper .spkurumsal-pdf-loading-spinner {
    border: 4px solid rgba(45, 58, 94, 0.2);
    border-top: 4px solid var(--spkurumsal-primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spkurumsal-spin 1s linear infinite;
}

@keyframes spkurumsal-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Improved bank account display */
.spkurumsal-wrapper .spkurumsal-bank-account {
    font-family: monospace;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .spkurumsal-wrapper .spkurumsal-bank-account {
        word-break: break-all;
        display: block;
        margin-top: 4px;
    }
}

/* Kurumsal Slider Styles */
.spkurumsal-wrapper .spkurumsal-slider {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--spkurumsal-shadow-md);
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-slider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #2d3a5e, #4a63b8);
    z-index: 10;
}

.spkurumsal-wrapper .spkurumsal-slider-item {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.spkurumsal-wrapper .spkurumsal-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.spkurumsal-wrapper .spkurumsal-slider-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.spkurumsal-wrapper .spkurumsal-slider-description {
    color: white;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Bootstrap carousel overrides for isolation */
.spkurumsal-wrapper .carousel-indicators {
    margin-bottom: 1rem;
}

.spkurumsal-wrapper .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.spkurumsal-wrapper .carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

.spkurumsal-wrapper .carousel-control-prev,
.spkurumsal-wrapper .carousel-control-next {
    width: 10%;
    opacity: 0.7;
}

.spkurumsal-wrapper .carousel-control-prev:hover,
.spkurumsal-wrapper .carousel-control-next:hover {
    opacity: 1;
}

/* Responsive slider adjustments */
@media (max-width: 991.98px) {
    .spkurumsal-wrapper .spkurumsal-slider-item {
        height: 350px;
    }

    .spkurumsal-wrapper .spkurumsal-slider-title {
        font-size: 2rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .spkurumsal-wrapper .spkurumsal-slider-item {
        height: 300px;
    }

    .spkurumsal-wrapper .spkurumsal-slider-title {
        font-size: 1.75rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-description {
        font-size: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .spkurumsal-wrapper .spkurumsal-slider-item {
        height: 250px;
    }

    .spkurumsal-wrapper .spkurumsal-slider-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-button {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

    .spkurumsal-wrapper .spkurumsal-slider-overlay {
        padding: 1rem;
    }
}

/* Carousel isolation styles */
.spkurumsal-wrapper .spkurumsal-carousel {
    position: relative;
}

.spkurumsal-wrapper .spkurumsal-carousel.spkurumsal-slide {
    overflow: hidden;
}

.spkurumsal-wrapper .spkurumsal-carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.spkurumsal-wrapper .spkurumsal-carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
}

.spkurumsal-wrapper .spkurumsal-carousel-item.active {
    display: block;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev,
.spkurumsal-wrapper .spkurumsal-carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev {
    left: 0;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-next {
    right: 0;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev:hover,
.spkurumsal-wrapper .spkurumsal-carousel-control-next:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 1;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev-icon,
.spkurumsal-wrapper .spkurumsal-carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.spkurumsal-wrapper .spkurumsal-carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.spkurumsal-wrapper .spkurumsal-carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.spkurumsal-wrapper .spkurumsal-carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.spkurumsal-wrapper .spkurumsal-carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 12px;
    height: 12px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    border: 0;
    border-radius: 50%;
    transition: opacity .6s ease;
}

.spkurumsal-wrapper .spkurumsal-carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

.spkurumsal-wrapper .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Kurumsal - Hakkımızda Bitis */

/* İletişim Baslangıc */

.mapAll {
    width: 100%;
    display: inline-block;
    display: -moz-inline-block;
    display: -ms-inline-block;
    float: left;
}

.mapAll .iframeMap {
    width: 100% !important;
    height: 500px !important;
}

.contactPage {
    position: relative;
    display: inline-block;
    z-index: 123;
    width: 100%;
    margin-top: -160px;
    margin-bottom: 50px;
    padding: 0;
}

.contactPageLeft {
    width: 100%;
    margin-bottom: 30px;
}

.contactPageRight {
    width: 100%;
    padding-left: 20px;
    margin-bottom: 30px;
}

.contactPageTabList {
    background: #fff;
    padding: 35px 15px;
    border-radius: 1rem;
}

.contactForm {
    padding: 35px;
    background: #fff;
    border-radius: 1rem;
}

.contactPageTab {
    margin-bottom: 30px;
}

.contactPageTab > ul {
    position: relative;
    width: 100%;
    list-style: none;
    padding-left: 50px;
}

.contactPageTab > ul > li.icon {
    width: 30px;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 5px;
    text-align: center;
    color: var(--btn-hover);
}

.contactPageTab > ul > li.title {
    font-size: 15px;
    color: var(--primary-btn-bg);
    letter-spacing: -0.47px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contactPageTab > ul > li .link,
.contactPageTab > ul > li.desc {
    font-size: 13px;
    color: #A0A1AF;
    letter-spacing: -0.4px;
    line-height: 25px;
    font-weight: 700;
    text-decoration: none;
}

textarea.xromlform-control {
    min-height: 300px;
}

.swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff;
    font-size: 32px;
}

.ssl-nav .nav-pills .nav-link.active {
    background: #00a0e357;
}

.ssl-nav .tab-content {
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 20px;
}

.ssl-nav .tab-pane {
    padding: 0;
    background: transparent !important;
}

.sslListBox {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
}

.sslListBox .sslListBoxTitle {
    font-size: 15px;
    color: #1A1B41;
    letter-spacing: -0.36px;
    line-height: 36px;
    font-weight: 500;
}

.sslListBox .sslListBoxTitle .sul {
    list-style: none;
    padding: 0;
}

.sslListBoxTitle > ul > li.title {
    font-size: 19px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.81px;
}

.sslListBoxTitle > ul > li.desc {
    font-size: 20px;
    color: #1A1B41;
    letter-spacing: -0.41px;
    font-weight: 300;
}

.sslListContent {
    font-size: 15px;
    color: #1A1B41;
    font-weight: 600;
}

.cpanelListBox {
    background: #ffffff;
    border-top: 6px solid #ff6c2c;
    border-radius: 20px;
    padding: 20px;
}

.cpanelListBoxTitle {
    font-size: 15px;
    color: #1A1B41;
    letter-spacing: -0.36px;
    line-height: 36px;
    font-weight: 500;
}

.cpanelListBoxTitle .sul {
    list-style: none;
    padding: 0;
}

.cpanelListBoxTitle > ul > li.title {
    font-size: 19px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.81px;
}

.cpanelListBoxTitle > ul > li.desc {
    font-size: 20px;
    color: #1A1B41;
    letter-spacing: -0.41px;
    font-weight: 300;
}

.btn-cpanel {
    color: #ff6c2c;
    background: white;
    border-radius: 8px;
    border: 1px solid #ff6c2c;
    padding: 12px 8px;
    text-decoration: none;
    transition: .4s;
}

.btn-cpanel:hover {
    color: white;
    background: #ff6c2c;
    border: 1px solid #ff6c2c;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.main-sidebar .sidebar-sticky {
    top: 85px;
}
