/* --------------------------------------------- */
/*  ConiaDC Ana Stil Dosyası
/*  Versiyon: 4.3 (Slider stabil, mobil uyum)
/* --------------------------------------------- */

/* --------------------------------------------- */
/*  CSS DEĞİŞKENLERİ (Dark Mode Varsayılan)
/* --------------------------------------------- */
:root {
    --primary-dark: #0b1a3a;
    --primary: #1e3a8a;
    --primary-light: #2563eb;
    --secondary: #b91c1c;
    --accent: #4DB748;
    --accent-hover: #ea580c;
    
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --card-bg: #1e293b;
    --header-bg: #0f172a;
    --footer-bg: #020617;
    --dropdown-bg: #1e293b;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.3);
    --transition: all 0.3s ease;
}

/* Light Mode */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #0b1a3a;
    --dropdown-bg: #ffffff;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* --------------------------------------------- */
/*  TEMEL STİLLER & RESET
/* --------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
    user-select: none; /* Metin seçimini engeller */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* --------------------------------------------- */
/*  ANİMASYONLAR
/* --------------------------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

/* --------------------------------------------- */
/*  KOMPONENTLER
/* --------------------------------------------- */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 9999px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}
.btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 9999px;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    font-size: 14px;
    text-align: center;
    width: 100%;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-title {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: clamp(14px, 4vw, 16px);
}

/* --------------------------------------------- */
/*  TOP BAR
/* --------------------------------------------- */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.top-bar-left i {
    color: var(--accent);
    margin-right: 5px;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.promo-badge {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}
.social-icons a {
    color: white;
    margin-left: 12px;
    opacity: 0.7;
    transition: var(--transition);
}
.social-icons a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Uptime ve Servis Durumu badge'leri */
.uptime-badge,
.status-badge {
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.uptime-badge i,
.status-badge i {
    font-size: 12px;
}
.uptime-badge i {
    color: var(--accent);
}
.status-badge i {
    color: #10b981;
}

/* Lokasyon butonları */
.location-buttons {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
}
.location-btn {
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.location-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Müşteri Paneli butonu */
.client-panel {
    background: var(--accent);
    color: white !important;
    padding: 6px 12px;
    border-radius: 30px;
    transition: var(--transition);
}
.client-panel:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: white !important;
}

/* Hosting Mega Menü Özel Grid */
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
.hosting-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}
.hosting-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}
.hosting-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.hosting-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}
.hosting-item .detail-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.hosting-item .detail-link:hover {
    gap: 12px;
    color: var(--accent-hover);
}

/* Hosting kartları başlık ikonları */
.hosting-item h3 i {
    margin-right: 12px;
    font-size: 28px;
    color: var(--accent);
    vertical-align: middle;
    transition: var(--transition);
}
.hosting-item:hover h3 i {
    transform: scale(1.05);
    color: var(--accent-hover);
}

/* Responsive Düzenlemeler (hosting-grid) */
@media (max-width: 1024px) {
    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hosting-grid {
        grid-template-columns: 1fr;
    }
    .hosting-item {
        text-align: left;
    }
    .hosting-item h3 i {
        font-size: 22px;
        margin-right: 10px;
    }
}

/* --------------------------------------------- */
/*  ANA MENÜ (HEADER)
/* --------------------------------------------- */
.main-header {
    background: var(--header-bg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}
.logo img {
    height: 40px;
    width: auto;
    display: block;
}
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    z-index: 1002;
}
.mobile-menu-btn:hover {
    color: var(--accent);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    height: 100%;
}
.nav-item {
    position: static;
    display: flex;
    align-items: center;
}
.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link i {
    font-size: 12px;
    transition: transform 0.3s;
}
.nav-link:hover {
    background: var(--bg-secondary);
    color: var(--accent);
}
.nav-link:hover i {
    transform: rotate(180deg);
}

/* MEGA MENÜ */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dropdown-bg);
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
}
.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu-content {
    padding: 40px 0;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.mega-col h3 {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mega-links {
    list-style: none;
}
.mega-links li {
    margin-bottom: 10px;
}
.mega-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mega-links a i {
    color: var(--accent);
    font-size: 12px;
    width: 16px;
    opacity: 0.7;
}
.mega-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}
.mega-links a:hover i {
    opacity: 1;
}

/* Header Aksiyonları */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-actions a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.header-actions a:hover {
    color: var(--accent);
}
.cart-icon {
    position: relative;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.theme-toggle:hover {
    background: var(--accent);
    color: white;
    transform: rotate(180deg);
}

/* --------------------------------------------- */
/*  MOBİL MENÜ STİLLERİ (Güncellendi)
/* --------------------------------------------- */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--bg-secondary);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        font-size: 20px;
        z-index: 1002;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--header-bg);
        flex-direction: column;
        padding: 80px 0 40px 0;
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        transition: right 0.3s ease-out;
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
        display: flex;
    }
    .nav-menu.active {
        right: 0;
    }
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1000;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-link {
        padding: 16px 20px;
        border-radius: 0;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        width: 100%;
    }
    .nav-link i {
        font-size: 14px;
        transition: transform 0.3s;
    }
    .nav-item.active > .nav-link i {
        transform: rotate(180deg);
    }
    .mega-menu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        background: var(--bg-secondary);
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
    }
    .nav-item.active .mega-menu {
        display: block !important;
    }
    .mega-menu-content {
        padding: 0;
    }
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .mega-col h3 {
        font-size: 14px;
        margin: 12px 20px 8px 20px;
        padding-bottom: 6px;
    }
    .mega-links a {
        padding: 12px 20px 12px 35px;
        font-size: 14px;
        border-left: 2px solid transparent;
    }
    .mega-links a:hover {
        background: var(--bg-primary);
        padding-left: 40px;
        border-left-color: var(--accent);
    }
    .header-actions {
        position: fixed;
        top: 12px;
        right: 70px;
        z-index: 1002;
        background: var(--header-bg);
        padding: 5px 10px;
        border-radius: 30px;
        gap: 12px;
        display: flex;
        align-items: center;
    }
    .header-actions a:not(.cart-icon) {
        font-size: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-secondary);
        border-radius: 50%;
    }
    .header-actions a:not(.cart-icon) i {
        font-size: 16px;
    }
    .cart-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-secondary);
        border-radius: 50%;
    }
    .cart-badge {
        top: -5px;
        right: -5px;
    }
    .theme-toggle {
        width: 36px;
        height: 36px;
    }
    .logo {
        position: fixed;
        top: 12px;
        left: 16px;
        z-index: 1002;
    }
    .logo img {
        height: 36px;
    }
    body.menu-open {
        overflow: hidden;
    }
    
    /* Mobil menü içindeki ekstra butonlar (Giriş Yap, Sepet, Tema) */
    .mobile-action-item {
        border-top: 1px solid var(--border-color);
        margin-top: 10px;
    }
    .mobile-action-item .nav-link {
        justify-content: flex-start;
        gap: 12px;
        background: transparent;
    }
    .mobile-action-item .nav-link i {
        width: 24px;
        font-size: 16px;
    }
    .cart-icon-mobile {
        position: relative;
    }
    .cart-badge-mobile {
        background: var(--accent);
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
    }
    .theme-toggle-mobile {
        background: transparent;
        border: none;
        width: auto;
        cursor: pointer;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .theme-toggle-mobile i {
        margin-right: 0;
    }
}

/* --------------------------------------------- */
/*  GÖRSEL SLİDER STİLLERİ (Stabil)
/* --------------------------------------------- */
.slider-section {
    padding: 40px 0;
    background: var(--bg-primary);
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-height: 500px; /* Sabit yükseklik sınırı */
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    min-height: 450px;
    background: var(--bg-secondary);
}

.slide > img:first-child {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 5%;
    max-width: 500px;
    background: rgba(0,0,0,0.65);
    padding: 24px 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    color: white;
    z-index: 2;
}

.slide-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.slide-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.slide-content .btn-primary {
    background: var(--accent);
    padding: 10px 24px;
    font-size: 14px;
}

.slide-content .btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

/* Sağdaki özel görsel */
.slide-right-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 35%;
    z-index: 2;
    pointer-events: none;
}
.slide-right-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

/* Slider butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    z-index: 10;
}
.slider-btn:hover {
    background: var(--accent);
}
.prev {
    left: 15px;
}
.next {
    right: 15px;
}

/* Alt noktalar */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Responsive (Tablet) */
@media (max-width: 1024px) {
    .slide {
        min-height: 400px;
    }
    .slide > img:first-child {
        height: 400px;
    }
    .slide-content {
        max-width: 450px;
        padding: 18px 24px;
        bottom: 15%;
    }
    .slide-content h2 {
        font-size: 24px;
    }
    .slide-right-image {
        max-width: 30%;
    }
}

/* Responsive (Mobil) */
@media (max-width: 768px) {
    .slider-container {
        max-height: 380px;
    }
    .slide {
        min-height: 380px;
    }
    .slide > img:first-child {
        height: 380px;
    }
    .slide-content {
        bottom: 10%;
        left: 5%;
        right: 5%;
        max-width: 90%;
        padding: 15px 20px;
    }
    .slide-content h2 {
        font-size: 20px;
    }
    .slide-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .slide-right-image {
        position: absolute;
        right: 10px;
        bottom: 10px;
        top: auto;
        transform: none;
        max-width: 35%;
    }
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        max-height: 320px;
    }
    .slide {
        min-height: 320px;
    }
    .slide > img:first-child {
        height: 320px;
    }
    .slide-right-image {
        max-width: 30%;
    }
}

/* --------------------------------------------- */
/*  HERO BÖLÜMÜ
/* --------------------------------------------- */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content {
    color: white;
}
.hero-badge {
    background: var(--accent);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 13px;
}
.hero-feature i {
    color: var(--accent);
}
.hero-price {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin: 20px 0;
}
.hero-price small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}
.domain-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
}
.domain-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 20px;
}
.domain-form {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.domain-input {
    flex: 2;
    min-width: 200px;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
}
.domain-input:focus {
    outline: none;
    border-color: var(--accent);
}
.domain-select {
    flex: 1;
    min-width: 100px;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
}
.domain-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}
.domain-prices span {
    background: var(--bg-secondary);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    color: var(--text-muted);
}

/* --------------------------------------------- */
/*  ÖNE ÇIKAN PAKETLER (4'lü)
/* --------------------------------------------- */
.featured-packages {
    padding: 60px 0;
    background: var(--bg-secondary);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.package-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}
.package-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.package-icon i {
    font-size: 24px;
    color: white;
}
.package-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.package-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}
.package-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}
.package-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

/* --------------------------------------------- */
/*  HİZMET LİSTELEME (Showcase)
/* --------------------------------------------- */
.services-showcase {
    padding: 60px 0;
    background: var(--bg-primary);
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.showcase-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.showcase-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: var(--transition);
}
.showcase-item:hover {
    background: var(--accent);
    color: white;
}
.showcase-item i {
    font-size: 20px;
    color: var(--accent);
    width: 24px;
}
.showcase-item:hover i {
    color: white;
}

/* --------------------------------------------- */
/*  DETAYLI HİZMET KARTLARI (3'lü)
/* --------------------------------------------- */
.detail-services {
    padding: 60px 0;
    background: var(--bg-secondary);
}
.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.detail-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.detail-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}
.detail-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.detail-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.detail-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.detail-link:hover {
    gap: 12px;
}

/* --------------------------------------------- */
/*  İŞ ORTAKLARI (Marquee Slider)
/* --------------------------------------------- */
.partners-section {
    padding: 60px 0;
    background: #0b1a3a;
    overflow: hidden;
    color: white;
}
.partners-section .section-title,
.partners-section .section-subtitle {
    color: white;
}
.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}
.partners-slider-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}
.partners-slider:hover .partners-slider-track {
    animation-play-state: paused;
}
.partner-item {
    flex: 0 0 auto;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: var(--transition);
}
.partner-item img {
    max-width: 100px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------- */
/*  HIZLI İLETİŞİM
/* --------------------------------------------- */
.quick-contact {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 40px 0;
}
.quick-contact .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-info-item i {
    font-size: 32px;
    color: var(--accent);
}
.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}
.contact-info-item p {
    font-size: 16px;
    font-weight: 600;
}
.live-chat-btn {
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}
.live-chat-btn:hover {
    background: transparent;
    border-color: white;
    color: white;
}

/* --------------------------------------------- */
/*  MÜŞTERİ YORUMLARI
/* --------------------------------------------- */
.testimonials {
    padding: 60px 0;
    background: var(--primary-dark);
    color: white;
}
.testimonials .section-title,
.testimonials .section-subtitle {
    color: white;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}
.stars {
    color: gold;
    margin-bottom: 16px;
    font-size: 14px;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
    font-size: 14px;
}
.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.customer-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

/* --------------------------------------------- */
/*  SSS BÖLÜMÜ (FAQ)
/* --------------------------------------------- */
.faq-section {
    padding: 60px 0;
    background: var(--bg-primary);
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 18px 20px;
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}
.faq-question:hover {
    background: var(--accent);
    color: white;
}
.faq-question i {
    transition: transform 0.3s;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--card-bg);
    color: var(--text-muted);
}
.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

/* --------------------------------------------- */
/*  ALT BİLGİ (FOOTER)
/* --------------------------------------------- */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}
.footer-about {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 20px;
}
.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}
.footer-bank {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bank p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 8px;
}
.footer-legal {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition);
}
.footer-legal a:hover {
    color: var(--accent);
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    font-size: 13px;
}
.footer-contact i {
    color: var(--accent);
    width: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

/* --------------------------------------------- */
/*  VDS/VPS SAYFALARI İÇİN ÖZEL STİLLER
/* --------------------------------------------- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 60px 0;
    text-align: center;
}
.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.feature-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.feature-item i {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 10px;
}
.feature-item span {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}
.feature-item small {
    color: var(--text-muted);
    font-size: 13px;
}

.os-section {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}
.os-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}
.os-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: var(--transition);
}
.os-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.os-item img {
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 8px;
}
.os-item span {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

.vds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin: 40px 0;
}
.vds-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.vds-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}
.vds-card .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}
.vds-card .cpu-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.vds-card .cpu-info i {
    font-size: 32px;
    color: var(--accent);
}
.vds-card .cpu-info h4 {
    font-size: 18px;
    font-weight: 600;
}
.vds-card .cpu-info p {
    color: var(--text-muted);
    font-size: 13px;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}
.spec-item {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.spec-item .label {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    margin-bottom: 4px;
}
.spec-item .value {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}
.price-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 20px 0 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}
.price-monthly {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}
.price-monthly small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}
.price-yearly {
    color: var(--text-muted);
    font-size: 14px;
}
.btn-buy {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
}
.btn-buy:hover {
    background: var(--accent);
}

.offer-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
}
.offer-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}
.offer-card p {
    opacity: 0.9;
}
.btn-offer {
    background: var(--accent);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.btn-offer:hover {
    background: white;
    color: var(--primary);
}

.description-section {
    margin: 40px 0;
    line-height: 1.8;
}
.description-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.description-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--accent);
}
.description-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.description-section ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

/* --------------------------------------------- */
/*  RESPONSIVE TASARIM
/* --------------------------------------------- */
@media (max-width: 1024px) {
    .packages-grid,
    .detail-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    .top-bar .container {
        justify-content: center;
    }
    .packages-grid,
    .detail-grid,
    .testimonials-grid,
    .showcase-list,
    .mega-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .quick-contact .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-features {
        justify-content: center;
    }
    .domain-form {
        flex-direction: column;
    }
    .domain-input,
    .domain-select {
        width: 100%;
    }
    .partners-slider-track {
        animation-duration: 30s;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offer-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .vds-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-price {
        font-size: 28px;
    }
    .section-title {
        font-size: 24px;
    }
    .package-card {
        padding: 20px;
    }
    .partner-item {
        margin: 0 15px;
    }
    .partner-item img {
        max-width: 70px;
        max-height: 35px;
    }
}