/* ============================================
   MURAT BALOĞLU - MODERN CSS STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B85FF;
    --secondary: #FF6B6B;
    --accent: #00D2FF;
    --dark: #0F0E17;
    --dark-2: #1A1932;
    --dark-3: #232246;
    --gray-100: #F7F7FC;
    --gray-200: #EBEBF5;
    --gray-300: #D1D1E0;
    --gray-400: #9E9EB8;
    --gray-500: #6B6B8D;
    --gray-600: #4A4A6A;
    --gray-700: #353555;
    --gray-800: #252540;
    --gray-900: #1A1A35;
    --white: #FFFFFF;
    --success: #00C851;
    --warning: #FFB300;
    --danger: #FF4444;
    --gradient-1: linear-gradient(135deg, #6C63FF 0%, #00D2FF 100%);
    --gradient-2: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
    --gradient-3: linear-gradient(135deg, #0F0E17 0%, #232246 100%);
    --shadow-sm: 0 2px 8px rgba(108, 99, 255, 0.08);
    --shadow-md: 0 4px 20px rgba(108, 99, 255, 0.12);
    --shadow-lg: 0 8px 40px rgba(108, 99, 255, 0.16);
    --shadow-xl: 0 20px 60px rgba(108, 99, 255, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo, .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.logo-text {
    color: var(--white);
    transition: var(--transition);
}

.logo-accent {
    color: var(--primary-light);
    transition: var(--transition);
}

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

.navbar.scrolled .logo-accent {
    color: var(--primary);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
    background: rgba(108, 99, 255, 0.06);
}

.btn-nav {
    background: var(--gradient-1) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600 !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-toggle span {
    background: var(--dark);
}

.navbar-toggle.aktif span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.aktif span:nth-child(2) { opacity: 0; }
.navbar-toggle.aktif span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-3);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
}

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

.hero-stat .sayi {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat .etiket {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108, 99, 255, 0.08);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.hizmet-kart {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hizmet-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.hizmet-kart:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.hizmet-kart:hover::before {
    opacity: 1;
}

.hizmet-ikon {
    width: 64px;
    height: 64px;
    background: rgba(108, 99, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hizmet-kart h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.hizmet-kart p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.hizmet-fiyat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.hizmet-fiyat .fiyat {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.hizmet-fiyat .fiyat small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    display: block;
}

.hizmet-ozellikler {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.hizmet-ozellikler span {
    background: rgba(108, 99, 255, 0.06);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.blog-kart {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.blog-kart:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-gorsel {
    width: 100%;
    height: 220px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.blog-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-icerik {
    padding: 28px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-kategori {
    background: rgba(108, 99, 255, 0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-kart h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.4;
}

.blog-kart h3 a:hover {
    color: var(--primary);
}

.blog-kart .ozet {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.blog-devam {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-devam:hover {
    gap: 10px;
}

/* ============================================
   BLOG DETAIL
   ============================================ */
.blog-detay-header {
    padding: 160px 0 60px;
    background: var(--gradient-3);
    text-align: center;
}

.blog-detay-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 20px;
}

.blog-detay-icerik {
    max-width: 800px;
    margin: -40px auto 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.blog-detay-icerik h2,
.blog-detay-icerik h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

.blog-detay-icerik p {
    margin-bottom: 16px;
    color: var(--gray-500);
    line-height: 1.9;
}

.blog-detay-icerik img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

/* ============================================
   ABOUT / HAKKINDA
   ============================================ */
.hakkinda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hakkinda-gorsel {
    position: relative;
}

.hakkinda-gorsel .gorsel-kutu {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.hakkinda-gorsel .gorsel-kutu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hakkinda-gorsel .deneyim-kutu {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.deneyim-kutu .sayi {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.deneyim-kutu .etiket {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.hakkinda-icerik h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.hakkinda-icerik p {
    color: var(--gray-500);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.yetenek-listesi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.yetenek-listesi li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
}

.yetenek-listesi li i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT / İLETİŞİM
   ============================================ */
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

.iletisim-bilgi {
    padding: 40px;
    background: var(--gradient-3);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.iletisim-bilgi h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.iletisim-bilgi p {
    color: var(--gray-400);
    margin-bottom: 36px;
}

.iletisim-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.iletisim-item .ikon {
    width: 48px;
    height: 48px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.iletisim-item .bilgi h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.iletisim-item .bilgi p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   FORMS
   ============================================ */
.form-grup {
    margin-bottom: 20px;
}

.form-grup label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-kontrol {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form-kontrol:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.form-kontrol::placeholder {
    color: var(--gray-400);
}

textarea.form-kontrol {
    min-height: 140px;
    resize: vertical;
}

select.form-kontrol {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B8D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-satir {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.sayfa-header {
    padding: 160px 0 80px;
    background: var(--gradient-3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sayfa-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.sayfa-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.sayfa-header p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: var(--gray-400);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: var(--white);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.alert-success {
    background: rgba(0, 200, 81, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 200, 81, 0.2);
}

.alert-error {
    background: rgba(255, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.alert-info {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.alert-kapat {
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
}

/* ============================================
   PAGINATION
   ============================================ */
.sayfalama {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.sayfa-link {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.sayfa-link:hover, .sayfa-link.aktif {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   TESTIMONIALS / MÜŞTERİ YORUMLARI
   ============================================ */
.testimonials-section {
    background: var(--gray-100);
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(108, 99, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(108, 99, 255, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #FFB300;
    font-size: 0.85rem;
}

.testimonial-stars i.empty {
    color: var(--gray-200);
}

.testimonial-quote {
    position: relative;
    flex: 1;
}

.testimonial-quote-icon {
    position: absolute;
    top: -4px;
    left: -2px;
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.1;
}

.testimonial-quote p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    padding-left: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar span {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonial-info small {
    color: var(--gray-500);
    font-size: 0.78rem;
    margin-top: 1px;
}

.testimonial-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    background: rgba(108, 99, 255, 0.06);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 4px;
    width: fit-content;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.testimonials-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.testimonials-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.testimonials-dots {
    display: flex;
    gap: 6px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
}

/* ============================================
   HIZMET DETAY
   ============================================ */
.hizmet-detay-header {
    padding: 160px 0 60px;
    background: var(--gradient-3);
}

.hizmet-detay-header .ikon-buyuk {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hizmet-detay-header h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.hizmet-detay-header p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
}

.hizmet-detay-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    padding: 60px 0;
}

.hizmet-detay-body .icerik h2,
.hizmet-detay-body .icerik h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.hizmet-detay-body .icerik p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.hizmet-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-kart {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.sidebar-kart h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.sidebar-kart .fiyat-buyuk {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.sidebar-kart .fiyat-not {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.ozellik-liste li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--dark);
}

.ozellik-liste li:last-child {
    border-bottom: none;
}

.ozellik-liste li i {
    color: var(--success);
    font-size: 0.85rem;
}

/* ============================================
   TEKLIF FORM
   ============================================ */
.teklif-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.teklif-bilgi {
    padding: 40px;
    background: var(--gradient-3);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.teklif-bilgi h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.teklif-bilgi p {
    color: var(--gray-400);
    margin-bottom: 32px;
}

.teklif-avantaj {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.teklif-avantaj .ikon {
    width: 40px;
    height: 40px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.teklif-avantaj h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.teklif-avantaj p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
}

.teklif-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.teklif-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-desc {
    color: var(--gray-400);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-sosyal {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-sosyal a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-sosyal a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-iletisim li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-iletisim li i {
    color: var(--primary-light);
    width: 16px;
}

.footer-alt {
    padding: 24px 0;
    text-align: center;
}

.footer-alt p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .hizmet-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .hakkinda-grid { grid-template-columns: 1fr; gap: 40px; }
    .iletisim-grid { grid-template-columns: 1fr; }
    .teklif-grid { grid-template-columns: 1fr; }
    .hizmet-detay-body { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-header h2 { font-size: 2rem; }
    .sayfa-header h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    .navbar-menu.aktif {
        display: flex;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero { padding-top: 100px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 24px; }
    .hero-stat .sayi { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    
    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }
    
    .form-satir { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .yetenek-listesi { grid-template-columns: 1fr; }
    
    .blog-detay-header h1 { font-size: 1.8rem; }
    .blog-detay-icerik { padding: 24px; margin: -20px 16px 0; }
    
    .teklif-form { padding: 24px; }
    .teklif-bilgi { padding: 24px; }
    
    .testimonial-card { padding: 24px 20px; }
    .testimonials-nav { margin-top: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.6rem; }
    .sayfa-header { padding: 120px 0 50px; }
    .sayfa-header h1 { font-size: 1.8rem; }
}

/* ============================================
   SCROLL ANİMASYONLARI
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Farklı animasyon yönleri */
.animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-scale.animate-visible {
    opacity: 1;
    transform: scale(1);
}

.animate-rotate {
    opacity: 0;
    transform: rotate(-5deg) translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-rotate.animate-visible {
    opacity: 1;
    transform: rotate(0) translateY(0);
}

/* Gecikmeler */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ============================================
   HERO GELİŞMİŞ ANİMASYONLAR
   ============================================ */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(108, 99, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(108, 99, 255, 0.6), 0 0 80px rgba(0, 210, 255, 0.2); }
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

@keyframes particleFade {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-30px) scale(1); }
    100% { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

@keyframes slideInFromBottom {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-content .hero-badge {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-content h1 {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-content p {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-buttons {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-stats {
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

/* Hero gradient text shimmer */
.hero h1 .gradient-text {
    background: linear-gradient(90deg, #6C63FF, #00D2FF, #6C63FF, #00D2FF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Hero floating particles */
.hero .particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero .particle-1 {
    width: 6px; height: 6px;
    background: var(--primary-light);
    top: 20%; right: 30%;
    animation: particleFade 3s ease-in-out infinite;
}

.hero .particle-2 {
    width: 4px; height: 4px;
    background: var(--accent);
    top: 40%; right: 15%;
    animation: particleFade 4s ease-in-out infinite 1s;
}

.hero .particle-3 {
    width: 8px; height: 8px;
    background: rgba(108, 99, 255, 0.5);
    top: 60%; right: 25%;
    animation: particleFade 3.5s ease-in-out infinite 0.5s;
}

.hero .particle-4 {
    width: 3px; height: 3px;
    background: var(--accent);
    top: 30%; right: 40%;
    animation: particleFade 5s ease-in-out infinite 2s;
}

.hero .particle-5 {
    width: 5px; height: 5px;
    background: var(--primary-light);
    bottom: 30%; right: 20%;
    animation: particleFade 4.5s ease-in-out infinite 1.5s;
}

/* Hero orbit circles */
.hero .orbit-ring {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 1;
}

.hero .orbit-ring::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: orbit 12s linear infinite;
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

.hero .orbit-ring-2 {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(0, 210, 255, 0.08);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 1;
}

.hero .orbit-ring-2::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: orbit 8s linear infinite reverse;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

/* ============================================
   GELİŞMİŞ KART ANİMASYONLARI
   ============================================ */
.hizmet-kart {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.hizmet-kart:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
    border-color: transparent;
}

.hizmet-kart:hover .hizmet-ikon {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hizmet-ikon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Blog kart gelişmiş hover */
.blog-kart {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.blog-kart:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 50px rgba(108, 99, 255, 0.15);
}

.blog-kart:hover .blog-gorsel img {
    transform: scale(1.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-gorsel img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-gorsel {
    overflow: hidden;
}

/* Blog devam link animasyon */
.blog-devam {
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-devam i {
    transition: transform 0.3s ease;
}

.blog-devam:hover i {
    transform: translateX(5px);
}

/* Buton gelişmiş efektleri */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(108, 99, 255, 0.4);
}

/* Buton pulse efekti */
.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Logo ikon hover */
.navbar-logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
}

.logo-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   SAYAÇ ANİMASYONU
   ============================================ */
.hero-stat .sayi {
    display: inline-block;
}

.hero-stat .sayi.animate {
    animation: countUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ============================================
   SECTION HEADER ANİMASYON
   ============================================ */
.section-header .badge {
    transition: all 0.3s ease;
}

.section-header .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.2);
}

/* ============================================
   CTA GELİŞMİŞ EFEKT
   ============================================ */
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite;
}

/* ============================================
   FOOTER GELİŞMİŞ ANİMASYONLAR
   ============================================ */
.footer-sosyal a {
    position: relative;
    overflow: hidden;
}

.footer-sosyal a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.footer-sosyal a:hover::before {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
}

/* ============================================
   İLETİŞİM ITEM ANİMASYON
   ============================================ */
.iletisim-item {
    transition: transform 0.3s ease;
}

.iletisim-item:hover {
    transform: translateX(8px);
}

.iletisim-item:hover .ikon {
    background: rgba(108, 99, 255, 0.3);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.iletisim-item .ikon {
    transition: all 0.3s ease;
}

/* ============================================
   FORM ANİMASYONLAR
   ============================================ */
.form-kontrol {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.form-kontrol:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.15);
}

/* ============================================
   DENEYIM KUTU GLOW
   ============================================ */
.deneyim-kutu {
    animation: glow 3s ease-in-out infinite;
}

/* ============================================
   YETENEK LİSTESİ ANİMASYON
   ============================================ */
.yetenek-listesi li {
    transition: transform 0.3s ease, color 0.3s ease;
}

.yetenek-listesi li:hover {
    transform: translateX(8px);
    color: var(--primary);
}

.yetenek-listesi li:hover i {
    transform: scale(1.3);
    transition: transform 0.3s ease;
}

/* ============================================
   TEKLIF AVANTAJ ANİMASYON
   ============================================ */
.teklif-avantaj {
    transition: transform 0.3s ease;
}

.teklif-avantaj:hover {
    transform: translateX(8px);
}

.teklif-avantaj:hover .ikon {
    background: rgba(108, 99, 255, 0.3);
    transform: rotate(5deg) scale(1.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   SAYFALAMA ANİMASYON
   ============================================ */
.sayfa-link {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sayfa-link:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   ÖZELLİK LİSTESİ ANİMASYON
   ============================================ */
.ozellik-liste li {
    transition: transform 0.3s ease, background 0.3s ease;
    padding-left: 0;
}

.ozellik-liste li:hover {
    transform: translateX(5px);
    padding-left: 5px;
}

/* ============================================
   SIDEBAR KART ANİMASYON
   ============================================ */
.sidebar-kart {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-kart:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO GÖRSEL EFEKTİ (Sağ taraf)
   ============================================ */
.hero-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1;
    width: 500px;
    height: 500px;
}

.hero-visual .code-block {
    position: absolute;
    background: rgba(26, 25, 50, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    font-family: 'Fira Code', 'SF Mono', monospace;
    font-size: 0.85rem;
    color: #e4e4e7;
    animation: floatSlow 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-visual .code-block-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.hero-visual .code-block-2 {
    top: 45%;
    right: 10%;
    animation-delay: 2s;
}

.hero-visual .code-block-3 {
    top: 75%;
    right: 5%;
    animation-delay: 1s;
}

.code-block .code-keyword { color: #c792ea; }
.code-block .code-function { color: #82aaff; }
.code-block .code-string { color: #c3e88d; }
.code-block .code-comment { color: #546e7a; }
.code-block .code-number { color: #f78c6c; }

@media (max-width: 1200px) {
    .hero-visual { display: none; }
}

/* ============================================
   SMOOTH SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    margin-top: 8px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(16px); }
}

/* ============================================
   NAV MOBIL MENÜ GELİŞMİŞ
   ============================================ */
@media (max-width: 768px) {
    .navbar-menu {
        background: rgba(15, 14, 23, 0.98) !important;
        backdrop-filter: blur(20px);
    }
    
    .navbar-menu.aktif .nav-link {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .navbar-menu.aktif .nav-link:hover {
        color: var(--white);
        background: rgba(108, 99, 255, 0.15);
    }
    
    .navbar.scrolled .navbar-menu {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    .navbar.scrolled .navbar-menu.aktif .nav-link {
        color: var(--dark);
    }
}
