/* ANIMATION KILL SWITCH - Reduced Motion Only */
@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;
    }
}

:root {
    --primary: #FFD700;
    --primary-dark: #E6C200;
    --secondary: #1E90FF;
    --secondary-dark: #0077E6;
    --accent: #00D4FF;
    --dark: #0A0A0F;
    --dark-2: #12121A;
    --dark-3: #1A1A25;
    --dark-4: #252530;
    --text: #FFFFFF;
    --text-secondary: #A0A0B0;
    --text-muted: #6B6B7B;
    --border: rgba(255,255,255,0.08);
    --glass: rgba(18,18,26,0.8);
    --shadow: 0 20px 60px rgba(0,0,0,0.5);
    --glow-yellow: 0 0 60px rgba(255,215,0,0.3);
    --glow-blue: 0 0 60px rgba(30,144,255,0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark);
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: #0A0A0F;
    color: #FFD700;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #FFD700;
}

.nav-cta:hover {
    background: #0A0A0F;
    color: #FFD700;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(.16,1,.3,1);
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
    opacity: 1;
    transform: scaleX(1);
}

.hamburger span:nth-child(3) {
    transform: translateY(7px);
}

/* Hamburger Active - X Animasyonu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    background: var(--primary);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    background: var(--primary);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.12), transparent 70%);
    top: -200px;
    right: -200px;
    animation: ambientDrift 14s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30,144,255,0.08), transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: ambientDrift 16s ease-in-out infinite reverse;
    pointer-events: none;
}

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

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn::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.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #0A0A0F !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
    background: #0A0A0F !important;
    color: #FFD700 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,215,0,0.2);
}

.btn-secondary {
    background: #0A0A0F !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-secondary:hover {
    background: #0A0A0F !important;
    color: #FFD700 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,215,0,0.2);
}

.btn:hover i {
    transform: translate(3px, -3px);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.stat-plus {
    font-size: 24px;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

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

/* MARQUEE */
.marquee-section {
    overflow: hidden;
    padding: 24px 0;
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.marquee-content span:hover {
    color: var(--primary);
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: nodePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* SECTIONS */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* BLOG CARDS */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--dark-2);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blog-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255,215,0,0.2);
}

.blog-featured-image {
    height: 100%;
    min-height: 400px;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.blog-featured:hover .blog-featured-image {
    transform: scale(1.05);
    filter: saturate(0.9) contrast(1.05);
}

.blog-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,215,0,0.1);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    width: fit-content;
}

.blog-featured-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-featured-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 16px;
}

.blog-btn:hover {
    gap: 8px;
}

.blog-btn i {
}

.blog-btn:hover i {
    transform: none;
}

.blog-large-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.blog-card-large {
    background: var(--dark-2);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.55s cubic-bezier(.16,1,.3,1), box-shadow 0.55s ease;
}

.blog-card-large:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(255,215,0,0.15);
}

.blog-card-large-image {
    height: 200px;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.blog-card-large:hover .blog-card-large-image {
    transform: scale(1.05);
    filter: saturate(0.9) contrast(1.05);
}

.blog-card-large-content {
    padding: 24px;
}

.blog-card-large-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-large-content p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* TESTIMONIALS */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.55s cubic-bezier(.16,1,.3,1), box-shadow 0.55s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border-color: rgba(255,215,0,0.15);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--primary);
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(30,144,255,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #FFD700 !important;
    color: #FFD700 !important;
}

.btn-outline:hover {
    background: #FFD700 !important;
    color: #0A0A0F !important;
    transform: translateY(-3px);
}

/* CONTACT & REVIEW */
.contact-review-section {
    padding: 100px 0;
}

.contact-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cr-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cr-header {
    text-align: center;
    margin-bottom: 32px;
}

.cr-header i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.cr-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cr-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.1);
}

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

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

.star-rating {
    display: flex;
    gap: 8px;
}

.star-rating i {
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i.active,
.star-rating i:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.submit-full {
    width: 100%;
    justify-content: center;
}

/* FOOTER */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 16px 0;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
}

/* MAIN CONTENT */
.main-content {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.main-content.active {
    opacity: 1;
    transform: translateY(0);
}

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

.about-image-box {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.about-image-placeholder i {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.5;
}

.about-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--dark-2);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.about-feature i {
    color: var(--primary);
    font-size: 18px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
}

/* TEAM SECTION */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,215,0,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: #fff;
    overflow: hidden;
}

.team-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* PORTFOLIO STATUS BADGES */
.portfolio-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.portfolio-status.active {
    background: rgba(59,130,246,0.15);
    color: #3B82F6;
}

.portfolio-status.completed {
    background: rgba(34,197,94,0.15);
    color: #22C55E;
}

.portfolio-status.pending {
    background: rgba(245,158,11,0.15);
    color: #F59E0B;
}

/* SERVICES SECTION */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-detail-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.55s cubic-bezier(.16,1,.3,1), box-shadow 0.55s ease, border-color 0.35s ease;
    overflow: hidden;
}

.service-detail-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(255,215,0,0.2);
}

.service-card-image {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.service-detail-card:hover .service-card-image img {
    transform: scale(1.1);
    filter: saturate(0.9) contrast(1.05);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-detail-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-detail-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-detail-card ul {
    list-style: none;
}

.service-detail-card li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-card li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
}

.service-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.service-actions .btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.service-actions .btn-primary {
    background: #0A0A0F !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
}

.service-actions .btn-primary:hover {
    background: #0A0A0F !important;
    color: #FFD700 !important;
}

.service-actions .btn-secondary {
    background: #0A0A0F !important;
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
}

.service-actions .btn-secondary:hover {
    background: #0A0A0F !important;
    color: #FFD700 !important;
}

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

/* PORTFOLIO SECTION */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: #0A0A0F !important;
    border: 2px solid #FFD700 !important;
    border-radius: 8px;
    color: #FFD700 !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0A0A0F !important;
    color: #FFD700 !important;
    border-color: #FFD700 !important;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.55s cubic-bezier(.16,1,.3,1), box-shadow 0.55s ease, border-color 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(255,215,0,0.2);
}

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

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.portfolio-info {
    padding: 24px;
}

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,215,0,0.1);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.portfolio-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: 4px 10px;
    background: var(--dark-3);
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-muted);
}

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

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

@keyframes marqueeMove {
    0% { transform: translate(0); }
    100% { transform: translate(-50%); }
}

@keyframes ambientDrift {
    0%, 100% { transform: translateZ(0) scale(1); }
    50% { transform: translate3d(18px, -24px, 0) scale(1.08); }
}

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

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

@keyframes lineSweep {
    0% { transform: translate(-110%); }
    100% { transform: translate(110%); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-1deg); }
}

/* SCROLL REVEAL */
.reveal,
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active,
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-up"] {
    transform: translateY(60px);
}

[data-animate="fade-up"].animated {
    transform: translateY(0);
}

[data-animate="fade-left"] {
    transform: translateX(-60px);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(60px);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

[data-animate="scale"] {
    transform: scale(0.9);
}

[data-animate="scale"].animated {
    transform: scale(1);
}

.reveal-delay-1,
[data-delay="1"] { transition-delay: 0.1s; }
.reveal-delay-2,
[data-delay="2"] { transition-delay: 0.2s; }
.reveal-delay-3,
[data-delay="3"] { transition-delay: 0.3s; }
.reveal-delay-4,
[data-delay="4"] { transition-delay: 0.4s; }
.reveal-delay-5,
[data-delay="5"] { transition-delay: 0.5s; }
.reveal-delay-6,
[data-delay="6"] { transition-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-large-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-review-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* NAV MENU - Full Screen Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px) saturate(150%);
        -webkit-backdrop-filter: blur(20px) saturate(150%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s cubic-bezier(.16,1,.3,1), 
                    visibility 0.4s,
                    transform 0.4s cubic-bezier(.16,1,.3,1);
        z-index: 1001;
        padding: 80px 20px 40px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* NAV LINKS - Büyük dokunma alanı */
    .nav-menu .nav-link {
        font-size: 22px;
        font-weight: 600;
        color: var(--text-secondary);
        padding: 16px 32px;
        width: 100%;
        max-width: 320px;
        text-align: center;
        border-radius: 12px;
        transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        color: var(--primary);
        background: rgba(255, 215, 0, 0.08);
        transform: scale(1.02);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    /* NAV CTA - Mobil buton */
    .nav-menu .nav-cta,
    .nav-cta {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* BODY SCROLL LOCK */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ambient i,
    .orbit,
    .orb-node,
    .float-note,
    .canvas-shape,
    .vision-signal span {
        animation: none !important;
    }
    .canvas-shape {
        animation: none !important;
    }
}

/* ============================================
   ARTIFEX-STYLE ANIMATIONS
   ============================================ */

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: noteFloat 6s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollLine 2.4s ease-in-out infinite;
}

/* TEAM CARD ANIMATION */
.team-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(.16,1,.3,1), transform 0.6s cubic-bezier(.16,1,.3,1);
}

.team-card.animated,
.team-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* REVEAL ANIMATION - Scroll triggered */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}

.reveal.animated,
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* BLOG BTN HOVER */
.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-btn:hover {
    gap: 12px;
}

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

.blog-btn:hover i {
    transform: translateX(4px);
}

/* CTA SECTION GLOW */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
    animation: ambientDrift 16s ease-in-out infinite;
}

/* NAV LINK HOVER UNDERLINE */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* SERVICE PLACEHOLDER (dynamic content) */
.service-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}

.service-detail-card:hover .service-placeholder {
    transform: scale(1.03);
}

/* FORM INPUT FOCUS */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(255,215,0,0.1);
    outline: none;
}

/* ABOUT IMAGE HOVER */
.about-image-placeholder {
    transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}

.about-image-box:hover .about-image-placeholder {
    transform: scale(1.02);
}

/* FILTER BUTTON HOVER */
.filter-btn {
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
}

.filter-btn.active {
    transform: translateY(0);
}