/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden; /* Koruma, ancak debug için sınıf ekleyince kaldırılabilir */
    width: 100%;
    position: relative;
}

/* =============================
     Fluid Typography Scale (Mobile-first)
     ============================= */
:root {
    --font-base-min: 0.95rem;
    --font-base-max: 1.05rem;
    --font-scale-step: 0.075rem;
    --font-fluid-base: clamp(var(--font-base-min), 0.6vw + 0.8rem, var(--font-base-max));
    --font-fluid-sm: clamp(0.85rem, 0.4vw + 0.7rem, 0.95rem);
    --font-fluid-md: clamp(1.05rem, 0.9vw + 0.8rem, 1.25rem);
    --font-fluid-lg: clamp(1.35rem, 1.6vw + 0.9rem, 1.9rem);
    --font-fluid-xl: clamp(1.8rem, 2.8vw + 1rem, 2.6rem);
    --font-fluid-xxl: clamp(2.2rem, 4vw + 1rem, 3.4rem);
}

body { font-size: var(--font-fluid-base); }
h1, .heading-xl { font-size: var(--font-fluid-xxl); line-height: 1.08; letter-spacing: -0.5px; }
h2, .heading-lg { font-size: var(--font-fluid-xl); line-height: 1.15; letter-spacing: -0.4px; }
h3, .heading-md { font-size: var(--font-fluid-lg); line-height: 1.2; letter-spacing: -0.3px; }
h4, .heading-sm { font-size: var(--font-fluid-md); line-height: 1.25; letter-spacing: -0.2px; }
h5 { font-size: var(--font-fluid-sm); line-height: 1.3; letter-spacing: -0.15px; }
h6 { font-size: 0.75rem; line-height: 1.35; letter-spacing: 0.5px; text-transform: uppercase; }

/* Clamp tabanlı paragraf ve küçük metin ölçeği */
p, .text-body { font-size: var(--font-fluid-base); }
small, .text-xs { font-size: clamp(0.7rem, 0.35vw + 0.55rem, 0.78rem); line-height: 1.3; }

/* Büyük kahraman başlıkları override (mevcut hero spesifik stilleri için esnek temel) */
.hero-content h1 { font-size: var(--font-fluid-xxl); }
.section-header h2 { font-size: var(--font-fluid-xl); }

@media (min-width: 1400px) {
    :root {
        --font-fluid-xl: clamp(2rem, 1.4vw + 1.4rem, 2.8rem);
        --font-fluid-xxl: clamp(2.6rem, 2.2vw + 1.6rem, 3.6rem);
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}
.sr-only { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0 0 0 0) !important; white-space:nowrap !important; border:0 !important; }
.overflow-outline { outline: 2px dashed #dc2626 !important; outline-offset: 2px; }

.question-hidden {
    opacity: 0 !important;
}

/* Lazy Loading Styles */
img[data-src],
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img.lazy-loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* Lazy loading placeholder */
img[data-src]:not(.lazy-loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

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

.section-padding {
    padding: 100px 0;
}

/* Utility Classes */
.highlight {
    color: #6c5ce7;
    display: inline-block;
    white-space: nowrap;
}

/* Modern Button System - GitHub/Stripe/Notion tarzı */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, #5855f6 0%, #7c3aed 50%, #9333ea 100%);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 1.5px solid rgba(156, 163, 175, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(156, 163, 175, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: #5a4fcf;
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.section-header p {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
:root {
    --navbar-height: 70px;
    --navbar-height-scrolled: 58px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    height: var(--navbar-height);
    padding: 0; /* height ile kontrol ediliyor */
    display: flex;
    align-items: center;
    /* Daha net hizalama için satır içi boşluk azaltıldı */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: var(--navbar-height-scrolled);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    width: 100%;
}

/* Yeni sol ve sağ grup düzeni */
.nav-left { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

@media (max-width: 1200px) {
  .nav-right { gap: 6px; }
  .nav-container { padding: 0 16px; }
}
@media (max-width: 992px) {
  .nav-right { gap: 6px; }
  .nav-container { padding: 0 12px; }
}.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo .logo-link:hover {
    transform: translateY(-2px);
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6c5ce7;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.25);
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}

.nav-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
}

@media (max-width: 768px) {
    .nav-logo h3 {
        font-size: 1.4rem;
    }
    
    .nav-logo-img {
        width: 38px;
        height: 38px;
    }
}

/* Legacy: previously colored last name in heading; now brand uses custom parts */
.nav-logo h3 span {
    color: #6c5ce7;
}

/* =====================================
   Hero Video & Assistant AI Avatar
   ===================================== */
/* ===============================
   Profesyonel Hero Video Çerçevesi
   =============================== */
.hero-media {
    --frame-radius: 50%;
    --frame-padding: 3px;
    --frame-gradient: linear-gradient(140deg,#6366f1 0%,#8b5cf6 35%,#ec4899 70%,#f43f5e 100%);
    --frame-bg: radial-gradient(circle at 30% 30%,rgba(255,255,255,0.08),transparent 60%);
    position: relative;
    width: 100%;
    max-width: min(600px, 90vw);
    aspect-ratio: 1/1;
    margin: 0 auto 46px;
    padding: var(--frame-padding);
    border-radius: 50%;
    background: var(--frame-gradient);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.4) inset,
        0 4px 18px -2px rgba(99,102,241,0.35),
        0 8px 38px -6px rgba(99,102,241,0.35),
        0 12px 60px -4px rgba(236,72,153,0.25);
    overflow: hidden;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px; /* hafif iç parlama için */
    border-radius: inherit;
    background: var(--frame-bg);
    pointer-events: none;
    z-index: 1;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg,rgba(255,255,255,0.12) 0%,rgba(255,255,255,0) 50%);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--frame-radius);
    display: block;
    position: relative;
    z-index: 3;
    background:#0d0f17;
    filter: brightness(0.95) contrast(1.08) saturate(1.15);
    transition: opacity 0.6s ease-in-out, filter 0.4s ease;
}

/* Video üstüne hafif grid & noise layer (performans dostu) */
/* ::backdrop kaldırıldı (fullscreen gerekmediği için) */
.ai-badge--pos1 { position:absolute; top:6%; left:8%; }
.ai-badge--pos2 { position:absolute; top:18%; right:10%; }
.ai-badge--pos3 { position:absolute; bottom:22%; left:12%; }
.ai-badge--pos4 { position:absolute; bottom:10%; right:14%; }

.assistant-avatar {
    --avatar-size: 92px;
    position: absolute;
    bottom: 18px;
    left: 20px;
    width: var(--avatar-size);
    height: var(--avatar-size);
    border-radius: 50%;
    object-fit: cover;
    background: #0d0f17;
    z-index: 4;
    box-shadow: 0 4px 14px rgba(0,0,0,0.45);
    border: 2px solid rgba(255,255,255,0.85);
    position: absolute;
}

.assistant-avatar-wrapper { position: absolute; bottom: 18px; left: 20px; z-index:5; }
.assistant-avatar:hover { transform: scale(1.02); transition: transform .3s ease; }

@media (min-width: 1100px) { .hero-media { margin: 0 0 0 auto; } }

/* Avatar ve cyber katman ilişkisi */
.cyber-avatar-container { z-index: 5; position: relative; }

/* Hareketli eski dekoratif öğeleri tamamen devre dışı bırak */
.holo-ring,
.code-orbit,
.avatar-scan-line,
.data-nodes,
.data-nodes * { display: none !important; animation: none !important; }

/* Ortak AI asistan avatar görüntü ayarları (tek kaynak PNG) */
.assistant-avatar-img,
.assistant-avatar-img-small,
.assistant-avatar-img-tiny,
.ai-badge-img { display:block; width:100%; height:100%; object-fit:cover; image-rendering:auto; }

/* Kritik hero avatarı için daha hızlı fetchpriority kullanılabilir (HTML'de eklenebilir) */

/* Brand text next to logo */
.brand-text {
    display: flex;
    align-items: baseline;
    gap: 0;
    font-weight: 800;
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.brand-me,
.brand-su {
    color: #111827;
}
.brand-x {
    color: #6c5ce7;
    margin: 0 1px;
}

@media (max-width: 768px) {
    .brand-text { font-size: 1.3rem; }
    
    .nav-logo-img {
        max-height: 38px;
    }
    
    .nav-container {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .nav-right {
        gap: 6px;
    }
}

@media (max-width: 640px) {
    .brand-text { font-size: 1.2rem; }
    
    .nav-logo-img {
        max-height: 34px;
    }
    
    .nav-container {
        padding: 10px 12px;
        gap: 8px;
    }
}

/* Creative brand badge next to logo */
.brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.25);
    transition: all 0.3s ease;
}

.brand-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(108, 92, 231, 0.35);
}

@media (max-width: 768px) {
    .brand-chip {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(162, 155, 254, 0.05) 100%);
    padding: 6px 10px;
    border-radius: 50px;
    border: 1px solid rgba(108, 92, 231, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: calc(var(--navbar-height) - 20px);
    align-items: center;
}

.navbar.scrolled .nav-menu {
    height: calc(var(--navbar-height-scrolled) - 14px);
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 25px;
    background: transparent;
    white-space: nowrap; /* Tek satırda kalmasını sağlar */
}

/* Standalone Blog Button */
.nav-blog-standalone {
    margin-left: 0;
    margin-right: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--navbar-height) - 20px); /* nav-menu ile hizalı */
    min-width: 100px;
    padding: 0 20px; /* dikey height sabit, yatay padding */
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1; /* metni dikey ortalama için */
    letter-spacing: .3px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 40px;
    box-shadow: 0 6px 16px rgba(108,92,231,.30); /* Daha hafif performans */
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s ease, background .35s ease;
    box-sizing: border-box;
}

.nav-blog-standalone:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(108,92,231,.40);
    background: linear-gradient(135deg, #7266f1 0%, #b4afff 100%);
}

.nav-blog-standalone:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(108,92,231,.4);
}

.nav-blog-standalone:focus-visible {
    outline: 3px solid rgba(108,92,231,.55);
    outline-offset: 2px;
}

.navbar.scrolled .nav-blog-standalone {
    height: calc(var(--navbar-height-scrolled) - 14px);
    padding: 0 22px;
    box-shadow: 0 5px 14px rgba(108,92,231,.28);
}

.nav-blog-standalone .nav-blog-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: .75;
    animation: blogGlow 4s linear infinite;
}

@keyframes blogGlow {
    0% { transform: scale(0.95); opacity:.6; }
    50% { transform: scale(1.05); opacity:.85; }
    100% { transform: scale(0.95); opacity:.6; }
}

/* Hareket azaltma tercihi: animasyonu kapat ve sadeleştir */
@media (prefers-reduced-motion: reduce) {
    .nav-blog-standalone .nav-blog-glow { animation: none; opacity: .5; }
    .nav-blog-standalone, .nav-link { transition: none !important; }
}

/* Mobile: show blog inside menu, hide standalone */
.blog-mobile { display: none; }

@media (max-width: 900px) {
    .nav-blog-standalone {
        height: calc(var(--navbar-height) - 24px);
        padding: 0 20px;
        min-width: 110px;
    }
}
@media (max-width: 768px) {
    .nav-blog-standalone { display: none; }
    .blog-mobile { display: flex; }
}

/* ===== Nav Actions (Search + Blog Button) ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 16px;
}

.nav-search {
    display: flex;
    align-items: center;
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.25);
    padding: 4px 10px 4px 12px;
    border-radius: 30px;
    position: relative;

/* Klavye erişilebilirliği: focus görünürlüğü */
.nav-link:focus-visible {
    outline: 2px solid rgba(108,92,231,.6);
    outline-offset: 2px;
}
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav-search:focus-within {
    box-shadow: 0 0 0 3px rgba(108,92,231,0.25);
    background: rgba(108, 92, 231, 0.12);
}

.nav-search input[type="search"] {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    width: 160px;
    color: #2d3436;
    font-weight: 500;
}

.nav-search input[type="search"]::placeholder {
    color: #6b7280;
    font-weight: 400;
}

.search-btn {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(108,92,231,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(108,92,231,0.45);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(108,92,231,0.35);
}

.nav-blog-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(108, 92, 231, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.nav-blog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(108, 92, 231, 0.45);
}

.nav-blog-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .nav-search input[type="search"] { width: 110px; }
    .nav-actions { gap: 10px; }
    .nav-blog-btn { padding: 8px 18px; }
}

@media (max-width: 640px) {
    .nav-actions { display: none; } /* Mobilde sadeleştir, gerekirse ileride toggle eklenir */
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

/* Auth CTAs in nav: color-tuned hovers */
.nav-link.login-cta::before {
    background: linear-gradient(135deg, #2ea0ff 0%, #007bff 100%);
}
.nav-link.signup-cta::before {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Small helper line under hero for auth links */
.auth-cta-line{
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
    text-align: center;
}
.auth-cta-line a{ text-decoration: none; font-weight: 600; }
.auth-cta-line a.login{ color: #007bff; }
.auth-cta-line a.signup{ color: #16a34a; }
.auth-cta-line a:hover{ text-decoration: underline; }

/* Navbar Search Button */
.nav-search-btn {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.1) 0%, 
        rgba(162, 155, 254, 0.1) 100%);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6c5ce7;
    font-size: 15px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-search-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

.nav-search-btn:hover {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.15) 0%, 
        rgba(162, 155, 254, 0.15) 100%);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
}

.nav-search-btn:active {
    transform: translateY(0) scale(1);
}

/* Modern Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    background: rgba(108, 92, 231, 0.08);
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .hamburger {
        width: 36px;
        height: 36px;
    }
}

.hamburger span {
    width: 20px;
    height: 2.5px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    margin: 2.5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.hamburger:hover {
    background: rgba(108, 92, 231, 0.15);
    border-color: rgba(108, 92, 231, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

.hamburger:focus-visible {
    outline: 2px solid rgba(108, 92, 231, 0.5);
    outline-offset: 2px;
}

.hamburger.active {
    background: rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.4);
}

/* ===========================
   MODERN GLASSMORPHIC MOBILE MENU
   =========================== */

@media (max-width: 900px) {
    .hamburger { 
        display: flex;
    }
    
    /* Glassmorphic Slide-out Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: 90px 0 30px;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        border-left: 1px solid rgba(108, 92, 231, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease,
                    visibility 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Menu Items */
    .nav-menu li {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 4px;
    }
    
    .nav-link {
        width: 100%;
        padding: 14px 18px;
        text-align: left;
        font-size: 0.95rem;
        font-weight: 500;
        border-radius: 12px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(108, 92, 231, 0.03);
        border: 1px solid rgba(108, 92, 231, 0.08);
        color: #2d3436;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(108, 92, 231, 0.12);
        border-color: rgba(108, 92, 231, 0.25);
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
    }
    
    .nav-link::after {
        content: '\f054';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 0.75rem;
        opacity: 0.4;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover::after,
    .nav-link:active::after {
        opacity: 1;
        transform: translateX(3px);
    }
    
    /* Mobile Auth Section */
    .nav-auth-inline {
        margin-top: 20px;
        padding: 20px 20px 0;
        border-top: 2px solid rgba(108, 92, 231, 0.15);
    }
    
    .nav-auth-inline:first-of-type {
        margin-top: 8px;
        padding-top: 0;
        border-top: none;
    }
    
    .blog-mobile { 
        display: flex !important;
        background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
        color: #ffffff !important;
        font-weight: 600;
        border: none;
        box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
    }
    
    .blog-mobile::after {
        color: #ffffff;
        opacity: 0.7;
    }
    
    .blog-mobile:hover {
        background: linear-gradient(135deg, #7266f1 0%, #b4afff 100%);
        box-shadow: 0 6px 16px rgba(108, 92, 231, 0.4);
    }
    
    .login-cta,
    .signup-cta {
        font-weight: 600;
    }
    
    .login-cta {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(162, 155, 254, 0.15) 100%);
        color: #6c5ce7 !important;
        border-color: rgba(108, 92, 231, 0.25);
    }
    
    .login-cta::after {
        color: #6c5ce7;
    }
    
    .signup-cta {
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.15) 100%);
        color: #16a34a !important;
        border-color: rgba(34, 197, 94, 0.25);
    }
    
    .signup-cta::after {
        color: #16a34a;
    }
}

/* Menu Overlay Backdrop (Outside media query for proper z-index) */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
    pointer-events: none;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Show compact auth on tablet, hide on small mobile */
@media (max-width: 640px) {
    .nav-auth-group {
        display: none !important;
    }
}

@media (min-width: 641px) and (max-width: 900px) {
    .nav-auth-group {
        display: flex !important;
    }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a { 
        min-height: 50px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-search-btn {
        min-width: 40px;
        min-height: 40px;
    }
}

/* Hamburger X Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Improved navbar transform performance */
.navbar { 
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 100%);
    padding: 120px 0 80px; /* Normal padding restored */
    position: relative;
    overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ddd6fe" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 0 32px;
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        padding: 0 40px;
    }
}

.hero-content h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1f2937 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: normal;
    overflow: visible;
    text-align: left;
}

.typing-container {
    margin-bottom: 24px;
}

.typing-container h2 {
    font-size: clamp(1.25rem, 4vw, 2.25rem);
    font-weight: 600;
    color: #4b5563;
    line-height: 1.3;
}

#typing-text {
    color: #6c5ce7;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    color: #6b7280;
    max-width: 100%;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-content p {
        max-width: 540px;
        margin-bottom: 48px;
    }
}

/* Hero Search Button */
.hero-search-container {
    margin: 32px 0;
}

.hero-search-btn {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 60px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(108, 92, 231, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.hero-search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(108, 92, 231, 0.05), 
        transparent);
    transition: left 0.6s ease;
}

.hero-search-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 15px 35px rgba(108, 92, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

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

.hero-search-btn:active {
    transform: translateY(-1px) scale(1);
}

.hero-search-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.hero-search-btn:hover .hero-search-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.4);
}

.hero-search-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-search-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.hero-search-hint {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    line-height: 1.4;
}

.hero-search-action {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    color: #6c5ce7;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-search-btn:hover .hero-search-action {
    background: rgba(108, 92, 231, 0.15);
    transform: translateX(4px);
}

.hero-search-action i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-search-btn:hover .hero-search-action i {
    transform: translateX(3px);
}

/* Hero Search Responsive */
@media (max-width: 768px) {
    .hero-search-btn {
        padding: 16px 20px;
        border-radius: 50px;
        gap: 16px;
    }
    
    .hero-search-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .hero-search-text {
        font-size: 16px;
    }
    
    .hero-search-hint {
        font-size: 13px;
    }
    
    .hero-search-action {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-search-btn {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .hero-search-content {
        text-align: center;
    }
    
    .hero-search-action {
        align-self: stretch;
        justify-content: center;
    }
}

/* Modern Button Group Layout */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
    align-items: stretch;
    width: 100%;
}

/* Large devices - horizontal layout */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        width: auto;
    }
}

/* Button size improvements */
.hero-buttons .btn {
    width: 100%;
    min-width: unset;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 28px;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .hero-buttons .btn {
        width: auto;
        min-width: 200px;
        padding: 18px 32px;
    }
}

.hero-buttons .btn-primary {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 700px;
}

/* ==========================
   CYBER WORLD - Geometrik Yazılımsal Dünya
   ========================== */
.hero-cyber-world {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    perspective: 1000px;
    transform-style: preserve-3d;
    border-radius: 50%;
}

/* Particle Canvas Background */
.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 3D Geometric Grid */
.cyber-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.3;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
    animation: gridPulse 3s ease-in-out infinite;
}

.grid-horizontal {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-horizontal:nth-child(2) { top: 25%; }
.grid-horizontal:nth-child(3) { top: 50%; }
.grid-horizontal:nth-child(4) { top: 75%; }

.grid-vertical {
    height: 100%;
    width: 1px;
    top: 0;
}

.grid-vertical:nth-child(6) { left: 33%; }
.grid-vertical:nth-child(7) { left: 66%; }

/* Explicit class-based positions (replaces inline styles) */
.grid-h-25 { top:25%; }
.grid-h-50 { top:50%; }
.grid-h-75 { top:75%; }
.grid-v-33 { left:33%; }
.grid-v-66 { left:66%; }

/* Mobile performance optimizations */
@media (max-width: 768px) {
    .hero-image { min-height: 520px; padding-top: 40px; }
    .hero-cyber-world { height: 520px; max-width: 100%; }
    .cyber-avatar-container { width: 320px; height: 320px; animation-duration: 10s; }
    .holo-ring { animation-duration: 26s; }
    .holo-ring-1 { width: 300px; height:300px; }
    .holo-ring-2 { width: 340px; height:340px; }
    .holo-ring-3 { display:none; }
    .code-orbit { animation: orbitNone 0s linear forwards; opacity:0.85; }
    @keyframes orbitNone { from { transform: none; } to { transform: none; } }
}

@media (max-width: 540px) {
    .hero-image { min-height: 480px; }
    .cyber-avatar-container { width: 280px; height: 280px; }
    .holo-ring-1 { width: 260px; height:260px; }
    .holo-ring-2 { width: 300px; height:300px; }
    .grid-line { animation: none; opacity: 0.22; }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* Main Avatar Container (2x büyük) */
.cyber-avatar-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 5;
    animation: floatAvatar 6s ease-in-out infinite;
}

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

/* Performance: Add will-change to animated elements */
.hero-avatar,
.holo-ring,
.code-orbit,
.data-node {
    will-change: transform;
}

/* Holographic Rings */
.holo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: rotateHolo 20s linear infinite;
}

.holo-ring-1 {
    width: 450px;
    height: 450px;
    border-color: rgba(100, 255, 218, 0.3);
    animation-duration: 15s;
}

.holo-ring-2 {
    width: 500px;
    height: 500px;
    border-color: rgba(167, 139, 250, 0.25);
    animation-duration: 20s;
    animation-direction: reverse;
}

.holo-ring-3 {
    width: 550px;
    height: 550px;
    border-color: rgba(251, 191, 36, 0.2);
    animation-duration: 25s;
}

@keyframes rotateHolo {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Avatar Core (2x boyut) */
.avatar-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(100, 255, 218, 0.5);
    box-shadow: 
        0 0 40px rgba(100, 255, 218, 0.4),
        0 0 80px rgba(167, 139, 250, 0.3),
        inset 0 0 60px rgba(100, 255, 218, 0.2);
    transition: transform 0.3s ease;
}

.avatar-core:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.avatar-glow-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.3), transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.cyber-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.avatar-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
    animation: scanLine 3s linear infinite;
    z-index: 3;
}

@keyframes scanLine {
    from { top: 0; }
    to { top: 100%; }
}

/* Code Orbit System */
.code-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.orbit-1 { animation: orbit360 20s; }
.orbit-2 { animation: orbit360 18s reverse; }
.orbit-3 { animation: orbit360 22s; }
.orbit-4 { animation: orbit360 19s reverse; }
.orbit-5 { animation: orbit360 24s; }
.orbit-6 { animation: orbit360 17s reverse; }
.orbit-7 { animation: orbit360 21s; }
.orbit-8 { animation: orbit360 23s reverse; }

@keyframes orbit360 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Code Blocks */
.code-block {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 16px;
    border: 2px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.code-block:hover {
    transform: translateX(-50%) scale(1.15);
    z-index: 10;
}

.block-icon {
    font-size: 32px;
    line-height: 1;
}

.block-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.block-glow {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.code-block:hover .block-glow {
    opacity: 1;
    animation: blockPulse 1.5s ease-in-out infinite;
}

@keyframes blockPulse {
    0%, 100% { box-shadow: 0 0 20px currentColor; }
    50% { box-shadow: 0 0 40px currentColor; }
}

/* Individual Block Colors */
.block-html { border-color: #e34c26; }
.block-html .block-icon { color: #e34c26; }
.block-html .block-glow { box-shadow: 0 0 30px #e34c26; }

.block-css { border-color: #264de4; }
.block-css .block-icon { color: #264de4; }
.block-css .block-glow { box-shadow: 0 0 30px #264de4; }

.block-js { border-color: #f7df1e; }
.block-js .block-icon { color: #f7df1e; }
.block-js .block-glow { box-shadow: 0 0 30px #f7df1e; }

.block-react { border-color: #61dafb; }
.block-react .block-icon { color: #61dafb; }
.block-react .block-glow { box-shadow: 0 0 30px #61dafb; }

.block-node { border-color: #68a063; }
.block-node .block-icon { color: #68a063; }
.block-node .block-glow { box-shadow: 0 0 30px #68a063; }

.block-git { border-color: #f05032; }
.block-git .block-icon { color: #f05032; }
.block-git .block-glow { box-shadow: 0 0 30px #f05032; }

.block-figma { border-color: #f24e1e; }
.block-figma .block-icon { color: #f24e1e; }
.block-figma .block-glow { box-shadow: 0 0 30px #f24e1e; }

.block-ts { border-color: #3178c6; }
.block-ts .block-icon { color: #3178c6; font-size: 20px; font-weight: 900; }
.block-ts .block-glow { box-shadow: 0 0 30px #3178c6; }

/* Data Nodes (Floating particles) */
.data-nodes {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.data-node {
    position: absolute;
    width: 12px;
    height: 12px;
}

.node-1 { top: 15%; left: 10%; }
.node-2 { top: 20%; right: 15%; }
.node-3 { bottom: 25%; left: 20%; }
.node-4 { bottom: 18%; right: 12%; }

.node-core {
    width: 100%;
    height: 100%;
    background: #64ffda;
    border-radius: 50%;
    box-shadow: 0 0 20px #64ffda;
    animation: nodePulse 2s ease-in-out infinite;
}

.node-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid #64ffda;
    border-radius: 50%;
    animation: nodeExpand 2s ease-out infinite;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes nodeExpand {
    from { transform: scale(0); opacity: 0.8; }
    to { transform: scale(2.5); opacity: 0; }
}

/* Cyber Status Badge */
.cyber-status-badge {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(15, 23, 42, 0.95);
    border: 1.5px solid rgba(100, 255, 218, 0.4);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 10;
    max-width: calc(100% - 40px);
    white-space: nowrap;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
    box-shadow: 0 0 12px #00ff88;
    flex-shrink: 0;
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Cyber World Responsive */
@media (max-width: 1024px) {
    .hero-cyber-world {
        max-width: 650px;
        height: 600px;
    }
    
    .cyber-avatar-container {
        width: 400px;
        height: 400px;
    }
    
    .avatar-core {
        width: 280px;
        height: 280px;
    }
    
    .holo-ring-1 { width: 360px; height: 360px; }
    .holo-ring-2 { width: 400px; height: 400px; }
    .holo-ring-3 { width: 440px; height: 440px; }
    
    .code-orbit {
        width: 400px;
        height: 400px;
    }
    
    .code-block {
        width: 75px;
        height: 75px;
    }
    
    .block-icon { font-size: 26px; }
    .block-label { font-size: 9px; }
}

@media (max-width: 768px) {
    .hero-image {
        min-height: 500px;
    }
    
    .hero-cyber-world {
        max-width: 100%;
        height: 500px;
    }
    
    .cyber-avatar-container {
        width: 320px;
        height: 320px;
    }
    
    .avatar-core {
        width: 220px;
        height: 220px;
    }
    
    .holo-ring-1 { width: 290px; height: 290px; }
    .holo-ring-2 { width: 320px; height: 320px; }
    .holo-ring-3 { width: 350px; height: 350px; }
    
    .code-orbit {
        width: 320px;
        height: 320px;
    }
    
    .code-block {
        width: 60px;
        height: 60px;
    }
    
    .block-icon { font-size: 22px; }
    .block-label { font-size: 8px; }
    
    .cyber-status-badge {
        bottom: -50px;
        padding: 10px 18px;
        max-width: calc(100% - 30px);
    }
    
    .status-text { 
        font-size: 12px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cyber-avatar-container {
        width: 280px;
        height: 280px;
    }
    
    .avatar-core {
        width: 180px;
        height: 180px;
    }
    
    .holo-ring-1 { width: 250px; height: 250px; }
    .holo-ring-2 { width: 280px; height: 280px; }
    .holo-ring-3 { display: none; }
    
    .code-orbit {
        width: 280px;
        height: 280px;
    }
    
    .code-block {
        width: 50px;
        height: 50px;
    }
    
    .block-icon { font-size: 18px; }
    .block-label { display: none; }
}

.profile-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

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

.profile-img {
    text-align: center;
    margin-bottom: 20px;
}

/* Yaratıcı Avatar Tasarımı */
.avatar-container {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 2;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: avatarPulse 3s ease-in-out infinite;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

.avatar-face {
    width: 120px;
    height: 120px;
    background: #fdbcb4;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin-top: -20px;
}

.avatar-hair {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 80px;
    background: #2d3436;
    border-radius: 70px 70px 40px 40px;
    z-index: 1;
}

.eyes {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
}

.eye {
    width: 15px;
    height: 15px;
    background: #2d3436;
    border-radius: 50%;
    position: absolute;
    animation: blink 4s infinite;
}

.eye.left { left: 15px; }
.eye.right { right: 15px; }

.glasses {
    position: absolute;
    top: -5px;
    left: -10px;
    width: 100px;
    height: 40px;
}

.lens {
    width: 35px;
    height: 35px;
    border: 3px solid #2d3436;
    border-radius: 50%;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.left-lens { left: 0; }
.right-lens { right: 0; }

.bridge {
    position: absolute;
    top: 15px;
    left: 38px;
    width: 24px;
    height: 3px;
    background: #2d3436;
    border-radius: 2px;
}

.nose {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #f0a899;
    border-radius: 50%;
}

.mouth {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 12px;
    border: 2px solid #2d3436;
    border-top: none;
    border-radius: 0 0 25px 25px;
    background: #ff6b6b;
}

.avatar-body {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 80px;
    z-index: 0;
}

.shirt {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border-radius: 10px 10px 0 0;
    margin: 0 auto;
    position: relative;
}

.coding-setup {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
}

.terminal-screen {
    width: 110px;
    height: 70px;
    background: #0d1117;
    border-radius: 6px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid #30363d;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.terminal-header {
    background: #161b22;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid #30363d;
}

.terminal-buttons {
    display: flex;
    gap: 2px;
}

.terminal-buttons span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27ca3f; }

.terminal-title {
    font-size: 3px;
    color: #7d8590;
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 4px 3px;
    height: 56px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.code-line {
    font-size: 3px;
    line-height: 4px;
    margin: 1px 0;
    color: #00ff00;
    display: flex;
    align-items: center;
    animation: fadeInCode 3s infinite;
}

.code-line:nth-child(1) { animation-delay: 0s; }
.code-line:nth-child(2) { animation-delay: 0.5s; }
.code-line:nth-child(3) { animation-delay: 1s; }
.code-line:nth-child(4) { animation-delay: 1.5s; }
.code-line:nth-child(5) { animation-delay: 2s; }
.code-line:nth-child(6) { animation-delay: 2.5s; }
.code-line:nth-child(7) { animation-delay: 3s; }

.prompt { color: #00ff00; font-weight: bold; }
.command { color: #58a6ff; }
.keyword { color: #ff7b72; }
.variable { color: #ffa657; }
.function { color: #d2a8ff; }
.string { color: #a5f3fc; }
.operator { color: #00ff00; }
.bracket { color: #f0f6fc; }
.comment { color: #8b949e; font-style: italic; }
.text { color: #00ff00; }
.indent { width: 6px; }

.cursor {
    color: #00ff00;
    animation: blink 1s infinite;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fadeInCode {
    0% { opacity: 0; transform: translateX(-10px); }
    20% { opacity: 1; transform: translateX(0); }
    80% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(10px); }
}

.keyboard {
    width: 120px;
    height: 8px;
    background: #30363d;
    border-radius: 0 0 4px 4px;
    margin: 2px auto 0;
    position: relative;
}

.keyboard-row {
    display: flex;
    gap: 2px;
    padding: 1px 4px;
}

.key {
    width: 8px;
    height: 6px;
    background: #21262d;
    border-radius: 1px;
    border: 1px solid #30363d;
}

.key.active {
    background: #238636;
    box-shadow: 0 0 4px rgba(35, 134, 54, 0.5);
    animation: keyPress 2s infinite;
}

@keyframes keyPress {
    0%, 90% { transform: translateY(0); }
    10% { transform: translateY(1px); }
}

/* Tech Icons Orbit */
.tech-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    animation: rotate 20s linear infinite;
}

.tech-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: counterRotate 20s linear infinite;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.tech-icon i {
    font-size: 1.4rem;
}

.html-icon {
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}
.html-icon i { color: #e34f26; }

.css-icon {
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
}
.css-icon i { color: #1572b6; }

.js-icon {
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}
.js-icon i { color: #f7df1e; background: #2d3436; border-radius: 3px; padding: 2px; }

.react-icon {
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
}
.react-icon i { color: #61dafb; }

/* Animasyonlar */
@keyframes avatarPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(108, 92, 231, 0.4);
    }
}

@keyframes blink {
    0%, 90%, 100% { height: 15px; }
    95% { height: 2px; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(162, 155, 254, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.about .container {
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 50px;
    color: #6c5ce7;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-wrapper {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

/* Profile Card */
.about-profile-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 100%);
}

.profile-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.profile-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    animation: expandRing 3s ease-out infinite;
}

.profile-ring:nth-child(1) {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.profile-ring:nth-child(2) {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

.profile-ring:nth-child(3) {
    width: 220px;
    height: 220px;
    animation-delay: 2s;
}

.profile-avatar {
    position: relative;
    z-index: 2;
}

.profile-video {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.profile-avatar:hover .profile-video {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.4);
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.profile-avatar:hover .profile-img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.4);
}

.profile-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3436;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00d95f;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.profile-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 20px;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-primary {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.badge-secondary {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
}

.badge-tertiary {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6c5ce7 0%, #a29bfe 100%);
    opacity: 1;
    transition: all 0.3s ease;
}

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

.about-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
}

.about-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.about-card p {
    color: #636e72;
    line-height: 1.7;
    font-size: 1rem;
}

/* Specific Card Styles */
.story-card .card-icon {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.mission-card .card-icon {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

.expertise-card .card-icon {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.expertise-list {
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    transform: translateX(5px);
}

.expertise-item i {
    color: #6c5ce7;
    font-size: 1.1rem;
}

.expertise-item span {
    color: #2d3436;
    font-weight: 500;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(162, 155, 254, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.15);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

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

.stat-content h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    color: #6c5ce7;
    font-weight: 700;
    margin-left: 5px;
}

.stat-content p {
    color: #636e72;
    font-weight: 500;
    margin-top: 10px;
    font-size: 1rem;
}

/* Quick Info */
.about-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quick-info-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quick-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.12);
}

.quick-info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c5ce7;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.85rem;
    color: #95a5a6;
    font-weight: 500;
}

.info-value {
    font-size: 1.05rem;
    color: #2d3436;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .about-profile-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .profile-image-wrapper {
        justify-self: center;
    }
    
    .profile-info h3 {
        font-size: 2rem;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
    
    .about-card h4 {
        font-size: 1.3rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-content h3 {
        font-size: 2.5rem;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-quick-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-info-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .about-wrapper {
        gap: 30px;
    }
    
    .about-profile-card {
        padding: 25px 15px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .profile-ring:nth-child(1) { width: 140px; height: 140px; }
    .profile-ring:nth-child(2) { width: 160px; height: 160px; }
    .profile-ring:nth-child(3) { width: 180px; height: 180px; }
    
    .profile-info h3 {
        font-size: 1.6rem;
    }
    
    .profile-title {
        font-size: 1rem;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .about-card {
        padding: 20px 15px;
    }
    
    .about-card h4 {
        font-size: 1.2rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .expertise-item {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .expertise-item i {
        font-size: 1rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .stat-content h3 {
        font-size: 2.2rem;
    }
    
    .stat-plus {
        font-size: 1.6rem;
    }
    
    .stat-content p {
        font-size: 0.95rem;
    }
    
    .quick-info-item {
        padding: 18px 15px;
    }
    
    .quick-info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .info-label {
        font-size: 0.8rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
}

/* Skills Section */
.skills {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 50%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.skills::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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ddd6fe" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.skills .container {
    position: relative;
    z-index: 1;
}

.skills-container {
    display: grid;
    gap: 40px;
}

/* Skills Summary Cards */
.skills-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.summary-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.15);
}

.summary-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
}

.summary-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.summary-card p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.summary-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.summary-techs span {
    background: #f8f9ff;
    color: #6c5ce7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.summary-card.frontend .summary-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.summary-card.design .summary-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.summary-card.optimization .summary-icon { background: linear-gradient(135deg, #4facfe, #00f2fe); }



/* Technical Skills Showcase */
.tech-showcase {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.08);
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 30px;
    text-align: center;
}

.tech-progress-list {
    display: grid;
    gap: 25px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #f0f3ff;
    transform: translateX(5px);
}

.tech-info {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.tech-info i {
    font-size: 1.5rem;
    width: 30px;
}

.tech-info .fab.fa-html5 { color: #e34f26; }
.tech-info .fab.fa-css3-alt { color: #1572b6; }
.tech-info .fab.fa-js-square { color: #f7df1e; }
.tech-info .fab.fa-react { color: #61dafb; }
.tech-info .fab.fa-figma { color: #f24e1e; }
.tech-info .fab.fa-git-alt { color: #f05032; }

.tech-info span {
    font-weight: 500;
    color: #2d3436;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 10px;
    width: 0;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c5ce7;
    min-width: 40px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .skills-summary {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .summary-card {
        padding: 30px;
        min-height: 300px;
    }
    
    .tech-showcase {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .skills-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .summary-card {
        padding: 25px;
        min-height: unset;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tech-showcase {
        padding: 25px;
    }
    
    .tech-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tech-info {
        min-width: auto;
    }
    
    .progress-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .summary-card {
        padding: 20px;
    }
    
    .summary-card h3 {
        font-size: 1.3rem;
    }
    
    .tech-showcase {
        padding: 20px;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.packages-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.packages-filters .filter-btn {
    padding: 12px 28px;
    background: white;
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 50px;
    color: #636e72;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.packages-filters .filter-btn:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border-color: #6c5ce7;
    color: #6c5ce7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.15);
}

.packages-filters .filter-btn.active {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-color: #6c5ce7;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.packages-grid {
    display: grid;
    --card-min: 300px;
    grid-template-columns: repeat(auto-fit, minmax(var(--card-min), 1fr));
    gap: clamp(20px, 3vw, 40px);
    position: relative;
    z-index: 1;
    align-items: stretch;
}

@container (min-width: 1100px) {
    .packages-grid { --card-min: 340px; }
}

@media (max-width: 640px) {
    .packages-grid { --card-min: 260px; gap: 22px; }
}
@media (max-width: 360px) {
    .packages-grid { --card-min: 220px; gap: 18px; }
    .package-item { padding: 32px 26px; }
}

/* Package Card */
.package-item {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.3);
}

.package-item:hover::before {
    opacity: 1;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.package-badge.popular {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.package-badge.featured {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.package-badge.premium {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.package-badge.custom {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

/* Package Icon */
.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c5ce7;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.package-item:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

/* Package Header */
.package-header {
    margin-bottom: 25px;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 12px;
}

.package-description {
    color: #636e72;
    line-height: 1.6;
    font-size: 1rem;
}

/* Package Price */
.package-price {
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(162, 155, 254, 0.05) 100%);
    border-radius: 15px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.price-period {
    color: #95a5a6;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

/* Package Features */
.package-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.package-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3ff;
    transition: all 0.3s ease;
}

.package-features .feature-item:last-child {
    border-bottom: none;
}

.package-features .feature-item:hover {
    padding-left: 5px;
    background: rgba(108, 92, 231, 0.02);
}

.package-features .feature-item i {
    color: #00b894;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.package-features .feature-item span {
    color: #2d3436;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Package Footer */
.package-footer {
    margin-top: auto;
}

.btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.4);
}

.btn-package i {
    transition: transform 0.3s ease;
}

.btn-package:hover i {
    transform: translateX(5px);
}

.btn-package.primary {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    box-shadow: 0 8px 20px rgba(253, 121, 168, 0.3);
}

.btn-package.primary:hover {
    box-shadow: 0 12px 30px rgba(253, 121, 168, 0.4);
}

.btn-package.premium {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-package.custom {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-item {
        padding: 35px 25px;
    }
    
    .package-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .package-header h3 {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .packages-filters {
        gap: 10px;
    }
    
    .packages-filters .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .package-item {
        padding: 30px 20px;
    }
    
    .package-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .package-header h3 {
        font-size: 1.4rem;
    }
    
    .package-description {
        font-size: 0.95rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .package-features .feature-item {
        padding: 10px 0;
    }
    
    .package-features .feature-item span {
        font-size: 0.9rem;
    }
    
    .btn-package {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* Skills Summary Cards */
.skills-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.summary-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #6c5ce7;
}

.summary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.summary-card:hover .summary-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.summary-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 12px;
}

.summary-card p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
}

.summary-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.summary-techs span {
    background: #f8f9ff;
    color: #6c5ce7;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.summary-techs span::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 ease;
}

.summary-techs span:hover::before {
    left: 100%;
}

.summary-techs span:hover {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
    border-color: #6c5ce7;
}

/* Subtle Floating Animation */
/* Skills Card Animations - Simplified */


/* === Gereksiz Skill Modal CSS Kaldırıldı === */

/* Toast Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.skill-toast {
    font-family: 'Poppins', sans-serif;
}

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

.toast-level {
    margin-top: 5px;
    color: #6c5ce7;
    font-size: 0.9rem;
}

/* Modal Animations - Keep minimal ones */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Remove conflicting styles - already defined above */

/* Responsive Design for Skills */
@media (max-width: 1024px) {
    .skills-summary {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .summary-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    
    .skills-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .summary-card {
        padding: 25px;
        margin: 0 10px;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .summary-techs span {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .skills-summary {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .summary-card {
        padding: 20px;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .summary-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .summary-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .summary-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .summary-techs span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

.skill-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
}

/* === Skill Modal Media Query Kaldırıldı === */

@media (max-width: 480px) {
    .skills-summary {
        margin-top: 30px;
    }
    
    .summary-card {
        padding: 18px;
    }
}

/* Services Section */
.services {
    background: #f8f9fa;
    position: relative; /* Rozetler için konumlandırma */
    overflow: hidden;
}

/* Dekoratif AI Rozetleri */
.ai-badges { position: absolute; inset:0; pointer-events:none; z-index:0; }
.ai-badge { position:absolute; display:flex; align-items:center; justify-content:center; border-radius:50%;
    filter: drop-shadow(0 6px 18px rgba(108,92,231,.25)); opacity:0; transform:scale(.6) translateY(10px);
    transition: opacity .9s cubic-bezier(.25,.8,.25,1), transform .9s cubic-bezier(.25,.8,.25,1);
    mix-blend-mode:screen; }
.ai-badge-img { width:100%; height:100%; object-fit:cover; border-radius:50%;
    background:radial-gradient(circle at 35% 35%, rgba(255,255,255,.85), rgba(108,92,231,.55));
    box-shadow:0 0 0 2px rgba(255,255,255,.4), 0 4px 18px rgba(108,92,231,.35);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.ai-badge.visible { opacity:.85; transform:scale(1) translateY(0); }
@media (prefers-reduced-motion: reduce){ .ai-badge { transition:none; } }


.services-grid {
    display: grid;
    --svc-min: 260px;
    grid-template-columns: repeat(auto-fit, minmax(var(--svc-min), 1fr));
    gap: clamp(18px, 2.5vw, 34px);
    align-items: stretch;
}
@media (max-width: 360px) { .services-grid { --svc-min: 220px; gap: 18px; } }

.service-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.service-card p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    color: #636e72;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6c5ce7;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 20px;
}

.contact-info p {
    color: #636e72;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 10px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method h4 {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 5px;
}

.contact-method p {
    color: #636e72;
    margin: 0;
}

.social-links h4 {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #5a4fcf;
    transform: translateY(-3px);
}

.contact-form-container {
    background: #f8f9ff;
    padding: 40px;
    border-radius: 15px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c5ce7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2d3436;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-section h3 span {
    color: #6c5ce7;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #a29bfe;
}

.footer-section p {
    color: #b2bec3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #a29bfe;
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a29bfe;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #6c5ce7;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #636e72;
    padding-top: 20px;
    text-align: center;
    color: #b2bec3;
}

/* Scroll to Top Button - New Creative Design */
.scroll-to-top-new {
    position: fixed;
    bottom: 140px;
    right: 32px;
    width: 68px;
    height: 68px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.7) rotate(-10deg);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    isolation: isolate;
}

.scroll-to-top-new.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) rotate(0deg);
}

.scroll-circle {
    position: relative;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(251,252,255,.98) 100%),
        radial-gradient(circle at 50% 50%, rgba(108,92,231,.02) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 2px 8px rgba(108, 92, 231, 0.08),
        0 6px 20px rgba(108, 92, 231, 0.12),
        0 12px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(108,92,231,.4) 0%, 
        rgba(162,155,254,.5) 50%,
        rgba(108,92,231,.4) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.scroll-progress {
    position: absolute;
    top: -1px;
    left: -1px;
    transform: rotate(-90deg);
    filter: drop-shadow(0 3px 10px rgba(108, 92, 231, 0.35));
    transition: filter 0.3s ease;
}

.scroll-progress-bg {
    fill: none;
    stroke: rgba(108, 92, 231, 0.12);
    stroke-width: 3.5;
}

.scroll-progress-fill {
    fill: none;
    stroke: url(#scrollGradient);
    stroke-width: 3.5;
    stroke-dasharray: 201;
    stroke-dashoffset: 201;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 4px rgba(108, 92, 231, 0.4));
}

.scroll-icon {
    position: relative;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6c5ce7 0%, #8b7ff5 50%, #a29bfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 
        0 3px 12px rgba(108, 92, 231, 0.25),
        0 6px 24px rgba(108, 92, 231, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.3) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-icon i {
    position: relative;
    z-index: 1;
    animation: scrollBounce 2.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

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

.scroll-tooltip {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) scale(0) translateY(-5px);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(44, 62, 80, 0.98) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(30, 41, 59, 0.98);
}

.scroll-to-top-new:hover .scroll-tooltip {
    transform: translateX(-50%) scale(1) translateY(0);
    opacity: 1;
}

.scroll-to-top-new:hover .scroll-icon {
    background: linear-gradient(135deg, #5b4cd6 0%, #7a6ee4 50%, #9189ed 100%);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 
        0 4px 16px rgba(108, 92, 231, 0.35),
        0 8px 32px rgba(108, 92, 231, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.scroll-to-top-new:hover .scroll-icon::before {
    opacity: 1;
}

.scroll-to-top-new:hover .scroll-icon i {
    transform: translateY(-6px) scale(1.1);
}

.scroll-to-top-new:hover .scroll-circle {
    transform: scale(1.05);
    box-shadow: 
        0 3px 12px rgba(108, 92, 231, 0.12),
        0 8px 28px rgba(108, 92, 231, 0.18),
        0 16px 50px rgba(0, 0, 0, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 1);
}

.scroll-to-top-new:hover .scroll-circle::before {
    opacity: 0.9;
}

.scroll-to-top-new:hover .scroll-progress {
    filter: drop-shadow(0 4px 14px rgba(108, 92, 231, 0.5));
}

.scroll-to-top-new:active .scroll-icon {
    transform: scale(0.95) rotate(-3deg);
    transition-duration: 0.1s;
}

.scroll-to-top-new:active .scroll-circle {
    transform: scale(0.98);
    transition-duration: 0.1s;
}

/* Gradient definition for progress circle */
.scroll-to-top-new::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 0;
    height: 0;
}

/* SVG Gradient */
@supports (filter: drop-shadow(0 0 0 transparent)) {
    .scroll-progress-fill {
        stroke: #6c5ce7;
    }
}

/* ==========================================
   MODERN SEARCH SYSTEM
   ========================================== */

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 100%;
    max-width: 700px;
    margin: 80px auto 0;
    background: white;
    border-radius: 24px;
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: searchSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes searchSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Search Header */
.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.search-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
    font-size: 16px;
}

.search-brand i {
    color: #667eea;
    font-size: 18px;
}

.search-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.search-close:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.05);
}

/* Search Input */
.search-input-container {
    padding: 0 24px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.search-input-wrapper:focus-within {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within .search-icon {
    color: #667eea;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 16px 50px 16px 50px;
    font-size: 18px;
    color: #1e293b;
    outline: none;
    font-weight: 400;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-voice,
.search-clear {
    position: absolute;
    right: 50px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.search-clear {
    right: 16px;
    display: none;
}

.search-voice:hover,
.search-clear:hover {
    background: #e2e8f0;
    color: #374151;
}

/* Search Suggestions */
.search-suggestions {
    max-height: 400px;
    overflow-y: auto;
    padding-bottom: 16px;
}

.search-suggestion-group {
    margin-bottom: 20px;
}

.suggestion-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    padding: 0 8px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: translateX(4px);
}

.suggestion-icon {
    width: 18px;
    font-size: 14px;
    color: #667eea;
}

.suggestion-icon.hot {
    color: #ef4444;
    animation: pulse 2s ease-in-out infinite;
}

.suggestion-icon.trending {
    color: #10b981;
}

.suggestion-item span {
    color: #374151;
    font-weight: 500;
    font-size: 15px;
}

/* Search Results */
.search-results {
    display: none;
    max-height: 400px;
    overflow-y: auto;
    padding: 0 16px 16px;
}

.search-results-header {
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    border: 1px solid transparent;
}

.search-result-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.result-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.result-content {
    flex: 1;
    min-width: 0;
}

.result-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.4;
}

.result-title mark {
    background: linear-gradient(120deg, #fef3c7 0%, #fcd34d 100%);
    color: #92400e;
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: 700;
}

.result-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
    line-height: 1.4;
}

.result-description mark {
    background: linear-gradient(120deg, #dbeafe 0%, #93c5fd 100%);
    color: #1d4ed8;
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: 600;
}

.result-category {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.result-arrow {
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-result-item:hover .result-arrow {
    color: #667eea;
    transform: translateX(4px);
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.no-results i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.no-results p {
    font-size: 14px;
    line-height: 1.5;
}

/* Search Footer */
.search-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.search-shortcuts {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shortcut-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.shortcut-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
}

.shortcut-item kbd {
    background: white;
    color: #374151;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-credits {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-search-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .search-container {
        margin: 16px;
        max-width: calc(100% - 32px);
        border-radius: 20px;
    }
    
    .search-header {
        padding: 16px 20px 12px;
    }
    
    .search-brand {
        font-size: 15px;
    }
    
    .search-brand i {
        font-size: 16px;
    }
    
    .search-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .search-input-container {
        padding: 0 20px;
    }
    
    .search-input {
        font-size: 16px;
        padding: 14px 45px 14px 45px;
    }
    
    .search-suggestions {
        max-height: 300px;
        padding-bottom: 12px;
    }
    
    .suggestion-item {
        padding: 14px 20px;
        min-height: 48px;
    }
    
    .search-result-item {
        padding: 14px 20px;
        gap: 12px;
        min-height: 48px;
    }
    
    .search-footer {
        padding: 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .search-shortcuts {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .search-overlay {
        padding: 0;
    }
    
    .search-container {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
        min-height: 100vh;
        margin: 0;
        animation: searchSlideUp 0.3s ease-out;
    }
    
    @keyframes searchSlideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .search-header {
        padding: 16px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
    }
    
    .search-brand {
        font-size: 14px;
    }
    
    .search-close {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .search-input-container {
        padding: 0 16px;
    }
    
    .search-input {
        font-size: 16px;
        padding: 14px 42px 14px 42px;
    }
    
    .search-icon {
        left: 12px;
        font-size: 16px;
    }
    
    .search-voice {
        right: 42px;
        width: 36px;
        height: 36px;
    }
    
    .search-clear {
        right: 12px;
        width: 36px;
        height: 36px;
    }
    
    .search-suggestions {
        padding: 0 8px 12px;
        max-height: calc(100vh - 200px);
    }
    
    .suggestion-item {
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .search-results {
        padding: 0 8px 12px;
        max-height: calc(100vh - 200px);
    }
    
    .search-result-item {
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .search-footer {
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    
    .search-shortcuts {
        display: none; /* Hide keyboard shortcuts on mobile */
    }
    
    .search-credits {
        font-size: 11px;
    }
}

/* ==========================================
   AI ASSISTANT CHAT WIDGET
   ========================================== */

/* AI Assistant Highlight Animation */
@keyframes highlight {
    0% { background-color: transparent; }
    50% { background-color: rgba(102, 126, 234, 0.1); }
    100% { background-color: transparent; }
}

.ai-assistant {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Dikey hizalama: aynı X, alt kısım */
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 640px) {
    .scroll-to-top { 
        right: 21px; 
        bottom: 86px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    .ai-assistant { 
        right: 16px; 
        bottom: 16px; 
    }
    .assistant-avatar {
        width: 60px;
        height: 60px;
    }
}

/* Assistant Toggle Button */
.assistant-toggle {
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.assistant-toggle:hover {
    transform: translateY(-2px);
}

.assistant-toggle:active {
    transform: translateY(0) scale(0.95);
}

.assistant-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    border: 3px solid white;
}

/* Avatar image layering */
.assistant-avatar-img,
.assistant-avatar-img-small,
.assistant-avatar-img-tiny {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Hide legacy vector face when image present */
.assistant-avatar .avatar-face,
.assistant-avatar-small .avatar-face-small,
.assistant-avatar-tiny .avatar-face-tiny { display: none; }

.assistant-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

/* Animated Avatar Face */
.avatar-face {
    position: relative;
    width: 40px;
    height: 40px;
}

.avatar-eyes {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.eye {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 3s infinite;
}

.avatar-mouth {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 12px 12px;
    animation: smile 2s ease-in-out infinite;
}

/* Pulse Animation */
.pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
    border-color: rgba(118, 75, 162, 0.3);
}

/* Enhanced Status Bubble */
.assistant-status {
    position: absolute;
    bottom: 85px;
    right: -5px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 50%, 
        rgba(241, 245, 249, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    width: 320px;
    opacity: 0;
    transform: translateY(15px) scale(0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1001;
    overflow: hidden;
}

.assistant-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #667eea 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.assistant-status::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.status-header {
    display: flex;
    align-items: center;
    padding: 16px 20px 12px;
    gap: 12px;
}

.status-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.status-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.status-subtitle {
    font-size: 13px;
    color: #10b981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    position: relative;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.status-content {
    padding: 0 20px 18px;
}

.status-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

/* Interactive Feature Item Hover */
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
    transform: translateX(4px);
}

.feature-item i {
    width: 16px;
    color: #667eea;
    font-size: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    color: #5a67d8;
}.status-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.cta-text {
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.cta-arrow {
    color: white;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.status-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Enhanced Hover Effects */
.assistant-toggle:hover .assistant-status {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Hide status bubble when chat window is open */
.chat-window.active ~ .assistant-toggle .assistant-status,
.ai-assistant.chat-open .assistant-status {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.assistant-toggle:hover .assistant-avatar {
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(102, 126, 234, 0.3),
        0 0 0 8px rgba(102, 126, 234, 0.1);
}

.assistant-toggle:hover .pulse-ring {
    animation-duration: 1.5s;
}

.assistant-toggle:hover .avatar-eyes .eye {
    animation: eyeBlink 3s ease-in-out infinite;
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.status-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.chat-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.assistant-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.assistant-avatar-small {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.avatar-face-small {
    position: relative;
    width: 25px;
    height: 25px;
}

.avatar-eyes-small {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.eye-small {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: blink 4s infinite;
}

.avatar-mouth-small {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    border: 1px solid white;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.assistant-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 50%;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 10px;
    animation: messageSlide 0.3s ease-out;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    flex-shrink: 0;
}

.assistant-avatar-tiny {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.avatar-face-tiny {
    position: relative;
    width: 18px;
    height: 18px;
}

.avatar-eyes-tiny {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.eye-tiny {
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
}

.avatar-mouth-tiny {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 3px;
    border: 1px solid white;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.message-content {
    max-width: 260px;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.assistant-message .message-content {
    background: white;
    color: #374151;
    border-bottom-left-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 6px;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.3);
}

.message-content ul {
    margin: 8px 0;
    padding-left: 20px;
}

.message-content li {
    margin: 4px 0;
}

.message-time {
    align-self: flex-end;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

.user-message .message-time {
    align-self: flex-end;
    text-align: right;
}

/* Quick Actions */
.quick-actions {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.quick-action {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

.quick-action:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
}

.quick-action i {
    font-size: 14px;
}

/* Chat Input */
.chat-input-container {
    padding: 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.chat-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 4px 4px 4px 20px;
    transition: all 0.2s ease;
}

.chat-input-wrapper:focus-within {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    color: #374151;
    padding: 12px 0;
    font-family: inherit;
}

.chat-input::placeholder {
    color: #9ca3af;
}

.send-button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
}

.send-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.input-counter {
    text-align: right;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

@keyframes smile {
    0%, 50%, 100% {
        border-radius: 0 0 12px 12px;
    }
    25%, 75% {
        border-radius: 0 0 20px 20px;
    }
}

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

/* Responsive Design for AI Assistant */
@media (max-width: 768px) {
    .ai-assistant {
        bottom: 20px;
        right: 20px;
        z-index: 9999;
    }
    
    .assistant-avatar {
        width: 60px;
        height: 60px;
        box-shadow: 0 6px 24px rgba(102, 126, 234, 0.35);
    }
    
    /* Hide status bubble completely on mobile - click to open chat */
    .assistant-status {
        display: none !important;
    }
    
    /* Chat window - full screen on mobile */
    .chat-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        z-index: 10000;
    }
    
    .chat-header {
        padding: 16px 20px;
        border-radius: 0;
    }
    
    .assistant-details h4 {
        font-size: 16px;
    }
    
    .status-indicator {
        font-size: 12px;
    }
    
    .chat-messages {
        padding: 20px 16px;
        gap: 16px;
        flex: 1;
        overflow-y: auto;
    }
    
    .message {
        max-width: 90%;
    }
    
    .message-content {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
    }
    
    .message-content p {
        margin: 0 0 8px 0;
    }
    
    .message-content p:last-child {
        margin-bottom: 0;
    }
    
    .message-content ul {
        margin: 8px 0;
        padding-left: 20px;
    }
    
    .message-content li {
        margin: 4px 0;
        font-size: 13px;
    }
    
    .message-time {
        font-size: 11px;
        margin-top: 4px;
    }
    
    .quick-actions {
        padding: 16px;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }
    
    .quick-action {
        padding: 12px;
        font-size: 12px;
        min-height: 44px;
        justify-content: center;
        text-align: center;
    }
    
    .quick-action i {
        display: none;
    }
    
    .chat-input-container {
        padding: 16px;
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
    
    .chat-input-wrapper {
        padding: 4px 4px 4px 16px;
        border-radius: 24px;
    }
    
    .chat-input {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .send-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .ai-assistant {
        bottom: 16px;
        right: 16px;
    }
    
    .assistant-avatar {
        width: 56px;
        height: 56px;
    }
    
    .pulse-ring {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    
    .chat-header {
        padding: 14px 16px;
    }
    
    .assistant-avatar-small { 
        width: 36px; 
        height: 36px; 
    }
    
    .assistant-avatar-tiny { 
        width: 28px; 
        height: 28px; 
    }
    
    .assistant-details h4 {
        font-size: 15px;
    }
    
    .status-indicator {
        font-size: 11px;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
    }
    
    .chat-messages {
        padding: 16px 12px;
        gap: 14px;
    }
    
    .message-content {
        padding: 11px 14px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .message-content li {
        font-size: 13px;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
        padding: 14px 12px;
        gap: 10px;
    }
    
    .quick-action {
        padding: 14px;
        font-size: 13px;
        min-height: 48px;
    }
    
    .chat-input-container {
        padding: 14px 12px;
        padding-bottom: max(14px, env(safe-area-inset-bottom));
    }
    
    .chat-input-wrapper {
        padding: 3px 3px 3px 14px;
    }
    
    .chat-input {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .send-button {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Fix for landscape mobile */
@media (max-width: 812px) and (orientation: landscape) {
    .chat-messages {
        padding: 12px;
        gap: 12px;
    }
    
    .message-content {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .quick-actions {
        padding: 10px 12px;
        gap: 8px;
        grid-template-columns: 1fr 1fr;
    }
    
    .quick-action {
        padding: 10px;
        font-size: 11px;
        min-height: 36px;
    }
    
    .chat-input-container {
        padding: 10px 12px;
    }
}

/* Responsive Design - Navbar & Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 4px;
        border-radius: 0;
        border: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        border-radius: 12px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
        background: #6c5ce7;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
        background: #6c5ce7;
    }
    
    /* Nav auth group for mobile */
    .nav-auth-group {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #e5e7eb;
    }
    
    .nav-auth-group .btn-auth {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
        justify-content: center;
    }
    
    /* Mobile menu inline auth links */
    .nav-auth-inline {
        display: flex !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        min-height: 52px;
    }
    
    .consultation-cta-hero {
        justify-content: center;
        margin: 32px 0 24px 0;
    }
    
    .btn-consultation-hero {
        max-width: 100%;
        padding: 16px 24px;
        font-size: 0.95rem;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .consultation-text {
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Avatar responsive için tablet */
    .avatar-container {
        width: 180px;
        height: 180px;
    }
    
    .avatar-circle {
        width: 160px;
        height: 160px;
    }
    
    .tech-orbit {
        width: 240px;
        height: 240px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo-img {
        width: 36px;
        height: 36px;
    }
    
    .brand-text {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        top: 65px;
        padding: 20px 16px;
        max-height: calc(100vh - 65px);
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
        min-height: 44px;
    }
    
    .nav-auth-group {
        margin-top: 10px;
        padding-top: 10px;
        gap: 8px;
    }
    
    .nav-auth-group .btn-auth {
        min-height: 46px;
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        gap: 32px;
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 3rem);
        margin-bottom: 12px;
    }
    
    .typing-container h2 {
        font-size: clamp(1.1rem, 5vw, 1.8rem);
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        min-width: auto;
        min-height: 48px;
    }
    
    .consultation-cta-hero {
        margin: 28px 0 20px 0;
    }
    
    .btn-consultation-hero {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .consultation-text {
        gap: 4px;
    }
    
    .main-text {
        font-size: 0.9rem;
    }
    
    .sub-text {
        font-size: 0.75rem;
    }
    
    .hero-auth-cta {
        margin-top: 24px;
        padding: 16px;
    }
    
    .hero-auth-text {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .hero-auth-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .btn-auth--hero {
        width: 100%;
        min-height: 46px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Package cards mobile */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .package-item {
        padding: 24px 20px;
    }
    
    .package-header h3 {
        font-size: 1.4rem;
    }
    
    .package-price .price-amount {
        font-size: 2rem;
    }
    
    .btn-package {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 48px;
    }
    
    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    /* Contact mobile */
    .contact-content {
        gap: 32px;
    }
    
    .contact-form-container {
        padding: 24px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 48px 0 28px;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .footer-section p,
    .footer-section li a {
        font-size: 0.9rem;
    }
    
    /* Scroll to top mobile */
    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 80px;
        right: 22px;
        font-size: 1.05rem;
    }
    
    /* Avatar responsive için mobil */
    .avatar-container {
        width: 160px;
        height: 160px;
    }
    
    .avatar-circle {
        width: 140px;
        height: 140px;
    }
    
    .tech-orbit {
        width: 220px;
        height: 220px;
    }
    
    .tech-icon {
        width: 36px;
        height: 36px;
    }
    
    .tech-icon i {
        font-size: 1.1rem;
    }
    
    /* Skills mobile */
    .skills-grid {
        gap: 20px;
    }
    
    .skill-card {
        padding: 24px 20px;
    }
    
    /* About mobile */
    .about-wrapper {
        gap: 32px;
    }
    
    .about-profile-card {
        padding: 28px 24px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 16px;
    }
}

/* Small landscape devices (phones in landscape) */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        gap: 24px;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .ai-assistant-chat-window.visible {
        max-height: calc(100vh - 80px);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #6c5ce7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #6c5ce7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a4fcf;
}

/* ===== EXTREME MOBILE OPTIMIZATION ===== */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    /* Force single column layout */
    .skills-grid,
    .services-grid,
    .portfolio-grid,
    .skills-summary {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Ensure cards don't exceed screen width */
    .skill-card,
    .service-card,
    .package-item,
    .summary-card {
        max-width: 100%;
        margin: 0;
        padding: 15px;
    }
    
    /* Navigation adjustments */
    .nav-menu {
        width: 100vw;
        left: 0;
        right: 0;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 60px 0;
    }
    
    .floating-elements {
        display: none; /* Hide floating elements on small screens */
    }
    
    .profile-card {
        padding: 25px;
        transform: none !important; /* Disable parallax on mobile */
    }
    
    .float-element {
        width: 40px;
        height: 40px;
    }
    
    .float-element i {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    /* Section padding adjustments */
    .section-padding {
        padding: 60px 0;
    }
    
    /* Disable floating elements for performance */
    .floating-elements {
        display: none;
    }
    
    /* Preview windows in portfolio */
    .preview-window {
        width: 100%;
        max-width: 250px;
        height: 120px;
    }
    
    /* Tech badges */
    .tech-badge,
    .summary-techs span {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    /* Touch-friendly buttons */
    .btn,
    .filter-btn,
    .btn-link {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Hamburger menu touch area */
    .hamburger {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .skill-card,
    .service-card,
    .package-item,
    .summary-card {
        padding: 12px;
        border-radius: 12px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    /* Ultra-small font adjustments */
    body {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .skill-card h3,
    .service-card h3 {
        font-size: 1.1rem;
    }
}

/* ==========================================
   CONSULTATION SECTION STYLES
========================================== */

.consultation {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

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

.consultation-intro {
    margin-bottom: 60px;
}

.consultant-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.1);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.consultant-img,
.consultant-video {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #6c5ce7;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
    animation: consultantFloat 3s ease-in-out infinite;
    display: block;
    margin: 0 auto;
}

@keyframes consultantFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.consultant-img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.5);
}

.consultant-info h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consultant-info p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 25px;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 15px;
    background: linear-gradient(135deg, #f8f9ff, #e8e6ff);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.15);
}

.benefit-item span {
    font-weight: 500;
    color: #2d3436;
    font-size: 0.95rem;
    line-height: 1.4;
}

.consultation-process {
    margin-bottom: 50px;
}

.consultation-process h3 {
    text-align: center;
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 15px;
}

.step-content p {
    color: #636e72;
    line-height: 1.6;
}

.consultation-cta {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 70px rgba(108, 92, 231, 0.15);
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #2d3436;
    margin-bottom: 15px;
}

.cta-content > p {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 40px;
}

.project-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    background: #f8f9ff;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.1), transparent);
    transition: left 0.5s ease;
}

.option-card:hover::before {
    left: 100%;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: #6c5ce7;
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.2);
}

.option-card.selected {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border-color: #6c5ce7;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.3);
}

.option-card.selected .option-icon {
    transform: scale(1.2);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.option-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: inherit;
}

.option-card p {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.8;
}

.consultation-form {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.btn-consultation {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.25);
    min-width: 280px;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(108, 92, 231, 0.35);
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.btn-consultation i {
    font-size: 1rem;
}

/* ========================================
   INTERACTIVE CONSULTATION QUESTIONNAIRE
   ======================================== */

.consultation-questionnaire {
    margin-top: 80px;
    width: 100%;
}

/* Ultra Professional Container */
.questionnaire-container-pro {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 
        0 0 0 1px rgba(0,0,0,.03),
        0 4px 6px -2px rgba(0,0,0,.03),
        0 12px 24px -4px rgba(0,0,0,.08),
        0 24px 48px -12px rgba(0,0,0,.12);
    position: relative;
    overflow: hidden;
}

.questionnaire-container-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 50%, #6c5ce7 100%);
    background-size: 200% 100%;
    animation: shimmerGradient 3s linear infinite;
}

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

/* Advanced Progress System */
.consultation-progress-pro {
    margin-bottom: 60px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.progress-label {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 700;
}

.progress-current {
    font-size: 32px;
    color: #6c5ce7;
    line-height: 1;
}

.progress-separator {
    font-size: 24px;
    color: #cbd5e0;
    margin: 0 4px;
}

.progress-total {
    font-size: 20px;
    color: #a0aec0;
}

.progress-percentage {
    font-size: 18px;
    font-weight: 700;
    color: #6c5ce7;
    background: linear-gradient(135deg, #f0e7ff, #e9d8fd);
    padding: 8px 20px;
    border-radius: 100px;
}

.progress-track {
    position: relative;
    height: 12px;
    background: #f7fafc;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,.06);
}

.progress-fill-pro {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 100px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    border-radius: 100px;
    animation: progressShine 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes progressShine {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
}

.step-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}

.step-dot-pro {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.step-dot-pro.active {
    background: #6c5ce7;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.2);
    transform: scale(1.2);
}

.step-dot-pro.completed {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-dot-pro.completed::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: white;
    font-weight: bold;
}

/* Question Stage - Modern Design */
.question-stage {
    min-height: 500px;
    position: relative;
}

.question-card-pro {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.question-card-pro.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.question-card-pro.exit {
    animation: questionExit 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes questionExit {
    to {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

.question-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f0e7ff, #e9d8fd);
    border-radius: 100px;
    color: #6c5ce7;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-category i {
    font-size: 16px;
}

.question-title-pro {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.question-desc-pro {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 40px;
}

@keyframes slideInQuestion {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.question-card.fade-out {
    animation: slideOutQuestion 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutQuestion {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

.question-header {
    margin-bottom: 30px;
}

.question-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.question-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
}

.question-subtitle {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
}

/* Answer Grid - Premium Card Design */
.answer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.answer-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.answer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.answer-card:hover {
    border-color: #6c5ce7;
    background: linear-gradient(135deg, #f8f7ff, #ffffff);
    transform: translateY(-8px);
    box-shadow: 
        0 0 0 1px rgba(108, 92, 231, 0.1),
        0 12px 32px -8px rgba(108, 92, 231, 0.25);
}

.answer-card:hover::before {
    transform: scaleX(1);
}

.answer-card.selected {
    border-color: #6c5ce7;
    background: linear-gradient(135deg, #f0e7ff, #ffffff);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 0 3px rgba(108, 92, 231, 0.15),
        0 16px 48px -12px rgba(108, 92, 231, 0.35);
}

.answer-card.selected::before {
    transform: scaleX(1);
}

.answer-card.selected::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
}

.answer-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f0e7ff, #e9d8fd);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #6c5ce7;
    transition: all 0.3s ease;
}

.answer-card:hover .answer-icon,
.answer-card.selected .answer-icon {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.answer-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.answer-card.selected h4 {
    color: #6c5ce7;
}

.answer-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
    margin: 0;
}

/* Premium Navigation Buttons */
.consultation-nav-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f7fafc;
}

.btn-nav-pro {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-nav-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-nav-pro:hover::before {
    opacity: 1;
}

.btn-back-pro {
    background: #f7fafc;
    color: #4a5568;
}

.btn-back-pro:hover {
    background: #e2e8f0;
    transform: translateX(-5px);
}

.btn-back-pro.hidden {
    opacity: 0;
    pointer-events: none;
}

.btn-next-pro {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    margin-left: auto;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

.btn-next-pro:hover:not(:disabled) {
    transform: translateX(5px);
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.4);
}

.btn-next-pro:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-nav-pro i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-back-pro:hover i {
    transform: translateX(-3px);
}

.btn-next-pro:hover:not(:disabled) i {
    transform: translateX(3px);
}

.answer-text-input textarea {
    min-height: 120px;
    resize: vertical;
}

/* Multi-select Checkboxes */
.answer-multi-select {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.checkbox-option {
    background: #f7fafc;
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox-option:hover {
    border-color: #667eea;
    background: #eef2ff;
}

.checkbox-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea15, #764ba215);
}

.checkbox-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-option label {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    flex: 1;
    margin: 0;
}

/* Navigation Buttons */
.consultation-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.btn-back,
.btn-next {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Button ripple effect */
.btn-back, .btn-next {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background: rgba(255,255,255,0.5);
    pointer-events: none;
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* Responsive table utility for consultation notes or future use */
.responsive-table { width: 100%; border-collapse: collapse; }
.responsive-table th, .responsive-table td { padding: 12px 16px; border-bottom: 1px solid #e5e7eb; text-align: left; }
.table-wrap { width: 100%; overflow-x: auto; }

@media (max-width: 640px) {
  .responsive-table thead { display: none; }
  .responsive-table tr { display: grid; row-gap: 8px; padding: 12px 0; }
  .responsive-table td { display: grid; grid-template-columns: 120px 1fr; gap: 8px; }
  .responsive-table td::before { content: attr(data-label); font-weight: 600; color: #374151; }
}

.btn-back {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.btn-next {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #1a202c;
    margin-left: auto;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-next:disabled {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

/* Summary Section */
/* Premium Results Design */
.consultation-results {
    animation: resultsSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consultation-results.hidden {
    display: none;
}

@keyframes resultsSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.results-hero {
    text-align: center;
    padding: 50px 0;
}

.results-icon-success {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 12px rgba(16, 185, 129, 0.1),
        0 0 0 24px rgba(16, 185, 129, 0.05),
        0 20px 40px rgba(16, 185, 129, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 12px rgba(16, 185, 129, 0.1),
            0 0 0 24px rgba(16, 185, 129, 0.05),
            0 20px 40px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 0 16px rgba(16, 185, 129, 0.15),
            0 0 0 32px rgba(16, 185, 129, 0.08),
            0 24px 48px rgba(16, 185, 129, 0.4);
    }
}

.results-icon-success i {
    font-size: 56px;
    color: white;
}

.results-hero h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.results-hero p {
    font-size: 18px;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
}

.results-summary {
    background: #f7fafc;
    border-radius: 24px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: inset 0 2px 8px rgba(0,0,0,.04);
}

.result-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
}

.result-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.result-section h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-section h4 i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.result-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

/* Results Actions - Premium Buttons */
.results-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-result-primary,
.btn-result-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-result-primary:hover::before,
.btn-result-secondary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-result-primary {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.35);
}

.btn-result-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(108, 92, 231, 0.45);
}

.btn-result-secondary {
    background: white;
    color: #6c5ce7;
    border: 3px solid #6c5ce7;
}

.btn-result-secondary:hover {
    transform: translateY(-4px);
    background: #f0e7ff;
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.2);
}

.btn-result-primary i,
.btn-result-secondary i {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.btn-result-primary span,
.btn-result-secondary span {
    position: relative;
    z-index: 1;
}

/* Form Inputs - Professional Design */
.answer-form {
    display: grid;
    gap: 20px;
    max-width: 600px;
}

.form-field {
    position: relative;
}

.form-input-pro {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f7fafc;
    color: #1a202c;
}

.form-input-pro:focus {
    outline: none;
    border-color: #6c5ce7;
    background: white;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.form-input-pro::placeholder {
    color: #a0aec0;
}

.summary-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.summary-actions .btn {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.summary-actions .btn-primary {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #1a202c;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.summary-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.summary-actions .btn-secondary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.summary-actions .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Questionnaire */
/* Responsive Design - Mobile Optimization */
@media (max-width: 768px) {
    .questionnaire-container-pro {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .progress-current {
        font-size: 28px;
    }

    .progress-total {
        font-size: 18px;
    }

    .progress-percentage {
        font-size: 16px;
        padding: 6px 16px;
    }

    .question-title-pro {
        font-size: 24px;
    }

    .question-desc-pro {
        font-size: 16px;
    }

    .answer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .answer-card {
        padding: 28px 20px;
    }

    .answer-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .consultation-nav-pro {
        flex-direction: column;
        gap: 16px;
    }

    .btn-nav-pro {
        width: 100%;
        justify-content: center;
    }

    .btn-next-pro {
        margin-left: 0;
    }

    .results-hero h3 {
        font-size: 28px;
    }

    .results-hero p {
        font-size: 16px;
    }

    .results-summary {
        padding: 32px 24px;
    }

    .result-section h4 {
        font-size: 20px;
    }

    .results-actions {
        flex-direction: column;
    }

    .btn-result-primary,
    .btn-result-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design for Consultation */
@media (max-width: 768px) {
    .consultant-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    
    .consultant-img {
        width: 100px;
        height: 100px;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .project-options {
        grid-template-columns: 1fr;
    }
    
    .consultation-cta {
        padding: 30px 20px;
    }
    
    .consultation-form {
        padding: 25px 15px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .consultation {
        padding: 60px 0;
    }

    .consultation-intro {
        padding: 32px 20px;
    }

    .consultation-intro h2 {
        font-size: 1.6rem;
    }

    .consultation-intro p {
        font-size: 0.95rem;
    }

    .consultant-card {
        padding: 24px 16px;
    }

    .consultant-img {
        width: 90px;
        height: 90px;
    }
    
    .consultant-info h3 {
        font-size: 1.4rem;
    }
    
    .consultant-info p {
        font-size: 0.95rem;
    }

    .consultation-benefits {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 20px 16px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .process-steps {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 20px 16px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .project-options {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .project-option {
        padding: 24px 20px;
    }

    .option-header h4 {
        font-size: 1.2rem;
    }

    .consultation-cta {
        padding: 24px 16px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content > p {
        font-size: 0.95rem;
    }

    .consultation-form {
        padding: 20px 16px;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 16px;
        min-height: 48px;
    }

    .form-submit {
        min-height: 52px;
        font-size: 16px;
    }
    
    .consultation-process h3 {
        font-size: 1.6rem;
    }
    
    .option-icon {
        font-size: 2rem;
    }
    
    .btn-consultation {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 260px;
        gap: 6px;
        width: 100%;
        min-height: 48px;
    }

    .questionnaire-container {
        padding: 24px 16px;
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
    }

    .consultation-progress {
        margin: 0 -16px 24px;
        padding: 16px;
        border-radius: 0;
    }

    .question-card {
        padding: 24px 16px;
    }

    .question-number {
        font-size: 12px;
    }

    .question-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .question-description {
        font-size: 14px;
    }

    .answer-option {
        padding: 16px;
        min-height: 90px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .option-icon {
        font-size: 36px;
    }

    .option-text {
        font-size: 15px;
    }

    .option-description {
        font-size: 13px;
    }

    .consultation-navigation {
        padding: 16px;
        margin: 0 -16px;
        gap: 10px;
        flex-direction: column-reverse;
    }

    .btn-back,
    .btn-next {
        min-height: 50px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .summary-header {
        padding: 20px 16px;
    }

    .summary-header h3 {
        font-size: 20px;
    }

    .summary-content {
        padding: 20px 16px;
    }

    .summary-item {
        padding: 16px;
    }

    .summary-actions {
        padding: 16px;
        gap: 10px;
        flex-direction: column;
    }

    .summary-actions .btn {
        min-height: 50px;
        width: 100%;
    }
}

/* Ek responsive ayarlar */
@media (max-width: 360px) {
    .btn-consultation {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 240px;
        gap: 5px;
    }
    
    .btn-consultation i {
        font-size: 0.9rem;
    }
}

/* ==========================================
   HERO CONSULTATION CTA
   ========================================== */

.consultation-cta-hero {
    margin: 24px 0 20px 0;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

@media (min-width: 768px) {
    .consultation-cta-hero {
        margin: 28px 0 24px 0;
    }
}

.btn-consultation-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    width: 100%;
    max-width: 480px;
    font-size: 0.9rem;
    text-align: left;
}

@media (min-width: 640px) {
    .btn-consultation-hero {
        gap: 12px;
        padding: 16px 28px;
        font-size: 0.95rem;
        border-radius: 16px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .btn-consultation-hero {
        padding: 18px 32px;
        font-size: 1rem;
    }
}

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

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

.btn-consultation-hero:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
}

/* CTA badge */
.cta-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #ea580c;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1.5px solid rgba(234, 88, 12, 0.3);
    box-shadow: 0 3px 8px rgba(234, 88, 12, 0.25);
    text-transform: uppercase;
    z-index: 10;
}

.btn-consultation-hero:hover .cta-badge {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(234, 88, 12, 0.35);
}

.consultation-icon {
    position: relative;
    font-size: 1.4rem;
    animation: bounce 2s ease-in-out infinite;
}

.icon-sparkles {
    position: absolute;
    top: -10px;
    right: -10px;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: -5px;
    right: 5px;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 5px;
    right: -5px;
    animation-delay: 1s;
}

.consultation-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    text-align: left;
}

.main-text {
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.sub-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.3;
}

.consultation-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-consultation-hero:hover .consultation-arrow {
    transform: translateX(10px);
}

.btn-consultation-hero:hover .consultation-icon {
    animation: rocketBoost 0.6s ease;
}

/* Animations */
@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

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

@keyframes rocketBoost {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .consultation-cta-hero {
        margin: 20px 0 15px 0;
    }

    .btn-consultation-hero {
        padding: 14px 20px;
        gap: 10px;
        max-width: 100%;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .main-text {
        font-size: 0.95rem;
    }

    .sub-text {
        font-size: 0.8rem;
    }

    .consultation-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .btn-consultation-hero {
        padding: 12px 18px;
        gap: 8px;
        flex-direction: row;
        justify-content: center;
        font-size: 0.85rem;
    }

    .cta-badge {
        top: -6px;
        right: 8px;
        font-size: 9px;
        padding: 3px 8px;
    }

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

    .main-text {
        font-size: 0.85rem;
    }

    .sub-text {
        font-size: 0.8rem;
    }
}

/* Footer brand note */
.brand-note {
    margin: 6px 0 8px 0;
    font-size: 0.9rem;
    color: #6b7280;
}
.brand-note a { color: #6c5ce7; text-decoration: none; }
.brand-note a:hover { text-decoration: underline; }

/* ==========================
   Auth CTA group & Modals
   ========================== */






/* Helper line under hero */
.auth-cta-line{ margin-top: 8px; color: #64748b; font-size: 14px; text-align: center; }
.auth-cta-line a{ text-decoration: none; font-weight: 600; }
.auth-cta-line a.login{ color: #007bff; }
.auth-cta-line a.signup{ color: #16a34a; }
.auth-cta-line a:hover{ text-decoration: underline; }

/* Auth Modals */
.auth-modal-overlay{ position: fixed; inset:0; background: rgba(2,8,23,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display:none; align-items: center; justify-content: center; z-index: 2000; padding: 24px; }
.auth-modal-overlay.active{ display:flex; }
.auth-modal{ width:100%; max-width: 520px; background:#fff; border-radius: 18px; box-shadow: 0 20px 80px rgba(2,8,23,.25); border:1px solid #eef2ff; padding: 24px; position: relative; }
.auth-close{ position:absolute; right:10px; top:10px; width:36px; height:36px; border-radius:10px; border:1px solid #e5e7eb; background:#fff; cursor:pointer; font-size:20px; line-height:1; color:#6b7280; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.auth-close:hover{ background:#f8fafc; }
.auth-form{ display:grid; gap:12px; margin-top: 6px; }
.auth-label{ font-size: 14px; color:#374151; }
.auth-input-wrap{ position: relative; }
.auth-input{ width:100%; padding:12px 44px 12px 14px; border:1px solid #e5e7eb; border-radius:12px; outline:none; font-size: 16px; }
.auth-input:focus{ border-color:#007bff; box-shadow: 0 0 0 4px rgba(0,123,255,.2); }
.auth-toggle{ position:absolute; right:8px; top:50%; transform: translateY(-50%); border:0; background:#f3f4f6; color:#6b7280; padding:6px 8px; border-radius:8px; cursor:pointer; min-width: 44px; min-height: 32px; display: flex; align-items: center; justify-content: center; }
.auth-toggle:hover{ background:#e5e7eb; }
.auth-error{ color:#ef4444; font-size:12px; min-height: 16px; }
.btn-auth--primary{ background: linear-gradient(135deg, #2ea0ff 0%, #007bff 100%); color:#fff; box-shadow: 0 8px 22px rgba(0,123,255,.35); height:44px; min-height: 48px; }
.btn-auth--success{ background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); color:#fff; box-shadow: 0 8px 22px rgba(34,197,94,.35); height:44px; min-height: 48px; }
.auth-alt{ text-align:center; color:#64748b; font-size:14px; margin-top:4px; }
.auth-alt a{ text-decoration:none; font-weight:700; }
.auth-alt .link-login{ color:#007bff; }
.auth-alt .link-signup{ color:#16a34a; }

/* Auth Modal Mobile Responsive */
@media (max-width: 768px) {
    .auth-modal-overlay {
        padding: 16px;
    }
    
    .auth-modal {
        max-width: calc(100% - 32px);
        padding: 20px;
        border-radius: 16px;
    }
    
    .auth-close {
        width: 40px;
        height: 40px;
        right: 12px;
        top: 12px;
    }
    
    .auth-input {
        padding: 14px 48px 14px 14px;
        font-size: 16px; /* Prevent iOS zoom */
    }
    
    .btn-auth {
        min-height: 46px;
        height: 46px;
        padding: 0 20px;
        font-size: 0.95rem;
    }
    
    .btn-auth--primary,
    .btn-auth--success {
        min-height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .auth-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .auth-modal {
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        padding: 24px 20px;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
    
    .auth-close {
        width: 44px;
        height: 44px;
        right: 16px;
        top: 16px;
        font-size: 22px;
    }
    
    .auth-form {
        gap: 16px;
    }
    
    .auth-input {
        padding: 14px 50px 14px 14px;
        min-height: 48px;
    }
    
    .auth-toggle {
        min-width: 48px;
        min-height: 36px;
    }
    
    .btn-auth {
        min-height: 48px;
        height: 48px;
        padding: 0 20px;
        font-size: 1rem;
    }
    
    .btn-auth--primary,
    .btn-auth--success {
        min-height: 50px;
        font-size: 16px;
    }
}

/* Hero Auth CTA */
.hero-auth-cta{ 
    margin-top: 40px; 
    padding: 48px 40px; 
    background: 
        linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(251,252,255,.98) 50%, rgba(248,250,255,.98) 100%),
        radial-gradient(circle at 100% 0%, rgba(108,92,231,.03) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(162,155,254,.03) 0%, transparent 50%);
    -webkit-backdrop-filter: blur(32px) saturate(180%); 
    backdrop-filter: blur(32px) saturate(180%); 
    border-radius: 28px; 
    border: 1px solid rgba(255,255,255,.8);
    background-clip: padding-box;
    box-shadow: 
        0 1px 2px rgba(108,92,231,.05),
        0 4px 12px rgba(108,92,231,.08),
        0 12px 40px rgba(108,92,231,.12),
        0 20px 60px rgba(0,0,0,.04),
        inset 0 1px 1px rgba(255,255,255,.95),
        inset 0 -1px 1px rgba(108,92,231,.04);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    isolation: isolate;
}

.hero-auth-cta:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 2px 4px rgba(108,92,231,.06),
        0 8px 20px rgba(108,92,231,.12),
        0 20px 60px rgba(108,92,231,.16),
        0 30px 80px rgba(0,0,0,.06),
        inset 0 1px 2px rgba(255,255,255,1),
        inset 0 -1px 2px rgba(108,92,231,.06);
}

.hero-auth-cta::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(108,92,231,.6) 0%, 
        rgba(162,155,254,.7) 25%,
        rgba(138,180,248,.5) 50%,
        rgba(162,155,254,.7) 75%,
        rgba(108,92,231,.6) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.7; filter: brightness(1); }
    50% { opacity: 0.9; filter: brightness(1.15); }
}

.hero-auth-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,.4) 0%, transparent 70%);
    pointer-events: none;
    transform: rotate(0deg);
    animation: shimmer 8s linear infinite;
    opacity: 0;
}

.hero-auth-cta:hover::after {
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-auth-text{ 
    text-align: center; 
    font-size: 1.15rem; 
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px; 
    font-weight: 700;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,.02);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-auth-buttons{ 
    display: flex; 
    gap: 18px; 
    justify-content: center; 
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-auth--hero{ 
    height: 58px; 
    padding: 0 36px; 
    font-size: 1.05rem; 
    min-width: 190px;
    font-weight: 600;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 2px 8px rgba(0,0,0,.06),
        0 4px 16px rgba(0,0,0,.08),
        inset 0 1px 1px rgba(255,255,255,.3);
}

.btn-auth--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-auth--hero:hover::before {
    opacity: 1;
}

.btn-auth--hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 4px 12px rgba(0,0,0,.08),
        0 8px 28px rgba(0,0,0,.12),
        inset 0 1px 2px rgba(255,255,255,.4);
}

.btn-auth--hero:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.1s;
}

.btn-auth--hero.btn-auth--login {
    background: linear-gradient(135deg, #6c5ce7 0%, #8b7ff5 100%);
    color: #ffffff;
}

.btn-auth--hero.btn-auth--login:hover {
    background: linear-gradient(135deg, #5b4cd6 0%, #7a6ee4 100%);
}

.btn-auth--hero.btn-auth--signup {
    background: linear-gradient(135deg, #8ab4f8 0%, #a8c7fa 100%);
    color: #1e293b;
    font-weight: 700;
}

.btn-auth--hero.btn-auth--signup:hover {
    background: linear-gradient(135deg, #79a3e7 0%, #97b6e9 100%);
}

.btn-auth--hero i{ 
    margin-right: 10px; 
    font-size: 1.15rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-auth--hero:hover i {
    transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 768px){
    .hero-auth-cta{ 
        padding: 36px 24px; 
        margin-top: 32px;
        border-radius: 24px;
        min-height: 180px;
    }
    
    .hero-auth-cta::before {
        border-radius: 24px;
    }
    
    .hero-auth-cta::after {
        display: none;
    }
    
    .hero-auth-text{ 
        font-size: 1.05rem; 
        margin-bottom: 22px;
        letter-spacing: -0.02em;
    }
    
    .btn-auth--hero{ 
        height: 54px; 
        padding: 0 28px; 
        font-size: 1.02rem; 
        width: 100%; 
        min-width: unset;
        border-radius: 14px;
    }
    
    .hero-auth-buttons{ 
        flex-direction: column; 
        gap: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-auth-cta,
    .hero-auth-cta::before,
    .hero-auth-cta::after,
    .btn-auth--hero,
    .btn-auth--hero i,
    .hero-auth-text {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

/* Packages Auth Banner */
.section-auth-banner{ display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); border-radius: 18px; border: 2px solid #bae6fd; margin-bottom: 48px; flex-wrap: wrap; }
.auth-banner-content{ display: flex; align-items: center; gap: 16px; flex: 1; }
.auth-banner-icon{ font-size: 3rem; }
.auth-banner-text h3{ margin: 0 0 4px 0; font-size: 1.3rem; color: #0c4a6e; }
.auth-banner-text p{ margin: 0; color: #475569; font-size: 0.95rem; }
.auth-banner-actions{ display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px){
    .section-auth-banner{ flex-direction: column; text-align: center; padding: 20px; }
    .auth-banner-content{ flex-direction: column; text-align: center; }
    .auth-banner-actions{ width: 100%; flex-direction: column; }
    .auth-banner-actions .btn-auth{ width: 100%; }
}

/* Contact Auth Prompt */
.contact-auth-prompt{ margin-bottom: 48px; }
.contact-auth-card{ text-align: center; padding: 40px 32px; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 20px; border: 2px solid #fbbf24; }
.contact-auth-icon{ font-size: 3.5rem; color: #d97706; margin-bottom: 12px; }
.contact-auth-card h3{ margin: 0 0 8px 0; font-size: 1.5rem; color: #78350f; }
.contact-auth-card p{ margin: 0 0 20px 0; color: #92400e; font-size: 1rem; }
.contact-auth-buttons{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px){
    .contact-auth-card{ padding: 32px 20px; }
    .contact-auth-icon{ font-size: 2.5rem; }
    .contact-auth-card h3{ font-size: 1.25rem; }
    .contact-auth-buttons{ flex-direction: column; }
    .contact-auth-buttons .btn-auth{ width: 100%; }
}

/* ==========================
   Loading Screen
   ========================== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    animation: fadeInScale 0.5s ease;
}

.loading-logo {
    margin-bottom: 48px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
}

.logo-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.logo-ring {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 3;
    animation: ringPulse 2s ease-in-out infinite;
}

.logo-checkmark {
    fill: none;
    stroke: #6c5ce7;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawCheck 1.5s ease-in-out infinite;
}

.loading-brand {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin: 0;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.loading-progress {
    max-width: 320px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    animation: shimmer 1.5s ease-in-out infinite;
    background-size: 200% 100%;
}

.loading-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ringPulse {
    0%, 100% {
        stroke: #e5e7eb;
        stroke-width: 3;
    }
    50% {
        stroke: #d1d5db;
        stroke-width: 4;
    }
}

@keyframes drawCheck {
    0% {
        stroke-dashoffset: 100;
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -100;
        opacity: 0.3;
    }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .code-brackets {
        font-size: 60px;
    }
    .bracket-slash {
        font-size: 45px;
    }
    .terminal-body {
        font-size: 13px;
        padding: 16px;
    }
    .loading-tech-stack {
        font-size: 12px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .code-brackets {
        font-size: 50px;
    }
    .bracket-slash {
        font-size: 38px;
    }
    .terminal-body {
        font-size: 12px;
    }
}

/* ===========================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   =========================================== */

/* Mobile-First Base Styles */
@media (max-width: 768px) {
    /* Container Padding */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Section Spacing */
    .section-padding {
        padding: 60px 0;
    }
    
    /* Touch-Friendly Buttons */
    .btn,
    .cta-button,
    .package-footer .btn-package {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 1rem;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Cards and Content */
    .stat-item,
    .summary-card,
    .package-item {
        margin-bottom: 20px;
    }
    
    /* Grid Layouts */
    .about-stats-grid,
    .skills-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Forms */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    textarea {
        min-height: 120px;
    }
    
    /* Hero heading optimization for tablet */
    .hero-content h1 {
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    /* Hero media video responsive */
    .hero-media {
        max-width: 95vw;
        margin: 0 auto 32px;
    }
    
    .hero-video {
        border-radius: 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Tighter Spacing */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Content */
    .hero-content h1 {
        font-size: 1.85rem;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Hero media mobile */
    .hero-media {
        max-width: 100%;
        margin: 0 auto 24px;
        --frame-radius: 20px;
    }
    
    .assistant-avatar {
        --avatar-size: 70px;
        bottom: 12px;
        left: 12px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .section-padding {
        padding: 32px 0;
    }
    
    .hero-content h1 {
        font-size: 1.65rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .highlight {
        white-space: normal;
    }
    
    .hero-media {
        --frame-radius: 16px;
        margin: 0 auto 20px;
    }
    
    .assistant-avatar {
        --avatar-size: 60px;
        bottom: 10px;
        left: 10px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .nav-menu.active {
        max-height: 80vh;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .nav-link,
    .btn,
    .cta-button {
        border: 2px solid currentColor;
    }
    
    .nav-link::before {
        display: none;
    }
}

/* Dark Mode Support (Future Enhancement) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f8f9fa;
        --text-light: #d1d5db;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .scroll-to-top,
    .ai-assistant,
    .floating-elements,
    .search-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
    }
}

/* iOS Safe Area Support */
@supports (padding: max(0px)) {
    .navbar,
    .hero,
    footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .nav-menu.active {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 3px solid #6c5ce7;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove focus for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Navbar height */
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5b4cdb;
}

/* Selection Styling */
::selection {
    background: #6c5ce7;
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    background: #6c5ce7;
    color: #ffffff;
    text-shadow: none;
}/* Results Info Banner */
.results-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #ebf8ff, #e6fffa);
    border: 2px solid #bee3f8;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    animation: bannerSlideIn 0.6s ease-out;
}

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

.results-info-banner .info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(66, 153, 225, 0.3);
}

.results-info-banner .info-content {
    flex: 1;
}

.results-info-banner .info-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: #1a365d;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.results-info-banner .info-content p {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.7;
    margin: 0 0 8px 0;
}

.results-info-banner .info-content p:last-child {
    margin-bottom: 0;
}

.results-info-banner .info-content strong {
    color: #1a365d;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .results-info-banner {
        flex-direction: column;
        padding: 24px;
    }
    
    .results-info-banner .info-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .results-info-banner .info-content h4 {
        font-size: 18px;
    }
    
    .results-info-banner .info-content p {
        font-size: 14px;
    }
}

/* ==========================
   Instagram Hero Link
   ========================== */
.hero-instagram {
    margin: 30px 0 0 0;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.instagram-link:hover::before {
    width: 300px;
    height: 300px;
}

.instagram-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.5);
}

.instagram-link i {
    font-size: 1.5rem;
    animation: instagramPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.instagram-link span {
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

@keyframes instagramPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

/* ==========================
   Contact Instagram Enhanced
   ========================== */
.social-icon--instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    width: 100%;
    max-width: 280px;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon--instagram::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 ease;
}

.social-icon--instagram:hover::before {
    left: 100%;
}

.social-icon--instagram:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(188, 24, 136, 0.5);
}

.social-icon--instagram i {
    font-size: 2rem;
    color: white;
}

.instagram-handle {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.social-links h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #2d3436;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================
   Footer Instagram Enhanced
   ========================== */
.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-instagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.footer-instagram:hover::before {
    width: 200px;
    height: 200px;
}

.footer-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.5);
}

.footer-instagram i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.footer-instagram span {
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .instagram-link {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .instagram-link i {
        font-size: 1.3rem;
    }
    
    .social-icon--instagram {
        max-width: 100%;
        padding: 18px 25px;
    }
    
    .instagram-handle {
        font-size: 1.1rem;
    }
    
    .footer-instagram {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-instagram {
        margin: 20px 0 0 0;
    }
    
    .instagram-link {
        padding: 10px 20px;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .instagram-link i {
        font-size: 1.2rem;
    }
    
    /* Scroll to top button responsive */
    .scroll-to-top-new {
        bottom: 130px;
        right: 24px;
        width: 64px;
        height: 64px;
    }
    
    .scroll-circle {
        width: 64px;
        height: 64px;
    }
    
    .scroll-progress {
        width: 66px;
        height: 66px;
        top: -1px;
        left: -1px;
    }
    
    .scroll-progress-bg {
        stroke-width: 3.2;
    }
    
    .scroll-progress-fill {
        stroke-width: 3.2;
        stroke-dasharray: 205;
        stroke-dashoffset: 205;
    }
    
    .scroll-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .scroll-tooltip {
        font-size: 0.75rem;
        padding: 7px 14px;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .scroll-to-top-new {
        bottom: 120px;
        right: 20px;
        width: 62px;
        height: 62px;
    }
    
    .scroll-circle {
        width: 62px;
        height: 62px;
        box-shadow: 
            0 2px 6px rgba(108, 92, 231, 0.1),
            0 4px 16px rgba(108, 92, 231, 0.15),
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 1px rgba(255, 255, 255, 0.9);
    }
    
    .scroll-progress {
        width: 64px;
        height: 64px;
    }
    
    .scroll-progress-bg {
        stroke-width: 3;
    }
    
    .scroll-progress-fill {
        stroke-width: 3;
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
    }
    
    .scroll-icon {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
    }
    
    .scroll-tooltip {
        bottom: -28px;
        font-size: 0.72rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-new {
        bottom: 110px;
        right: 16px;
        width: 58px;
        height: 58px;
    }
    
    .scroll-circle {
        width: 58px;
        height: 58px;
    }
    
    .scroll-progress {
        width: 60px;
        height: 60px;
    }
    
    .scroll-progress-bg,
    .scroll-progress-fill {
        stroke-width: 2.8;
    }
    
    .scroll-progress-fill {
        stroke-dasharray: 188;
        stroke-dashoffset: 188;
    }
    
    .scroll-icon {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
    
    .scroll-tooltip {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-icon i {
        animation: none !important;
    }
    
    .scroll-to-top-new,
    .scroll-circle,
    .scroll-icon,
    .scroll-tooltip,
    .scroll-progress {
        transition-duration: 0.01ms !important;
    }
}
