:root {
   
    --primary: #7a73ff;
    --primary-dark: #5950e6;
    --primary-light: #9d97ff;
    --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --primary-soft: rgba(122, 115, 255, 0.1);
    --secondary: #0a2540;
    --secondary-light: #1f3d60;
    --secondary-gradient: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --accent: #00d4ff;
    --accent-dark: #00a8cc;
    --accent-light: #80eaff;
    --accent-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --text: #425466;
    --text-light: #6b7c93;
    --text-dark: #1a1f36;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border: #e6ebf1;
    --border-light: #f0f4f7;
    --success: #32d583;
    --warning: #ffc107;
    --error: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Boyut ve boşluk değişkenleri */
    --container-max-width: 1200px;
    --header-height: 70px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-xxl: 24px;
    --radius-full: 9999px;

    /* Gölge değişkenleri */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Geçiş ve animasyon değişkenleri */
    --transition-all: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    --slide-transition: all 0.4s ease;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-all);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-all);
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

button:hover,
.button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important; /* Metin rengini her zaman beyaz olarak zorla */
}

/* Satın Al butonu düzeltmesi */
button:hover span,
.button:hover span {
    opacity: 1 !important; /* Yazıyı her zaman görünür yap */
    color: inherit !important; /* Yazı rengini butondan miras al */
}

.price-action .button:hover span {
    opacity: 1 !important;
    color: inherit !important; /* Yazı rengini butondan miras al */
}

/* Alternatif olarak tüm butonlar için geçerli kural */
.button:hover {
    color: inherit !important; /* Buton yazı rengini korumasını sağla */
}

/* İkon ve span elementlerini görünür yap */
.button:hover i,
.button:hover span {
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit !important; /* Rengi butondan miras alsın */
}

button i,
.button i {
    font-size: 1.25rem;
}

.button-secondary {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.button-secondary:hover {
    background-color: var(--gray-50);
    color: var(--primary) !important; /* İkincil butonlar için primary rengi kullan */
    border-color: var(--primary-light);
}

.button-secondary:hover span,
.button-secondary:hover i {
    color: var(--primary) !important; /* İkincil butonlarda içerik renkleri */
}

.button-accent {
    background-color: var(--accent);
    color: var(--secondary);
    font-weight: 600;
}

.button-accent:hover {
    background-color: var(--accent-dark);
    color: var(--secondary);
}

.button-campaign {
    background-color: var(--primary);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(122, 115, 255, 0.3);
}

.button-campaign:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 15px rgba(122, 115, 255, 0.4);
}

.button-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.button-icon-only {
    padding: 0.5rem;
    width: 36px;
    height: 36px;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Yardımcı Sınıflar */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-accent {
    color: var(--accent);
}

.text-light {
    color: var(--text-light);
}

.text-dark {
    color: var(--text-dark);
}

.text-white {
    color: white;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-white {
    background-color: white;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.rounded-full {
    border-radius: 9999px;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

/* Header ve Menü - FIXED pozisyon */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

/* Sayfa içeriği için padding */
body {
    padding-top: calc(var(--header-height) + 30px);
    /* Üst çubuk + header yüksekliği */
}

.top-bar {
    background-color: var(--secondary);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar a {
    color: white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar a:hover {
    opacity: 1;
}

.top-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.nav-container {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 150px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

/* Yeni Stripe Tarzı Menü */
.nav-menu {
    display: flex;
    gap: 0.6rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-menu-icon {
    font-size: 1.1rem;
}

.nav-menu-chevron {
    transition: transform 0.3s ease;
    font-size: 1rem;
    color: var(--gray-400);
}

.nav-item:hover .nav-menu-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.nav-dropdown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 320px;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 1rem;
    top: 100%;
    border: 1px solid var(--border-light);
    box-sizing: border-box;
    max-width: 90vw;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    margin-bottom: 0.5rem;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition-all);
}

.nav-dropdown-link:hover {
    background-color: var(--gray-50);
    color: var(--primary);
}

.nav-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background-color: var(--gray-100);
    color: var(--primary);
    font-size: 1.25rem;
}

.nav-dropdown-content {
    flex: 1;
}

.nav-dropdown-title {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.nav-dropdown-description {
    font-size: 0.875rem;
    color: var(--text-light);
}

.nav-divider {
    height: 1px;
    background-color: var(--border);
    margin: 0.75rem 0;
}

.nav-dropdown-promo {
    padding: 1rem;
    background-color: var(--gray-50);
    border-radius: var(--radius-md);
    margin-top: 0.75rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-dropdown-promo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: white;
    font-size: 1.5rem;
}

.nav-dropdown-promo-content {
    flex: 1;
}

.nav-dropdown-promo-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.nav-dropdown-promo-description {
    font-size: 0.8rem;
    color: #6B7280; /* Cool Gray 500 */
}

/* Two-column dropdown layout for larger menus */
.nav-dropdown-two-columns {
    min-width: 640px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

.nav-dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Responsive design for two-column dropdown */
@media (max-width: 768px) {
    .nav-dropdown-two-columns {
        min-width: 320px;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
}

.button-compact {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-all);
    line-height: 1;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.button-compact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button-compact i {
    font-size: 1rem;
}

/* "myPanel Giriş" yazısına non-breaking space eklendi, ayrıca bu CSS de yardımcı olur */
.button span {
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    position: relative;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Desktop'ta mobile-toggle gizli, nav-actions görünür */
@media (min-width: 769px) {
    .mobile-toggle {
        display: none !important;
    }
    
    .nav-actions {
        display: flex !important;
    }
}

/* Mobil cihazlarda mobile-toggle görünür, nav-actions gizli */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .nav-actions {
        display: none !important;
    }
}

@keyframes shake-gift {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.nav-dropdown-promo.promo-highlight .nav-dropdown-promo-icon i[data-feather="gift"] {
  animation: shake-gift 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.mobile-toggle-icon {
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(59, 130, 246, 0.2);
}

.mobile-toggle-icon::before,
.mobile-toggle-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(59, 130, 246, 0.2);
}

.mobile-toggle-icon::before {
    top: -7px;
    width: 18px;
}

.mobile-toggle-icon::after {
    bottom: -7px;
    width: 14px;
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.mobile-toggle:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-toggle:hover .mobile-toggle-icon,
.mobile-toggle:hover .mobile-toggle-icon::before,
.mobile-toggle:hover .mobile-toggle-icon::after {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.mobile-toggle.active {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: rgba(239, 68, 68, 0.3);
}

.mobile-toggle.active .mobile-toggle-icon {
    background-color: transparent;
    box-shadow: none;
}

.mobile-toggle.active .mobile-toggle-icon::before {
    transform: rotate(45deg) translateY(7px);
    top: 0;
    width: 22px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.mobile-toggle.active .mobile-toggle-icon::after {
    transform: rotate(-45deg) translateY(-7px);
    bottom: 0;
    width: 22px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.mobile-toggle.active:hover {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: rgba(239, 68, 68, 0.4);
}

.mobile-close {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-200);
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-all);
    box-shadow: var(--shadow-md);
}

.mobile-close:hover {
    background-color: var(--gray-300);
}

/* Nav Actions - Artık yan yana görünecek */
.nav-actions {
    display: flex;
    gap: 0.75rem;
}

/* Multi-slider */
.multi-slider-container {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.multi-slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.multi-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.slide-discount-badge {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #ff4757 0%, #ff3742 50%, #ff1e2d 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    box-shadow: 
        0 0 40px rgba(255, 71, 87, 0.9),
        0 0 80px rgba(255, 71, 87, 0.5),
        inset 0 2px 12px rgba(255, 255, 255, 0.4);
    animation: discountFloatWidePlus 6s ease-in-out infinite, discountGlow 2.5s ease-in-out infinite alternate;
    z-index: 60;
    border: 4px solid rgba(255, 255, 255, 0.95);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.slide-discount-badge i {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.slide-discount-badge span {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    line-height: 1;
}

@keyframes discountFloat {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-55%) translateX(-5px) rotate(-2deg);
    }
    50% { 
        transform: translateY(-45%) translateX(0) rotate(0deg);
    }
    75% { 
        transform: translateY(-55%) translateX(5px) rotate(2deg);
    }
}

@keyframes discountFloatWide {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    20% { 
        transform: translateY(-65%) translateX(-15px) rotate(-4deg);
    }
    40% { 
        transform: translateY(-35%) translateX(10px) rotate(3deg);
    }
    60% { 
        transform: translateY(-55%) translateX(-8px) rotate(-2deg);
    }
    80% { 
        transform: translateY(-40%) translateX(12px) rotate(4deg);
    }
}

@keyframes discountFloatWidePlus {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) rotate(0deg) scale(1);
    }
    16% { 
        transform: translateY(-70%) translateX(-25px) rotate(-6deg) scale(1.05);
    }
    33% { 
        transform: translateY(-30%) translateX(20px) rotate(5deg) scale(0.95);
    }
    50% { 
        transform: translateY(-60%) translateX(-15px) rotate(-3deg) scale(1.08);
    }
    66% { 
        transform: translateY(-35%) translateX(18px) rotate(6deg) scale(0.98);
    }
    83% { 
        transform: translateY(-55%) translateX(-10px) rotate(-4deg) scale(1.02);
    }
}

@keyframes discountGlow {
    0% { 
        box-shadow: 
            0 0 30px rgba(255, 71, 87, 0.8),
            0 0 60px rgba(255, 71, 87, 0.4),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
    }
    100% { 
        box-shadow: 
            0 0 40px rgba(255, 71, 87, 1),
            0 0 80px rgba(255, 71, 87, 0.6),
            inset 0 2px 10px rgba(255, 255, 255, 0.5);
    }
}

.multi-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Hosting Slider Yeni Stiller - Dinamik ve Renkli */
.hosting-slide-bireysel {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 50%, #6366f1 100%);
    position: relative;
    overflow: hidden;
}

.hosting-slide-bireysel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveDots 20s linear infinite;
    z-index: 1;
    display: none; /* GEÇİCİ - SORUN ÇÖZÜMÜ İÇİN */
}

.hosting-slide-kurumsal {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 50%, #ff6b6b 100%);
    position: relative;
    overflow: hidden;
}

.hosting-slide-kurumsal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
    display: none; /* GEÇİCİ - SORUN ÇÖZÜMÜ İÇİN */
}

.hosting-slide-wordpress {
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 50%, #0ea5e9 100%);
    position: relative;
    overflow: hidden;
}

.hosting-slide-wordpress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px, 80px 80px;
    animation: sparkle 8s ease-in-out infinite;
    z-index: 1;
    display: none; /* GEÇİCİ - SORUN ÇÖZÜMÜ İÇİN */
}

.hosting-slide-bayi {
    background: linear-gradient(45deg, #fa709a 0%, #fee140 50%, #fbbf24 100%);
    position: relative;
    overflow: hidden;
}

.hosting-slide-bayi::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
    display: none; /* GEÇİCİ - SORUN ÇÖZÜMÜ İÇİN */
}

.hosting-slide-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hosting-slide-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    animation: megaFloat 8s ease-in-out infinite;
    filter: blur(0.5px);
}

.hosting-slide-shapes .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    animation-delay: 0s;
    animation-duration: 12s;
}

.hosting-slide-shapes .shape-2 {
    width: 300px;
    height: 150px;
    bottom: 20%;
    right: -50px;
    border-radius: 50% 20% 80% 30%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.03));
    animation-delay: 2s;
    animation-duration: 10s;
    transform: rotate(15deg);
}

.hosting-slide-shapes .shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 20%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
    animation-delay: 4s;
    animation-duration: 14s;
}

/* Ek dinamik şekiller */
.hosting-slide-shapes .shape-4 {
    width: 80px;
    height: 180px;
    top: 15%;
    right: 35%;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
    animation: sideFloat 6s ease-in-out infinite;
    animation-delay: 1s;
}

.hosting-slide-shapes .shape-5 {
    width: 250px;
    height: 100px;
    bottom: 10%;
    right: 20%;
    border-radius: 50px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    animation: horizontalFloat 9s ease-in-out infinite;
    animation-delay: 3s;
    transform: rotate(-10deg);
}

.hosting-slide-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    animation: megaFloatIcon 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.2) !important;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.6));
}

.floating-icon.icon-1 {
    top: 12%;
    right: 18%;
    font-size: 3rem;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-icon.icon-2 {
    top: 35%;
    right: 8%;
    font-size: 2.5rem;
    animation-delay: 2s;
    animation-duration: 7s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    right: 28%;
    font-size: 2.8rem;
    animation-delay: 4s;
    animation-duration: 9s;
}

.floating-icon.icon-4 {
    bottom: 12%;
    right: 12%;
    font-size: 2.2rem;
    animation-delay: 6s;
    animation-duration: 6s;
}

.floating-icon.icon-5 {
    top: 25%;
    right: 35%;
    font-size: 1.8rem;
    animation-delay: 1s;
    animation-duration: 10s;
}

.floating-icon.icon-6 {
    bottom: 45%;
    right: 5%;
    font-size: 2rem;
    animation-delay: 3s;
    animation-duration: 8s;
}

.floating-icon.icon-7 {
    top: 60%;
    right: 25%;
    font-size: 1.5rem;
    animation-delay: 5s;
    animation-duration: 7s;
}

.floating-icon.icon-8 {
    top: 45%;
    right: 40%;
    font-size: 1.7rem;
    animation-delay: 7s;
    animation-duration: 9s;
}

.hosting-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 101 !important;
}

.hosting-slide-badge i {
    width: 16px;
    height: 16px;
}

.hosting-slide-package {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hosting-slide-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: packageShine 3s ease-in-out infinite;
    z-index: 1;
}

.hosting-slide-package > * {
    position: relative;
    z-index: 102 !important;
}

@keyframes packageShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

.package-info {
    text-align: center;
    margin-bottom: 1rem;
}

.package-name {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-light);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.feature-icon {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}

/* Yeni paket elementleri - package-discount-badge kaldırıldı, slide-discount-badge kullanılıyor */

.package-pricing {
    margin-bottom: 1rem;
}

.price-original {
    margin-bottom: 0.3rem;
    text-align: center;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-period-old {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-left: 0.2rem;
}

.price-details {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.price-renewal {
    color: var(--text-light);
    font-size: 0.75rem;
    font-style: italic;
}

.package-guarantee {
    margin-top: 1rem;
    padding: 0.5rem 0.8rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 0.8rem;
}

.package-guarantee i {
    color: #28a745;
    font-size: 0.9rem;
}

.hosting-slide-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 101 !important;
}

.hosting-slide-actions .button {
    flex: 1;
    justify-content: center;
    min-width: auto;
}

.button-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.button-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Gelişmiş Animasyonlar */
@keyframes megaFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-15px) rotate(-3deg) scale(0.95);
    }
    75% {
        transform: translateY(-25px) rotate(8deg) scale(1.02);
    }
}

@keyframes sideFloat {
    0%, 100% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateX(-20px) translateY(-15px) rotate(10deg);
    }
}

@keyframes horizontalFloat {
    0%, 100% {
        transform: translateX(0px) rotate(-10deg);
    }
    50% {
        transform: translateX(30px) rotate(5deg);
    }
}

@keyframes megaFloatIcon {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) translateX(-3px) rotate(-3deg) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-10px) translateX(8px) rotate(8deg) scale(1.05);
        opacity: 1;
    }
}

@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50px, -50px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hosting-slide-shapes .shape-1 {
        width: 60px;
        height: 60px;
    }
    
    .hosting-slide-shapes .shape-2 {
        width: 80px;
        height: 80px;
    }
    
    .hosting-slide-shapes .shape-3 {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon.icon-1 {
        font-size: 1.5rem;
    }
    
    .floating-icon.icon-2 {
        font-size: 1.2rem;
    }
    
    .floating-icon.icon-3 {
        font-size: 1.3rem;
    }
    
    .floating-icon.icon-4 {
        font-size: 1rem;
    }
    
    .hosting-slide-package {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .package-name {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .hosting-slide-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hosting-slide-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Grid responsive */
    .multi-slide-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .slide-content-right {
        order: -1; /* Package bilgisini üstte göster */
    }
    
    .hosting-slide-package {
        margin: 0;
    }
    
    .slide-discount-badge {
        width: 110px;
        height: 110px;
        right: 1.5rem;
        font-size: 0.75rem;
    }
    
    .slide-discount-badge i {
        font-size: 1rem;
    }
    
    .slide-discount-badge span {
        font-size: 0.6rem;
    }
    
    .multi-slide-content {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {
    .multi-slider-container {
        height: 100vh;
        min-height: 600px;
    }
    
    .multi-slide-content {
        padding: 0 1rem;
    }
    
    .multi-slide-info {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .multi-slide-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .multi-slide-description {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .hosting-slide-package {
        padding: 0.8rem;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .price-note {
        font-size: 0.7rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .hosting-slide-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hosting-slide-actions .button {
        width: 100%;
    }
    
    .slide-discount-badge {
        width: 60px;
        height: 60px;
        right: 3%;
        top: 8%;
        font-size: 0.55rem;
    }
    
    .slide-discount-badge i {
        font-size: 0.7rem;
    }
    
    .slide-discount-badge span {
        font-size: 0.4rem;
    }
}

/* Grid layout için yeni stiller */
.slide-content-left,
.slide-content-right {
    z-index: 102 !important;
    position: relative;
}

.slide-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.multi-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50 !important;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

.multi-slide-info {
    width: 100%;
    max-width: none;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    z-index: 100 !important;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.multi-slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 101 !important;
}

.multi-slide-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 101 !important;
}

.multi-slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.multi-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-all);
}

.multi-slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.multi-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.multi-slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-all);
    color: white;
    font-size: 1.5rem;
}

.multi-slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Domain Search */
.domain-search-section {
    padding: 5rem 0;
    background-color: white;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.domain-search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.domain-search-form {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: var(--radius-full);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-all);
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
}

.domain-search-form:focus-within {
    box-shadow: 0 0 0 2px var(--primary-light), var(--shadow-lg);
}

.domain-search-input-container {
    flex: 1;
    position: relative;
}

.domain-search-input {
    width: 100%;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    border-radius: var(--radius-full);
    background-color: transparent;
    position: relative;
    z-index: 1;
    padding-left: 3rem;
}

.domain-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.25rem;
    z-index: 0;
}

.domain-search-select {
    border: none;
    padding: 1rem;
    background-color: var(--gray-50);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    outline: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
    min-width: 120px;
    text-align: center;
    color: var(--text-dark);
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23425466' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.domain-search-button {
    margin-left: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

/* Domain Slider - 4 tane aynı anda gösterme */
.domain-slider-container {
    padding: 3rem 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.domain-slider {
    display: flex;
    transition: var(--slide-transition);
    margin: 0 -1rem;
}

.domain-card {
    flex: 0 0 25%;
    /* 4 tane gösterecek şekilde ayarlandı */
    padding: 0 1rem;
    transition: var(--transition-all);
    opacity: 0.7;
}

.domain-card.active {
    opacity: 1;
    transform: scale(1.05);
}

.domain-card-inner {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.domain-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.domain-card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: var(--gray-100);
    opacity: 0.3;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: -0.05em;
}

.domain-card-content {
    position: relative;
    z-index: 1;
}

.domain-badge {
    background-color: var(--primary-light);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.domain-badge i {
    font-size: 1rem;
}

.domain-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.domain-name i {
    color: var(--primary);
    font-size: 1.5rem;
}

.domain-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.domain-price-new {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.domain-price-old {
    font-size: 1.125rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.domain-slider-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.domain-slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.domain-slider-arrow:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Hosting planları - Hostinger tarzı */
.hosting-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.hosting-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hosting-tab {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background-color: white;
    border: 1px solid var(--border);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.hosting-tab.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.hosting-tab i {
    font-size: 1.25rem;
}

/* Hostinger tarzı plan kartları */
.hosting-plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.hosting-plan {
    flex: 1;
    min-width: 250px;
    max-width: 290px;
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.hosting-plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

/* Paket kategorisi label'ları - Daha geniş köşe, iki satır */
.plan-category-label {
    position: absolute;
    top: 15px;
    right: -45px;
    width: 180px;
    padding: 8px 0;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: white;
    transform: rotate(35deg);
    z-index: 20;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.plan-category-label.bireysel-linux {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.plan-category-label.kurumsal-linux {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.plan-category-label.wordpress-linux {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.plan-category-label.bayi-linux {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.plan-label.popular {
    background-color: var(--accent);
}

.plan-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.plan-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.plan-price-container {
    margin-bottom: 1rem;
}

.plan-price-original {
    display: inline-block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 800;
}

.plan-currency {
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.plan-amount {
    font-size: 2.25rem;
    line-height: 1;
}

.plan-period {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 0.25rem;
}

.plan-discount-label {
    display: inline-block;
    background-color: var(--primary-soft);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-top: 0.5rem;
}

.plan-action {
    margin-top: 1.5rem;
}

.plan-button {
    width: 100%;
    padding: 0.75rem 1rem;
}

.plan-renewal {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.plan-body {
    padding: 1.5rem 2rem 2rem;
}

.plan-features-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-size: 0.875rem;
}

.plan-feature-icon {
    display: inline-flex;
    margin-right: 0.5rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.plan-feature-text {
    flex: 1;
}

.plan-feature-highlight {
    color: var(--primary);
    font-weight: 600;
}

.plan-feature-new {
    background-color: var(--primary-soft);
    color: var(--primary);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.plan-feature-free {
    background-color: #e6f7ee;
    color: var(--success);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.plan-divider {
    height: 1px;
    background-color: var(--border-light);
    margin: 1.5rem 0;
}

/* Support Section - Mobil uyumlu düzenleme */
.support-section {
    background-color: var(--background-alt);
    color: var(--text-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.support-content {
    max-width: 500px;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-title i {
    font-size: 2rem;
    color: var(--primary);
}

.support-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.support-buttons {
    display: flex;
    gap: 1rem;
}

.support-info {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.support-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.support-contact:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.support-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.support-contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.support-contact-details p {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.support-contact-button {
    margin-top: 1.5rem;
    text-align: center;
}

.button-support {
    width: 100%;
    background-color: var(--primary);
}

.button-support:hover {
    background-color: var(--primary-dark);
}

/* Teknoloji Showcase */
.tech-showcase {
    padding: 5rem 0;
    background-color: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-all);
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.tech-icon-container {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.tech-icon {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.tech-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tech-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.tech-features {
    text-align: left;
    width: 100%;
    margin-top: 1rem;
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.tech-feature-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    color: var(--success);
    font-size: 1rem;
}

/* Müşteri Yorumları Slider */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-container {
    position: relative;
    margin-top: 3rem;
}

.testimonials-slider {
    display: flex;
    transition: var(--slide-transition);
    position: relative;
}

.testimonial-card {
    flex: 0 0 33.333%;
    padding: 0 1rem;
    transition: var(--transition-all);
    opacity: 0.7;
    transform: scale(0.9);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card-inner {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--primary-soft);
    font-size: 3rem;
    line-height: 1;
}

.testimonial-star-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-star {
    color: var(--warning);
    font-size: 1.25rem;
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    flex: 1;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.testimonial-author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonials-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.testimonials-arrow:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-all);
}

.testimonials-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* Kampanyalar - E-ticaret Minimal Tasarım */
.campaigns-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.campaigns-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(59, 130, 246, 0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.6;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(-40px) translateY(-40px); }
    100% { transform: translateX(0) translateY(0); }
}

.section-title {
    color: #1e293b;
    text-align: center;
    position: relative;
    z-index: 2;
}

.campaigns-section .text-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #64748b;
    text-align: center;
    position: relative;
    z-index: 2;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.campaign-card-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px;
}

.campaign-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 1);
}

.campaign-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06d6a0);
    border-radius: 20px 20px 0 0;
}

.campaign-badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 6px;
    font-size: 0.6rem;
    max-width: 70px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 10;
    animation: glow 2s ease-in-out infinite alternate;
    text-align: center;
    line-height: 1.2;
}

.campaign-badge-new.hot {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.campaign-badge-new.exclusive {
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

@keyframes glow {
    0% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); }
    100% { box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5); }
}

.campaign-icon-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.campaign-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ddd6fe, #e0e7ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.campaign-card-new:hover .campaign-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #c4b5fd, #ddd6fe);
    border-color: rgba(139, 92, 246, 0.2);
}

.campaign-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campaign-title-new {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.3;
}

.campaign-highlight {
    display: block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
}

.campaign-description-new {
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 80px;
    flex-grow: 0;
    flex-shrink: 0;
}

.campaign-description-new strong {
    color: #3b82f6;
    font-weight: 600;
}

.campaign-features-new {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100px;
}

.campaign-feature-new {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #475569;
}

.campaign-feature-new i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
    background: none;
    -webkit-text-fill-color: #10b981;
}

.campaign-action-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    min-height: 70px;
    flex-grow: 0;
    flex-shrink: 0;
}

.campaign-button-new {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.campaign-button-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.campaign-button-new.secondary {
    background: linear-gradient(135deg, #06d6a0, #059669);
    box-shadow: 0 4px 15px rgba(6, 214, 160, 0.25);
}

.campaign-button-new.secondary:hover {
    box-shadow: 0 8px 25px rgba(6, 214, 160, 0.35);
    background: linear-gradient(135deg, #10b981, #047857);
}

.campaign-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.campaign-timer i {
    color: #f59e0b;
    background: none;
    -webkit-text-fill-color: #f59e0b;
    animation: pulse-timer 1.5s infinite;
}

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

.campaigns-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 2;
}

.campaign-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
}

.campaign-stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Mobil Responsive - E-ticaret Optimized */
@media (max-width: 768px) {
    .campaigns-section {
        padding: 3rem 0;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .campaign-card-new {
        margin: 0 1rem;
        min-height: 400px;
    }

    .campaign-title-new {
        font-size: 1.2rem;
    }

    .campaign-highlight {
        font-size: 1.3rem;
    }

    .campaign-action-new {
        flex-direction: column;
        gap: 0.8rem;
        min-height: 65px;
    }

    .campaign-button-new {
        width: 100%;
        justify-content: center;
    }

    .campaigns-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .campaigns-grid {
        margin: 0;
        grid-template-columns: 1fr;
    }
    
    .campaign-card-new {
        margin: 0 0.5rem;
        padding: 1.2rem;
        min-height: 380px;
    }
    
    .campaign-description-new {
        min-height: 70px;
    }
    
    .campaign-action-new {
        min-height: 60px;
        padding-top: 1rem;
    }
    
    .campaigns-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .campaign-icon {
        width: 56px;
        height: 56px;
    }
    
    .campaign-icon i {
        font-size: 1.5rem;
    }
    
    .campaign-badge-new {
        top: 12px;
        right: 12px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

@media (min-width: 1200px) {
    .campaigns-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* FAQ Accordion */
.faq-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-top: 3rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: white;
    transition: var(--transition-all);
}

.accordion-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: var(--transition-all);
}

.accordion-header:hover {
    background-color: var(--gray-50);
}

.accordion-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-dark);
    flex: 1;
}

.accordion-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.accordion-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Newsletter */
.newsletter-section {
    padding: 5rem 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.newsletter-title i {
    font-size: 1.75rem;
}

.newsletter-description {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    background-color: white;
    border-radius: var(--radius-full);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius-full);
    outline: none;
    font-family: 'Inter', sans-serif;
}

.newsletter-button {
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-button:hover {
    background-color: var(--text-dark);
}

/* Footer - Sosyal medya ikonları footer'da */
.footer {
    background: linear-gradient(145deg, var(--primary) 0%, var(--gray-900) 70%, var(--accent) 100%);
    color: var(--gray-200);
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 0;
}

/* Footer Slogan Bölümü - Gizli */
.footer-slogan {
    display: none;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    border-radius: 0 0 20px 20px;
}

.slogan-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.slogan-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.slogan-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.slogan-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.slogan-button {
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slogan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background-color: white;
    color: var(--primary) !important;
}

.slogan-button:hover span,
.slogan-button:hover svg {
    color: var(--primary) !important;
}

.slogan-button-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slogan-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.slogan-button svg {
    stroke: currentColor;
    width: 20px;
    height: 20px;
}

.slogan-button-secondary svg {
    stroke: white;
    width: 20px;
    height: 20px;
}

/* Footer Destek Bölümü - Düzeltilmiş Tasarım */
.footer-support {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-main-title {
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.support-main-description {
    color: var(--gray-200);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-card:hover::before {
    opacity: 1;
}

.support-card-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.support-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.support-card:hover .support-card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.support-card-icon svg {
    width: 28px;
    height: 28px;
}

.support-card-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.support-card-body {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.support-card-description {
    color: var(--gray-200);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.support-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.support-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-status.online {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.support-phone {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.support-email {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

.support-articles {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.support-time {
    color: var(--gray-300);
    font-size: 0.8rem;
    font-style: italic;
}

.support-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.support-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.support-card-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.support-card-button svg {
    transition: transform 0.3s ease;
}

.support-card-button:hover svg {
    transform: translateX(3px);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .support-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .support-main-title {
        font-size: 1.75rem;
    }
    
    .support-main-description {
        font-size: 1rem;
    }
    
    .support-card {
        margin-bottom: 0.5rem;
    }
    
    .support-card-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .support-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .support-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .support-card-body {
        padding: 0.75rem 1.25rem 1.25rem;
    }
    
    .support-card-footer {
        padding: 0 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer-support {
        margin-bottom: 3rem;
    }
    
    .support-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .support-main-title {
        font-size: 1.5rem;
    }
    
    .support-main-description {
        font-size: 0.95rem;
    }
    
    .support-card-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .support-card-body {
        padding: 0.5rem 1rem 1rem;
    }
    
    .support-card-footer {
        padding: 0 1rem 1rem;
    }
    
    .support-card-button {
        padding: 0.625rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float1 15s infinite alternate ease-in-out;
}

.floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 10%;
    animation: float2 12s infinite alternate-reverse ease-in-out;
}

.floating-element:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 15%;
    animation: float3 18s infinite alternate ease-in-out;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 30px) scale(1.2);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-30px, 50px) scale(1.1);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) rotate(0);
    }
    100% {
        transform: translate(20px, -30px) rotate(10deg);
    }
}

/* Mobil Alt Menü */
.mobile-footer-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gray-900);
    padding: 0.75rem 0.5rem;
    z-index: 100;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    text-align: center;
}

.mobile-footer-link i {
    width: 20px;
    height: 20px;
    margin-bottom: 0.25rem;
}

.mobile-footer-link span {
    font-size: 0.7rem;
    font-weight: 500;
}

.mobile-footer-link:hover,
.mobile-footer-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Yukarı Çık Butonu */
.top-link {
    color: white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-link:hover {
    opacity: 1;
    color: white;
}

/* Yukarı Çık Butonu - Yeni class */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    text-decoration: none;
}

.back-to-top.active {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top i {
    width: 20px;
    height: 20px;
}

.back-to-top span {
    font-size: 0.7rem;
    font-weight: 500;
    margin-top: -5px;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Feather Icons */
.feather {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Mobil alt menü stilleri */
.mobile-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    /* Varsayılan olarak gizli, JS ile gösterilecek */
    justify-content: space-around;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 101;
}

.mobile-footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-all);
    flex: 1;
    text-align: center;
}

.mobile-footer-link:hover {
    color: var(--primary);
}

.mobile-footer-link:active {
    background-color: var(--gray-100);
}

.mobile-footer-link i {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.mobile-footer-link:hover i {
    color: var(--primary);
}

/* Top header link stili */
.top-link {
    color: white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-link:hover {
    opacity: 1;
    color: white;
}

/* Mobile menu close button styling */
.mobile-close {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-200);
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-all);
    box-shadow: var(--shadow-md);
}

.mobile-close:hover,
.mobile-close:active {
    background-color: var(--gray-300);
}

/* Hostinger tarzı underline özellik çizgileri */
.underline {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Domain Arama Sayfası özel CSS */
.page-hero {
    background: var(--primary-gradient);
    padding: 5rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Büyük search container */
.mega-search-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 10;
    margin-top: -3rem;
}

.mega-search-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

/* Domain Search Results */
.domain-search-results {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.search-result-header {
    background-color: var(--gray-100);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-result-header i {
    color: var(--primary);
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-all);
}

.search-result-item:hover {
    background-color: var(--gray-50);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-domain {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.search-result-success .search-result-icon {
    background-color: rgba(50, 213, 131, 0.1);
    color: var(--success);
}

.search-result-error .search-result-icon {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.search-result-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.search-result-status {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.search-result-success .search-result-status {
    color: var(--success);
}

.search-result-error .search-result-status {
    color: var(--error);
}

.search-result-price {
    text-align: right;
}

.search-result-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.search-result-period {
    font-size: 0.875rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
}

.search-result-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Domain Price Tables */
.domain-pricing-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    background-color: white;
    border: 1px solid var(--border);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.pricing-tab.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.price-table-container {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.price-table th {
    background-color: var(--gray-100);
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.price-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background-color: var(--gray-50);
}

.price-domain {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.price-domain-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
}

.price-register,
.price-renew,
.price-transfer {
    font-weight: 700;
    color: var(--text-dark);
}

.price-discount {
    font-size: 0.75rem;
    color: var(--error);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-action {
    text-align: right;
}

.price-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Domain Features Section */
.domain-features-section {
    padding: 5rem 0;
    background-color: white;
}

.domain-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.domain-feature-card {
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-all);
    border: 1px solid var(--border-light);
}

.domain-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.domain-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    font-size: 2rem;
}

.domain-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.domain-feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Domain Whois Privacy Section */
.whois-privacy-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.whois-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.whois-content {
    max-width: 500px;
}

.whois-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whois-title i {
    font-size: 2rem;
    color: var(--primary);
}

.whois-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.whois-features {
    margin-bottom: 2rem;
}

.whois-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.whois-feature-icon {
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.whois-feature-text {
    color: var(--text);
    line-height: 1.5;
}

.whois-image {
    position: relative;
}

.whois-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 10px solid white;
    max-width: 100%;
}

/* Domain info section */
.domain-info-section {
    padding: 5rem 0;
    background-color: white;
}

.domain-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.domain-info-card {
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition-all);
}

.domain-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.domain-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.domain-info-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.domain-info-text {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.domain-info-list {
    margin-top: 1.5rem;
}

.domain-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.domain-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.domain-info-item-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.domain-info-item strong {
    color: var(--text-dark);
}

/* Domain transfer process */
.transfer-process-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.transfer-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.transfer-step {
    position: relative;
    text-align: center;
}

.transfer-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.transfer-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.transfer-step-description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

.transfer-step::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -50%;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    z-index: 1;
}

.transfer-step:first-child::before {
    display: none;
}

/* Badge stilleri */
.search-result-badges {
    display: inline-flex;
    gap: 0.5rem;
    margin-left: 1rem;
    flex-wrap: wrap;
}

.domain-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.domain-badge-new {
    background-color: var(--error);
    color: white;
}

.domain-badge-transfer {
    background-color: var(--success);
    color: white;
}

.domain-badge-popular {
    background-color: var(--warning);
    color: var(--text-dark);
}

.domain-badge-input {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-weight: 800;
    animation: pulse-input 2s infinite;
}

@keyframes pulse-input {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Buton grupları için stil */
.search-result-actions-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.search-result-actions {
    width: 180px;
    /* Sabit genişlik */
}

.search-result-actions .button {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.25rem;
    padding: 0.6rem 1rem;
}

/* Modal/Popup stilleri */
.domain-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.domain-modal {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.domain-modal-header {
    background-color: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.domain-modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.domain-modal-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-modal-body {
    padding: 1.5rem;
}

.domain-modal-footer {
    padding: 1rem 1.5rem;
    background-color: var(--gray-50);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-all);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-soft);
    outline: none;
}

/* Period seçimi için CSS */
.domain-period-select-container {
    margin-bottom: 0.75rem;
}

.domain-period-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #334155;
    background-color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.domain-period-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.domain-period-select option {
    color: #334155;
    background-color: white;
}

/* Ana sonuç kartı için period select özelleştirme */
.primary-domain-result .domain-period-select-container {
    width: 100%;
    max-width: 250px;
    margin-right: 0.75rem;
}

.primary-domain-result .domain-result-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Alternatif domainler için period select özelleştirme */
.domain-alternative .domain-period-select-container {
    margin-bottom: 0.75rem;
}

/* İndirimli fiyatlar için stil */
.domain-period-select option:after {
    content: " (İndirimli)";
    color: #10b981;
    font-weight: 600;
}

/* Domain badges */
.domain-badges {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.75rem;
}

/* Cüzdan & WHOIS stilleri */
.whois-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.whois-modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whois-modal-header {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #635bff;
    color: white;
    border-radius: 8px 8px 0 0;
}

.whois-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: white;
}

.whois-modal-close {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.whois-modal-close:hover {
    color: #f1f5f9;
}

.whois-modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

#whois-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #64748b;
}

.loading-icon {
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#whois-data {
    font-family: monospace;
    white-space: pre-wrap;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #334155;
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 4px;
    max-height: 60vh;
    overflow-y: auto;
}

.whois-error {
    color: #ef4444;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.whois-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f8fafc;
    color: #64748b;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.whois-link:hover {
    background-color: #e2e8f0;
    color: #334155;
}

.checkout-button {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: white !important;
    margin-top: 0.5rem;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.checkout-button:hover {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
}

.added-to-cart {
    background-color: #32d583 !important;
    border-color: #32d583 !important;
    color: white !important;
}

.domain-in-cart {
    border-color: #32d583 !important;
    background-color: rgba(50, 213, 131, 0.05) !important;
}

/* Transfer butonu için kırmızı renk */
.direct-transfer-button {
    background-color: #ef4444 !important;
    border-color: #ef4444 !important;
    color: white !important;
}

.direct-transfer-button:hover {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
}

/* Daha fazla yükleme butonu */
.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    width: 100%;
}

.load-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #f8fafc;
    color: #475569;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-button:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8;
}

/* Bildirim stilleri */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-notification.success {
    background-color: #32d583;
}

.cart-notification.error {
    background-color: #f24c4c;
}

.cart-notification.info {
    background-color: #3f8cff;
}

.cart-notification.warning {
    background-color: #ffc53d;
    color: #1a2234;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .campaign-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .multi-slide-info {
        max-width: 80%;
    }

    /* Responsive domain ve hosting sliderları */
    .domain-card,
    .hosting-plan {
        flex: 0 0 33.333%;
    }

    .testimonial-card {
        flex: 0 0 50%;
    }

    .hosting-plans {
        justify-content: center;
    }

    .domain-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transfer-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .transfer-step::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hosting-plans {
        gap: 1rem;
    }

    .hosting-plan {
        flex: 0 0 100%;
        max-width: 350px;
        margin-bottom: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

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

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .domain-card,
    .hosting-plan {
        flex: 0 0 50%;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    /* Mobile-toggle zaten yukarıda tanımlı */
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85vw;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        padding: 0;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.2);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(20px);
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
    }
    
    .nav-menu:not(.active) {
        transform: translateX(100%);
    }
    
    /* nav-actions zaten yukarıda media query'de tanımlı */
    
    .mobile-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border: 2px solid rgba(59, 130, 246, 0.2);
        border-radius: 50%;
        color: #374151;
        font-size: 1.5rem;
        font-weight: 600;
        cursor: pointer;
        z-index: 1003;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8) rotate(-90deg);
    }
    
    .mobile-close:hover {
        background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
        border-color: rgba(239, 68, 68, 0.4);
        color: #dc2626;
        transform: scale(1.05) rotate(0deg);
        box-shadow: 
            0 12px 32px rgba(239, 68, 68, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .mobile-close:active {
        transform: scale(0.95) rotate(0deg);
    }

    .mobile-close.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1) rotate(0deg);
    }
    
    /* Mobil menü overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobil menü nav item'ları */
    .nav-menu .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
    }
    
    .nav-menu .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-item:hover {
        background: rgba(59, 130, 246, 0.05);
    }
    
    .nav-menu .nav-link {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: #1f2937;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.3s ease;
        min-height: 60px;
        position: relative;
        backdrop-filter: none;
        display: flex !important;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu .nav-link .nav-menu-icon {
        margin-right: 0.75rem;
        flex-shrink: 0;
    }
    
    .nav-menu .nav-link .nav-menu-chevron {
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .nav-menu .nav-link:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.08);
        transform: none;
    }
    
    .nav-menu .nav-link:active {
        transform: scale(0.98);
    }
    
    .nav-menu .nav-dropdown {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        display: none;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        border-radius: 8px;
        margin: 0 1rem 1rem 1rem;
        padding: 0.75rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: opacity 0.2s ease;
        opacity: 1;
        overflow: hidden;
        box-sizing: border-box;
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
    }
    
    .nav-menu .nav-item.active .nav-dropdown {
        display: block;
    }
    
    @keyframes slideDownFade {
        0% {
            opacity: 0;
            transform: none !important;
        }
        100% {
            opacity: 1;
            transform: none !important;
        }
    }
    
    .nav-menu .nav-dropdown-link {
        padding: 0.75rem 1rem !important;
        border-radius: 6px !important;
        margin: 0.125rem 0 !important;
        transition: all 0.2s ease !important;
        background: transparent !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: flex-start !important;
        text-decoration: none !important;
        transform: none !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
    }
    
    .nav-menu .nav-dropdown-link:hover {
        background: rgba(59, 130, 246, 0.1) !important;
        transform: none !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
    }
    
    .nav-menu .nav-dropdown-link .nav-dropdown-icon {
        margin-right: 0.75rem !important;
        flex-shrink: 0 !important;
        width: 18px !important;
        height: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav-menu .nav-dropdown-link .nav-dropdown-content {
        flex: 1 !important;
        text-align: left !important;
        min-width: 0 !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
    }
    
    .nav-menu .nav-dropdown-link .nav-dropdown-title {
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        color: #1f2937 !important;
        word-wrap: break-word !important;
    }
    
    .nav-menu .nav-dropdown-link .nav-dropdown-description {
        font-size: 0.8rem !important;
        opacity: 0.7 !important;
        margin-top: 0.125rem !important;
        line-height: 1.2 !important;
        color: #6b7280 !important;
        word-wrap: break-word !important;
    }
    
    /* Mobil menü header */
    .mobile-menu-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        text-align: center;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(99, 102, 241, 0.02) 100%);
        position: sticky;
        top: 0;
        z-index: 10;
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-logo {
        height: 44px;
        width: auto;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-logo:hover {
        transform: scale(1.05);
    }

    /* Alt footer menü düzeltmesi */
    .mobile-footer-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: none;
        justify-content: space-around;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        background-color: white;
        border-top: 1px solid var(--border);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        z-index: 101;
    }

    .mobile-footer-menu.active {
        display: flex !important;
    }

    .support-container {
        grid-template-columns: 1fr;
    }

    .support-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }

    .support-title,
    .newsletter-title {
        justify-content: center;
    }

    .support-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-actions {
        display: none;
    }

    .nav-actions-mobile {
        display: none;
        /* Varsayılan olarak gizli */
        position: fixed;
        bottom: 5rem;
        /* Alt menü üzerinde konumlandırma */
        left: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        z-index: 102;
        gap: 1rem;
        background-color: white;
        border-top: 1px solid var(--border);
    }

    .nav-actions-mobile.active {
        display: flex !important;
    }

    .multi-slide-info {
        max-width: 100%;
        text-align: center;
    }

    .multi-slider-controls {
        left: 50%;
        transform: translateX(-50%);
    }

    .multi-slider-arrows {
        display: none;
    }
    
    .multi-slider-container {
        height: auto;
        min-height: 650px;
        padding: 1rem 0;
        position: relative;
    }
    
    .multi-slide-bg {
        opacity: 1 !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1 !important;
    }
    
    .multi-slide-content {
        position: relative !important;
        height: auto;
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: none !important;
        backdrop-filter: none !important;
        border: none !important;
        z-index: 10 !important;
    }
    
    .multi-slide-info {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 100%;
        padding: 1.5rem;
        text-align: center;
        background: rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        position: relative;
    }
    
    .slide-content-left {
        order: 2;
        margin-bottom: 0;
    }
    
    .slide-content-right {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .multi-slide-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .multi-slide-description {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        opacity: 0.9;
    }
    
    .hosting-slide-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100%;
    }

    .hosting-slide-actions .button {
        width: 100% !important;
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    .hosting-slide-package {
        width: 100% !important;
        margin: 0 !important;
        padding: 1rem !important;
        border-radius: 12px !important;
    }
    
    .package-name {
        font-size: 1.1rem !important;
    }
    
    .price-amount {
        font-size: 1.2rem !important;
    }
    
    .price-note,
    .price-renewal {
        font-size: 0.7rem !important;
    }
    
    .feature-item {
        font-size: 0.8rem !important;
    }
    
    .slide-discount-badge {
        display: none !important;
    }
    
    /* Mobilde her slide için sabit badge'ler */
    .multi-slide:nth-child(1) .multi-slide-info::before,
    .multi-slide:nth-child(2) .multi-slide-info::before,
    .multi-slide:nth-child(3) .multi-slide-info::before,
    .multi-slide:nth-child(4) .multi-slide-info::before {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        font-weight: 800;
        color: white !important;
        text-align: center;
        line-height: 1.2;
        animation: discountPulse 2s infinite;
        z-index: 103;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        opacity: 1 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .multi-slide:nth-child(1) .multi-slide-info::before {
        background: linear-gradient(135deg, #ff1744 0%, #ff5722 50%, #ff1744 100%) !important;
        content: '🔥\A %35\A İNDİRİM';
        white-space: pre;
    }
    
    .multi-slide:nth-child(2) .multi-slide-info::before {
        background: linear-gradient(135deg, #00e676 0%, #4caf50 50%, #00e676 100%) !important;
        content: '⚡\A %40\A İNDİRİM';
        white-space: pre;
    }
    
    .multi-slide:nth-child(3) .multi-slide-info::before {
        background: linear-gradient(135deg, #7c4dff 0%, #9c27b0 50%, #7c4dff 100%) !important;
        content: '🚀\A %45\A İNDİRİM';
        white-space: pre;
    }
    
    .multi-slide:nth-child(4) .multi-slide-info::before {
        background: linear-gradient(135deg, #ff6d00 0%, #ff9800 50%, #ff6d00 100%) !important;
        content: '💎\A %50\A İNDİRİM';
        white-space: pre;
    }
    
    @keyframes discountPulse {
        0% {
            transform: scale(1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            opacity: 1;
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            opacity: 0.95;
        }
        100% {
            transform: scale(1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            opacity: 1;
        }
    }
    
    .slide-discount-badge i {
        font-size: 0.7rem !important;
    }
    
    .slide-discount-badge span {
        font-size: 0.4rem !important;
    }
    
    .multi-slider-controls {
        position: static !important;
        margin: 1.5rem auto 1rem auto;
        justify-content: center;
        left: auto !important;
        bottom: auto !important;
    }
    
    .multi-slider-dot {
        width: 10px !important;
        height: 10px !important;
    }
    
    .multi-slider-arrows {
        display: none !important;
    }

    .multi-slide-bg::before {
        opacity: 1 !important;
        background: linear-gradient(to bottom, rgba(10, 37, 64, 0.7) 0%, rgba(10, 37, 64, 0.3) 100%);
    }
    
    .hosting-slide-bireysel {
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
    }
    
    .hosting-slide-kurumsal {
        background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%) !important;
    }
    
    .hosting-slide-wordpress {
        background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    }
    
    .hosting-slide-bayi {
        background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    }
    
    .hosting-slide-shapes,
    .hosting-slide-icons {
        opacity: 0.3 !important;
    }
    
    .floating-icon {
        animation-duration: 3s !important;
    }
    
    .shape {
        animation-duration: 4s !important;
    }

    .campaign-content {
        grid-template-columns: 1fr;
    }

    .campaign-image {
        margin-top: 2rem;
    }

    .domain-search-form {
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    .domain-search-input-container {
        width: 100%;
        margin-bottom: 0.5rem;
        background-color: white;
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-md);
    }

    .domain-search-select,
    .domain-search-button {
        width: 100%;
        margin-top: 0.5rem;
        margin-left: 0;
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-md);
    }

    .newsletter-form {
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    .newsletter-input {
        width: 100%;
        margin-bottom: 0.5rem;
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-md);
    }

    .newsletter-button {
        width: 100%;
        margin-top: 0.5rem;
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-md);
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .mega-search-container {
        padding: 1.5rem;
    }

    .domain-features-grid {
        grid-template-columns: 1fr;
    }

    .whois-container,
    .domain-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whois-content {
        max-width: 100%;
        order: 2;
    }

    .whois-image {
        order: 1;
    }

    .search-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .search-result-actions {
        width: 100%;
    }

    .search-result-actions .button {
        flex: 1;
    }

    .search-result-badges {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .search-result-price {
        margin: 0.75rem 0;
    }

    .primary-domain-result .domain-result-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .primary-domain-result .domain-period-select-container {
        margin-bottom: 0;
    }

    .top-link span {
        display: none;
    }

    .top-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .domain-card,
    .hosting-plan {
        flex: 0 0 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hosting-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hosting-tab {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .multi-slide-title {
        font-size: 2rem;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .accordion-header {
        padding: 1rem;
    }

    .support-content {
        padding: 0 1rem;
    }

    .support-info {
        padding: 1.5rem;
    }

    .support-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .support-description {
        font-size: 1rem;
    }

    .support-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .support-buttons .button {
        width: 100%;
    }

    .support-contact {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .support-contact-icon {
        margin: 0 auto;
    }

    .transfer-steps {
        grid-template-columns: 1fr;
    }

    .pricing-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-tab {
        width: 100%;
        text-align: center;
    }

    .page-hero {
        padding: 3rem 0;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .mega-search-container {
        margin-top: -2rem;
    }
}

/* Mobile dropdown styling enhancements */
@media (max-width: 768px) {
    .nav-dropdown-item {
        margin-bottom: 0;
    }

    .nav-dropdown-link {
        margin-bottom: 0.25rem;
    }

    .nav-item.active .nav-menu-chevron {
        transform: rotate(180deg);
    }

    /* Animate dropdown */
    .nav-item.active .nav-dropdown {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
    }

    .nav-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    /* Mobil görünümde menü itemleri hizlama */
    .nav-menu>li>a {
        display: flex;
        align-items: center;
        padding: 15px 0;
    }

    .nav-menu>li>a>i,
    .nav-menu>li>a>svg {
        margin-right: 15px;
        width: 24px;
        height: 24px;
        text-align: center;
    }

    .nav-menu>li>a>span {
        flex: 1;
    }

    .nav-dropdown-icon {
        width: 24px;
        height: 24px;
    }

    .nav-dropdown-link {
        padding: 12px 15px;
    }

    /* Açılır menü ok işaretini sola yanaştır */
    .nav-menu-chevron {
        margin-left: auto;
    }
}

/* Footer Sosyal Linkler */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link svg {
    position: relative;
    z-index: 1;
}

/* Footer Linkler */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link {
    color: var(--gray-300);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    border-radius: 0.5rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    transform: translateY(-50%);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
    padding-left: 2rem;
}

.footer-link:hover::before {
    opacity: 1;
    background-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: translateY(-50%) scale(1.3);
}

/* Alt Footer - Yasal Bilgiler */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Footer Ana Yapı */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* Şirket Bilgileri - Kurumsal Tasarım */
.footer-company {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-company:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-company-title {
    color: white;
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-company-subtitle {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    margin-top: -0.5rem;
}

.footer-description {
    color: var(--gray-200);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Şirket Vurguları */
.footer-company-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.footer-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-200);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-highlight:last-child {
    border-bottom: none;
}

.footer-highlight svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* İletişim Bilgileri - Yeni Tasarım */
.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.footer-contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer .contact-label {
    color: var(--gray-300);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer .contact-value {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Hizmetler Menü Bölümü - Minimal Tasarım */
.footer-services {
    margin-bottom: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-main-title {
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.services-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.services-main-description {
    color: var(--gray-200);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

.services-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-category {
    position: relative;
}

.service-category-header {
    margin-bottom: 1rem;
    text-align: left;
}

.service-category-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.4rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 1px;
}

.service-category-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.service-category-subtitle {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.service-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.8rem;
}

.service-link {
    color: var(--gray-200);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.4rem 0;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    display: block;
    padding-left: 1.5rem;
}

.service-link::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    color: var(--accent);
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1rem;
    z-index: 1;
}

.service-link:hover {
    color: white;
    padding-left: 2rem;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-link:hover::before {
    opacity: 1;
    left: 0.5rem;
}

/* Kategori hover efektleri */
.service-category:hover .service-category-icon {
    color: white;
    transform: scale(1.1);
}

.service-category:hover .service-category-title::after {
    width: 50px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

/* Alternatif stil - her kategori için farklı accent rengi */
.service-category:nth-child(1) .service-category-title::after,
.service-category:nth-child(1) .service-link:hover::before {
    background: var(--primary);
    color: var(--primary);
}

.service-category:nth-child(2) .service-category-title::after,
.service-category:nth-child(2) .service-link:hover::before {
    background: var(--accent);
    color: var(--accent);
}

.service-category:nth-child(3) .service-category-title::after,
.service-category:nth-child(3) .service-link:hover::before {
    background: var(--success);
    color: var(--success);
}

.service-category:nth-child(4) .service-category-title::after,
.service-category:nth-child(4) .service-link:hover::before {
    background: var(--warning);
    color: var(--warning);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .services-menu {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .services-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-menu {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-services {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .services-header {
        margin-bottom: 2rem;
    }
    
    .services-main-title {
        font-size: 1.75rem;
    }
    
    .services-main-description {
        font-size: 1rem;
    }
    
    .service-category-header {
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .service-category-title {
        justify-content: center;
        font-size: 1.25rem;
    }
    
    .service-links {
        text-align: center;
        gap: 0.75rem;
    }
    
    .service-link {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .service-link::before {
        display: none; /* Mobilde ok işareti gizli */
    }
    
    .service-link:hover {
        padding-left: 0;
        transform: translateY(-2px);
        color: var(--accent);
    }
}

@media (max-width: 480px) {
    .footer-services {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .services-header {
        margin-bottom: 1.5rem;
    }
    
    .services-main-title {
        font-size: 1.5rem;
    }
    
    .services-main-description {
        font-size: 0.95rem;
    }
    
    .service-category-title {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .service-category-icon {
        width: 20px;
        height: 20px;
    }
    
    .service-link {
        padding: 0.625rem 0;
        font-size: 0.85rem;
    }
}

/* Footer Başlıklar */
.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-title svg {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-title i {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

/* Partner Logoları Bölümü */
.footer-partners {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.footer-partner-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.footer-partner-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.partner-logo {
    height: 28px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: translateY(-3px) scale(1.1);
}

/* Partner Logo Placeholder için SVG stilleri */
.partner-logo-placeholder {
    opacity: 0.6;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    min-width: 60px;
    padding: 8px;
}

.partner-logo-placeholder:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
}

.partner-logo-placeholder img {
    height: 24px !important;
    width: auto !important;
    max-width: 60px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
    transition: all 0.3s ease;
}

.partner-logo-placeholder:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2)) !important;
}

.partner-logo-placeholder svg {
    height: 24px;
    width: auto;
    max-width: 80px;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.partner-logo-placeholder:hover svg {
    filter: brightness(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Responsive Tasarım - Partner Logoları */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-partners {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-partner-group {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-company,
    .footer-contact-info {
        padding: 1.5rem;
    }
    
    .footer-company-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-highlight {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .footer-partners {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .footer-partner-logos {
        gap: 0.75rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partner-logo {
        height: 20px;
    }
    
    .partner-logo-placeholder {
        min-height: 36px;
        min-width: 50px;
        padding: 6px;
    }
    
    .partner-logo-placeholder img {
        height: 20px !important;
        max-width: 50px !important;
    }
    
    .partner-logo-placeholder svg {
        height: 20px;
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .footer-company,
    .footer-contact-info {
        padding: 1.25rem;
    }
    
    .footer-company-title {
        font-size: 1.25rem;
    }
    
    .footer-company-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .footer-partner-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }
    
    .partner-logo,
    .partner-logo-placeholder {
        height: 18px;
        min-height: 32px;
        min-width: 45px;
        padding: 4px;
    }
    
    .partner-logo-placeholder img {
        height: 18px !important;
        max-width: 45px !important;
    }
    
    .partner-logo-placeholder svg {
        height: 18px;
        max-width: 60px;
    }
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 10rem;
  margin-left: 8px;
  position: relative;
  top: -1px;
}

.badge-new {
  background-color: #10B981; /* Green */
  color: white;
  animation: pulse-new 2s infinite;
}

@keyframes pulse-new {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Promo Highlight */
.nav-dropdown-promo.promo-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    margin: 8px;
    border: none;
}
.nav-dropdown-promo.promo-highlight .nav-dropdown-promo-icon i {
    color: white;
}
.nav-dropdown-promo.promo-highlight .nav-dropdown-promo-title,
.nav-dropdown-promo.promo-highlight .nav-dropdown-promo-description {
    color: white;
}

@keyframes shake-gift {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.nav-dropdown-promo.promo-highlight .nav-dropdown-promo-icon i[data-feather="gift"] {
  animation: shake-gift 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* Disabled Nav Item ve Coming Soon Badge Stilleri */
.nav-item-disabled {
  position: relative;
}

.nav-link-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: auto;
  position: relative;
}

.nav-link-disabled:hover {
  color: var(--text-light) !important;
  background-color: transparent !important;
}

/* Mobilde disabled nav-link'ler için düzenleme */
@media (max-width: 768px) {
  .nav-menu .nav-link-disabled {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 1.25rem 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }
  
  .nav-menu .nav-link-disabled .nav-menu-icon {
    margin-right: 0.75rem !important;
    flex-shrink: 0 !important;
  }
  
  .nav-menu .nav-link-disabled .badge-coming-soon {
    margin-left: auto !important;
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
  }
}

.nav-link-disabled .badge-coming-soon {
  position: absolute;
  top: -8px;
  right: -20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
  animation: badge-pulse 2s infinite;
  z-index: 5;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.5);
  }
}

/* Mobil görünüm için badge düzenlemesi */
@media (max-width: 768px) {
  .nav-link-disabled .badge-coming-soon {
    top: -6px;
    right: -15px;
    font-size: 0.55rem;
    padding: 1px 4px;
  }
}

/* Mobil menü logosu - sadece mobilde göster */
.mobile-menu-header {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-header {
    display: block;
  }
}

/* Dropdown disabled link ve minimal hazırlanıyor badge */
.nav-dropdown-link-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-dropdown-link-disabled:hover {
  background-color: transparent !important;
}

.badge-preparing {
  background-color: var(--gray-400);
  color: white;
  font-size: 0.5rem;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-left: 4px;
}

/* =================================
   Mobile Menu
   ================================= */
.mobile-toggle {
    display: none;
}

