:root {
    /* Primary Blue Palette */
    --primary-blue: #0ea5e9;
    --primary-blue-dark: #0284c7;
    --primary-blue-light: #38bdf8;
    --accent-cyan: #06b6d4;
    --accent-indigo: #6366f1;
    
    /* Dark Theme Colors */
    --dark-bg: #0a1929;
    --dark-bg-secondary: #0f2942;
    --dark-bg-tertiary: #1a365d;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(14, 165, 233, 0.1);
    --shadow-md: 0 4px 16px rgba(14, 165, 233, 0.2);
    --shadow-lg: 0 8px 32px rgba(14, 165, 233, 0.3);
    --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: var(--text-primary);
}

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

::-webkit-scrollbar-track {
    background: var(--dark-bg-secondary);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-dark);
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 25, 41, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.brand-icon {
    color: var(--primary-blue);
    font-size: 1.8rem;
    transition: all var(--transition-normal);
}

.navbar-brand:hover {
    color: var(--primary-blue);
}

.navbar-brand:hover .brand-icon {
    transform: rotateY(180deg);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #0ea5e9 !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    background: #0ea5e9;
}

.navbar-toggler {
    border: none;
    color: var(--primary-blue);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(14, 165, 233, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: all var(--transition-normal);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

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

.btn-outline-light {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-outline-light:hover {
    background: var(--primary-blue);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    bottom: -100px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.hero-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 1rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Code Window */
.hero-visual {
    position: relative;
    z-index: 1;
}

.code-window {
    background: rgba(15, 41, 66, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: floatWindow 6s infinite ease-in-out;
}

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

.window-header {
    background: rgba(10, 25, 41, 0.9);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.window-buttons {
    display: flex;
    gap: 0.5rem;
}

.window-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close-window {
    background: #ff5f56;
}

.btn-minimize {
    background: #ffbd2e;
}

.btn-maximize {
    background: #27c93f;
}

.window-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.window-content {
    padding: 2rem;
}

.window-content pre {
    margin: 0;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-keyword {
    color: #c678dd;
}

.code-function {
    color: #61afef;
}

.code-param {
    color: #e06c75;
}

.code-string {
    color: #98c379;
}

.code-operator {
    color: #56b6c2;
}

.code-bracket {
    color: #abb2bf;
}

.code-comment {
    color: #5c6370;
    font-style: italic;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

/* ==================== SECTION STYLES ==================== */
section {
    padding: 50px 0;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}
}

span.section-tag,
.section-tag {
    display: inline-block !important;
    background: transparent !important;
    border: 2px solid #0ea5e9 !important;
    color: #0ea5e9 !important;
    padding: 0.75rem 2rem !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background: var(--dark-bg-secondary);
    position: relative;
}

.service-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.service-card.featured {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--primary-blue);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    position: relative;
    z-index: 1;
}

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

.price-amount {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.service-link:hover {
    gap: 1rem;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-section {
    background: var(--dark-bg);
}

.portfolio-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 165, 233, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-primary);
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
}

.portfolio-link:hover {
    background: var(--text-primary);
    color: var(--primary-blue);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-category {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.portfolio-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Code Editor */
.code-editor {
    background: rgba(15, 41, 66, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3);
    animation: floatWindow 6s infinite ease-in-out;
    max-height: 450px;
    transform: scale(0.95);
}

.editor-header {
    background: rgba(10, 25, 41, 0.95);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.editor-buttons {
    display: flex;
    gap: 0.5rem;
}

.editor-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.editor-buttons span:hover {
    transform: scale(1.2);
}

.btn-red {
    background: #ff5f56;
    box-shadow: 0 0 10px rgba(255, 95, 86, 0.5);
}

.btn-yellow {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.btn-green {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

.editor-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.tab:hover {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.tab.active {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.tab i {
    font-size: 0.9rem;
}

.header-right {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.header-right i {
    cursor: pointer;
    transition: all 0.3s;
}

.header-right i:hover {
    color: var(--primary-blue);
}

.editor-sidebar {
    display: flex;
    flex-direction: column;
    background: rgba(10, 25, 41, 0.5);
    padding: 0.75rem;
    border-right: 1px solid rgba(14, 165, 233, 0.2);
    float: left;
    width: 150px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0.25rem;
}

.sidebar-item:hover {
    background: rgba(14, 165, 233, 0.1);
}

.sidebar-item.active {
    background: rgba(14, 165, 233, 0.15);
    color: var(--primary-blue);
}

.sidebar-item i {
    font-size: 0.85rem;
}

.editor-content {
    display: flex;
    padding: 1rem;
    background: rgba(10, 25, 41, 0.3);
    margin-left: 150px;
}

.line-numbers {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    user-select: none;
    text-align: right;
    min-width: 30px;
}

.code-area {
    flex: 1;
    padding: 0.5rem 1rem;
}

.code-area pre {
    margin: 0;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    color: #abb2bf;
}

.editor-footer {
    background: rgba(10, 25, 41, 0.95);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    font-size: 0.75rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.footer-left i {
    color: #27c93f;
}

.footer-right {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-right span {
    padding: 0.25rem 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 4px;
}
/* ==================== PROCESS SECTION ==================== */
.process-section {
    background: var(--dark-bg-secondary);
}

.process-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.process-number {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0 auto 1.5rem;
    transition: all var(--transition-normal);
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(360deg);
}

.process-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--dark-bg);
}

.about-image {
    position: relative;
    height: 500px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: rgba(15, 41, 66, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary-blue);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    animation: floatCard 3s infinite ease-in-out;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.floating-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

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

.about-content {
    padding-left: 2rem;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-skills {
    margin-top: 2rem;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-weight: 600;
    color: var(--text-primary);
}

.skill-percentage {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--primary-blue);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: var(--dark-bg-secondary);
}

.contact-info {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.contact-details a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

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

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

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(10, 25, 41, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 10px;
    color: #ffffff !important;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: rgba(10, 25, 41, 0.8);
    color: #ffffff !important;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Input ve select text rengi */
input.form-control,
textarea.form-control,
select.form-control {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

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

select.form-control {
    cursor: pointer;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.footer-social .social-link {
    width: 40px;
    height: 40px;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 1rem;
}

.footer-contact li {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-blue);
    width: 20px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    text-align: center;
    color: var(--text-muted);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .code-editor {
        font-size: 0.75rem;
    }
    
    .editor-content {
        padding: 0.75rem;
        margin-left: 0;
    }
    
    .editor-sidebar {
        display: none;
    }
    
    .line-numbers {
        font-size: 0.7rem;
        padding: 0.25rem;
        min-width: 20px;
    }
    
    .code-area {
        padding: 0.25rem 0.5rem;
    }
    
    .code-area pre {
        font-size: 0.7rem;
    }
    
    .editor-tabs {
        display: none;
    }
    
    .header-right {
        display: none;
    }
    
    .footer-right {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .service-card,
    .portfolio-card,
    .process-card,
    .contact-info,
    .contact-form {
        margin-bottom: 1rem;
    }
    
    section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    /* New sections mobile */
    .audit-card {
        padding: 1.5rem;
    }
    
    .audit-title {
        font-size: 1.5rem;
    }
    
    .audit-features {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
    
    .result-number {
        font-size: 1.25rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        left: 1.5rem;
        right: auto;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ==================== NEW SECTIONS CSS ==================== */

/* Tools Section */
.tools-section {
    background: var(--dark-bg);
}

.tool-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(360deg);
}

.tool-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tool-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Case Studies Section */
.case-studies-section {
    background: var(--dark-bg-secondary);
}

.case-study-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: all var(--transition-normal);
}

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

.case-study-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.case-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.case-category {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.case-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    margin-bottom: 1rem;
}

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

.result-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.case-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.case-duration i {
    color: var(--primary-blue);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-bg);
}

.testimonial-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(14, 165, 233, 0.2);
    line-height: 1;
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-position {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Free Audit Section */
.free-audit-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.audit-card {
    background: rgba(15, 41, 66, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
}

.audit-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.audit-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.audit-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.audit-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0;
}

.audit-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.audit-features i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.audit-form {
    background: rgba(10, 25, 41, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-note i {
    color: #22c55e;
}

/* Download Section */
.download-section {
    background: var(--dark-bg-secondary);
}

.download-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all var(--transition-normal);
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.download-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.download-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.download-features i {
    color: var(--primary-blue);
}

/* Modal */
.modal-content {
    background: rgba(15, 41, 66, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
    padding: 1.5rem 2rem;
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.modal-body {
    padding: 2rem;
}

.modal-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(15, 41, 66, 0.95);
    backdrop-filter: blur(20px);
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Mobile responsive for new sections */
@media (max-width: 768px) {
    .audit-card {
        padding: 1.5rem;
    }
    
    .audit-title {
        font-size: 1.5rem;
    }
    
    .audit-features {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
    
    .result-number {
        font-size: 1.25rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        left: 1.5rem;
        right: auto;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Blog Section */
.blog-section {
    background: var(--dark-bg);
}

.blog-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-date {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(10, 25, 41, 0.9);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date i {
    color: var(--primary-blue);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.blog-link:hover {
    gap: 1rem;
    color: var(--primary-blue-light);
}

.blog-link i {
    transition: all var(--transition-normal);
}

/* Page Header */
.page-header {
    background: var(--dark-bg);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin: 1rem 0;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-content-section {
    background: var(--dark-bg);
    padding: 80px 0;
}

.about-image-wrapper {
    position: relative;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-badge {
    position: absolute;
    background: rgba(15, 41, 66, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary-blue);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    animation: floatBadge 3s infinite ease-in-out;
}

.badge-1 { top: 10%; left: -5%; animation-delay: 0s; }
.badge-2 { top: 50%; right: -5%; animation-delay: 1s; }
.badge-3 { bottom: 10%; left: 10%; animation-delay: 2s; }

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

.badge-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.badge-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.cta-card {
    background: rgba(15, 41, 66, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.cta-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-image-wrapper {
        height: 350px;
        margin-bottom: 2rem;
    }
    .stats-badge {
        padding: 1rem;
    }
    .badge-number {
        font-size: 1.5rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

/* Portfolio Filter */
.portfolio-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(15, 41, 66, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--text-secondary);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    color: var(--text-primary);
}

.portfolio-results {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
}

.result-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.load-more-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-info-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary-blue);
}

.working-hours {
    background: rgba(15, 41, 66, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.working-hours h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.working-hours ul {
    list-style: none;
    padding: 0;
}

.working-hours li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.working-hours .note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

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

.meta-item i {
    color: var(--primary-blue);
}

/* Blog Detail */
.blog-detail-header {
    background: var(--dark-bg);
    padding: 150px 0 50px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

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

.post-header {
    margin-bottom: 2rem;
}

.post-meta-top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.post-date,
.post-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.post-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
}

.author-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-details strong {
    display: block;
    color: var(--text-primary);
}

.author-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
}

.blog-detail-content {
    background: var(--dark-bg);
    padding: 50px 0;
}

.post-content {
    background: rgba(15, 41, 66, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.featured-image {
    margin-bottom: 2rem;
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-text .lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.content-text h2 {
    font-family: 'Orbitron', monospace;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-text h3 {
    color: var(--primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.post-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.tag {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary-blue);
    color: white;
}

.post-share {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn.twitter { background: #1DA1F2; color: white; }
.share-btn.facebook { background: #4267B2; color: white; }
.share-btn.linkedin { background: #0077B5; color: white; }
.share-btn.whatsapp { background: #25D366; color: white; }

.share-btn:hover {
    transform: scale(1.1);
}

/* Comments */
.comments-section {
    background: rgba(15, 41, 66, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
}

.comments-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.comment-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.comment-item.reply {
    margin-left: 4rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

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

.comment-badge {
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.comment-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.comment-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.comment-reply-btn {
    background: transparent;
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-reply-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.comment-form-wrapper {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(14, 165, 233, 0.2);
}

.comment-form-title {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: rgba(15, 41, 66, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.author-avatar-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.author-bio {
    color: var(--text-secondary);
    margin: 1rem 0;
}

.author-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
}

.widget-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.popular-post-item:hover {
    color: var(--primary-blue);
}

.post-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.category-list a:hover {
    color: var(--primary-blue);
}

.category-list span {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .post-title {
        font-size: 1.75rem;
    }
    .post-content {
        padding: 1.5rem;
    }
    .comment-item.reply {
        margin-left: 2rem;
    }
    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

/* Modern FAQ */
.faq-category-card {
    background: rgba(15, 41, 66, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.faq-category-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-primary);
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.question-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    color: var(--primary-blue);
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-question.collapsed .faq-icon {
    transform: rotate(0deg);
}

.faq-question:not(.collapsed) .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.5rem 56px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

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

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.sector-tag {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.faq-cta-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* MOBIL YATAY KAYMA DÜZELTMESİ */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}





html { overflow-x: clip !important; overflow-y: visible !important; }