/* Premium Theme Enhancements */

/* Modern Color Palette */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f59e0b;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 2px 0 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);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Premium Header Styles */
.header-geneli {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.header-geneli::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 0;
}

.header-geneli > * {
    position: relative;
    z-index: 1;
}

/* Premium Navbar */
.aspmenu {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: transparent !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(99, 102, 241, 0.1) !important;
}

/* Premium Buttons */
.fazlasi-btn,
.btn-transfer,
.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fazlasi-btn::before,
.btn-transfer::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.fazlasi-btn:hover::before,
.btn-transfer:hover::before,
.btn-primary:hover::before {
    left: 100%;
}

.fazlasi-btn:hover,
.btn-transfer:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-2);
}

/* Premium Form Elements */
.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Premium Card Styles */
.hizmet1,
.news-block .inner-box {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.hizmet1::before,
.news-block .inner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hizmet1:hover::before,
.news-block .inner-box:hover::before {
    transform: scaleX(1);
}

.hizmet1:hover,
.news-block .inner-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.hizmet1 img,
.news-block .inner-box .image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hizmet1:hover img,
.news-block .inner-box:hover .image img {
    transform: scale(1.05);
}

/* Premium Section Backgrounds */
.hizmetlerimiz,
.yorumlar {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hizmetlerimiz::before,
.yorumlar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Premium Typography */
/* Header yazı stilleri header-modern.css'de tanımlı */

.hizmetler-baslik h2,
.bloglar-baslik h2 {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

/* Premium Testimonial Cards */
.yorumlarimiz {
    position: relative;
}

.yorumlar-ic {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.yorumlar-ic::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(99, 102, 241, 0.1);
    font-family: serif;
    line-height: 1;
}

.yorumlar-ic:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tirnak {
    background: var(--gradient-1);
    box-shadow: var(--shadow-md);
    transform: rotate(15deg);
}

/* Premium Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer h4 {
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer h4:before {
    background: var(--secondary-color);
    height: 3px;
    width: 60px;
}

.footer-sosyaller a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-sosyaller a:hover {
    background: var(--primary-color);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-md);
}

/* Premium Price Display */
.fiyat-sonuc {
    background: var(--gradient-1);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-align: center;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-block,
.hizmet1 {
    animation: fadeInUp 0.6s ease-out backwards;
}

.news-block:nth-child(1) { animation-delay: 0.1s; }
.news-block:nth-child(2) { animation-delay: 0.2s; }
.news-block:nth-child(3) { animation-delay: 0.3s; }

/* Premium Cloud Animation */
.cloud {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Premium Responsive */
@media (max-width: 768px) {
    .header-yazi h1 {
        font-size: 32px;
    }
    
    .header-yazi h2 {
        font-size: 18px;
    }
    
    .hizmetler-baslik h2,
    .bloglar-baslik h2 {
        font-size: 32px;
    }
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* Premium Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Premium Focus States */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

