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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: #061E29;
    color: #E3E3E3;
    overflow-x: hidden;
    position: relative;
    cursor: none;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated Blue Light Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(35, 76, 106, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(69, 104, 130, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(35, 76, 106, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(69, 104, 130, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 10% 70%, rgba(27, 60, 83, 0.4) 0%, transparent 45%);
    animation: floatingLights 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 60%, rgba(69, 104, 130, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 30% 40%, rgba(35, 76, 106, 0.3) 0%, transparent 55%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Enhanced Global Animations */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

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

/* Enhanced Hover States for Interactive Elements */
a, button, .clickable {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Improved Focus States */
a:focus, button:focus, input:focus {
    outline: 2px solid rgba(69, 104, 130, 0.6);
    outline-offset: 2px;
}

/* Enhanced Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger Animation for Multiple Elements */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-animation.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-animation.visible > * {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Make sure content stays above background */
nav, section, footer {
    position: relative;
    z-index: 1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: rgba(6, 30, 41, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    min-height: 80px;
    border-bottom: 1px solid rgba(69, 104, 130, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #E3E3E3;
    background: linear-gradient(135deg, #E3E3E3 0%, #E3E3E3 30%, #E3E3E3 60%, #E3E3E3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(227, 227, 227, 0.3));
}

.nav-logo:hover {
    filter: drop-shadow(0 0 10px rgba(227, 227, 227, 0.5));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #E3E3E3;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #456882, #234C6A);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #E3E3E3;
    text-shadow: 0 0 10px rgba(227, 227, 227, 0.5);
}

/* Simplified Button Animations */
.cta-btn {
    background: linear-gradient(135deg, #456882, #234C6A);
    color: #E3E3E3;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(69, 104, 130, 0.4);
    border: 1px solid rgba(227, 227, 227, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 104, 130, 0.6);
    background: linear-gradient(135deg, #234C6A, #1B3C53);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 150px 50px 100px;
    background: 
        linear-gradient(180deg, #061E29 0%, #061E29 100%),
        radial-gradient(circle at 50% 50%, rgba(69, 104, 130, 0.2) 0%, transparent 70%);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(69, 104, 130, 0.25) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
    z-index: 0;
}

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

.hero h1 {
    font-size: clamp(42px, 6vw, 90px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    max-width: 1100px;
    animation: fadeInUpSweet 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    background: linear-gradient(135deg, #E3E3E3 0%, #E3E3E3 30%, #E3E3E3 60%, #E3E3E3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    text-align: left;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 20px rgba(227, 227, 227, 0.3));
}

@keyframes fadeInUpSweet {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #E3E3E3;
    margin-bottom: 50px;
    max-width: 750px;
    animation: fadeInUpSweet 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUpSweet 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both, floatSweet 6s ease-in-out infinite 2s;
    position: relative;
    z-index: 2;
}

/* Simplified Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #456882, #234C6A);
    color: #E3E3E3;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(69, 104, 130, 0.4);
    border: 1px solid rgba(227, 227, 227, 0.2);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(69, 104, 130, 0.6);
    background: linear-gradient(135deg, #234C6A, #1B3C53);
}

/* Simplified Secondary Button */
.btn-secondary {
    background: transparent;
    color: #E3E3E3;
    border: 2px solid #456882;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #456882;
    color: #E3E3E3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(69, 104, 130, 0.4);
}

/* Logos Section */
.logos {
    display: flex;
    gap: 40px;
    overflow: hidden;
    padding: 60px 0;
    opacity: 0.9;
    animation: fadeInUpSweet 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(69, 104, 130, 0.1) 50%, transparent 100%);
}

.logo-scroll {
    display: flex;
    gap: 40px;
    animation: scrollLogos 40s linear infinite;
}

.logo-scroll:hover {
    animation-play-state: paused;
}

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

/* Floating Animation for Hero */
@keyframes floatSweet {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.logo-item {
    width: 140px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 227, 227, 0.15), rgba(227, 227, 227, 0.08));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: #E3E3E3;
    border: 1px solid rgba(69, 104, 130, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(69, 104, 130, 0.15);
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(69, 104, 130, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(69, 104, 130, 0.6);
    box-shadow: 
        0 12px 40px rgba(69, 104, 130, 0.5),
        0 0 30px rgba(35, 76, 106, 0.4),
        inset 0 0 30px rgba(69, 104, 130, 0.25);
    background: linear-gradient(135deg, rgba(227, 227, 227, 0.2), rgba(227, 227, 227, 0.12));
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.4s ease;
}

.logo-item:hover img {
    filter: brightness(1.3);
}

/* Stats Section */
.stats {
    padding: 120px 50px;
    text-align: center;
    background: #061E29;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(69, 104, 130, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.stats h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #E3E3E3;
}

.stats-subtitle {
    font-size: 18px;
    color: #E3E3E3;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Simplified Card Animations */
.stat-card {
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.6), rgba(35, 76, 106, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(69, 104, 130, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(69, 104, 130, 0.6);
    box-shadow: 0 20px 40px rgba(69, 104, 130, 0.4);
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.8), rgba(35, 76, 106, 0.8));
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    color: #E3E3E3;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E3E3E3 0%, #456882 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 14px;
    color: #E3E3E3;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
}

/* Process Section */
.process {
    padding: 120px 50px;
    background: #061E29;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(69, 104, 130, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.process h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #E3E3E3;
}

.process-subtitle {
    text-align: center;
    color: #E3E3E3;
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Simplified Process Cards */
.process-card {
    background: linear-gradient(135deg, rgba(35, 76, 106, 0.6), rgba(27, 60, 83, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(69, 104, 130, 0.3);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #456882, #234C6A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.process-card:hover::after {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(69, 104, 130, 0.6);
    box-shadow: 0 20px 40px rgba(69, 104, 130, 0.4);
    background: linear-gradient(135deg, rgba(35, 76, 106, 0.8), rgba(27, 60, 83, 0.8));
}

.process-number {
    color: #E3E3E3;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.process-card h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.process-card ul {
    list-style: none;
}

.process-card li {
    color: #E3E3E3;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    opacity: 0.9;
}

.process-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #456882;
}

/* Testimonials */
.testimonials {
    padding: 120px 50px;
    background: #061E29;
}

.testimonials h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    text-align: center;
    color: #E3E3E3;
    font-size: 18px;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.testimonial-slider {
    overflow: hidden;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(90deg, #061E29 0%, transparent 100%);
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(270deg, #061E29 0%, transparent 100%);
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 40s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.6), rgba(35, 76, 106, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 24px;
    min-width: 380px;
    flex-shrink: 0;
    border: 1px solid rgba(69, 104, 130, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(69, 104, 130, 0.7);
    box-shadow: 
        0 25px 60px rgba(69, 104, 130, 0.6),
        0 0 40px rgba(35, 76, 106, 0.4),
        inset 0 0 20px rgba(69, 104, 130, 0.2);
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.8), rgba(35, 76, 106, 0.8));
}

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

.testimonial-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #E3E3E3;
    font-size: 14px;
    opacity: 0.8;
}

/* Team Section */
.team {
    padding: 120px 50px;
    background: #061E29;
}

.team h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.team-subtitle {
    text-align: center;
    color: #E3E3E3;
    font-size: 18px;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Simplified Team Cards */
.team-card {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(69, 104, 130, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(69, 104, 130, 0.3);
    box-shadow: 0 15px 30px rgba(69, 104, 130, 0.3);
}

.team-card:hover .team-image {
    box-shadow: 0 15px 40px rgba(69, 104, 130, 0.6);
    border-color: #456882;
    transform: scale(1.05);
}

.team-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #234C6A, #1B3C53);
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 3px solid rgba(69, 104, 130, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Team photos */
.team-image.burak-photo {
    background-image: url('burak.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-image.tarik-photo {
    background-image: url('tarık.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-image.taha-photo {
    background-image: url('taha.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    color: #E3E3E3;
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    padding: 120px 50px;
    background: #061E29;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.faq h2 {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    text-align: center;
    color: #E3E3E3;
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* Simplified FAQ Items */
.faq-item {
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.6), rgba(35, 76, 106, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 40px;
    margin-bottom: 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(69, 104, 130, 0.3);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #456882, #234C6A);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(69, 104, 130, 0.6);
    box-shadow: 0 15px 30px rgba(69, 104, 130, 0.4);
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.8), rgba(35, 76, 106, 0.8));
}

.faq-question {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: #456882;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    min-width: 30px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #E3E3E3;
}

/* FAQ - Ultra Simple Approach */
.faq-answer {
    display: none;
    padding: 20px 0 0 0;
    color: #E3E3E3;
    line-height: 1.7;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-item.active .faq-answer {
    display: block;
}

/* İlk FAQ açık */
.faq-list .faq-item:first-child {
    /* İlk FAQ active olsun */
}

.faq-list .faq-item:first-child .faq-answer {
    display: block !important;
}

.faq-list .faq-item:first-child .faq-question::after {
    transform: rotate(45deg) !important;
    color: #E3E3E3 !important;
}

/* Footer */
footer {
    padding: 80px 50px 40px;
    background: #061E29;
    border-top: 1px solid rgba(69, 104, 130, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #E3E3E3;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #E3E3E3;
    opacity: 1;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #E3E3E3;
    background: linear-gradient(135deg, #E3E3E3 0%, #456882 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(69, 104, 130, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
    transform: translate(-50%, -50%);
    background: rgba(69, 104, 130, 0.15);
    box-shadow: 
        0 0 10px rgba(69, 104, 130, 0.4),
        0 0 20px rgba(35, 76, 106, 0.3),
        0 0 30px rgba(27, 60, 83, 0.2);
}

.cursor-follower.hover {
    width: 40px;
    height: 40px;
    border-color: rgba(69, 104, 130, 0.7);
    background: rgba(69, 104, 130, 0.2);
    box-shadow: 
        0 0 20px rgba(69, 104, 130, 0.6),
        0 0 40px rgba(35, 76, 106, 0.4),
        0 0 60px rgba(27, 60, 83, 0.3);
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(69, 104, 130, 0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out;
    box-shadow: 
        0 0 8px rgba(69, 104, 130, 0.7),
        0 0 15px rgba(35, 76, 106, 0.5);
}

/* Modern Enhancements */
.stats h2,
.process h2,
.testimonials h2,
.team h2,
.faq h2 {
    background: linear-gradient(135deg, #E3E3E3 0%, #456882 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(227, 227, 227, 0.2));
}

/* Enhanced Card Glow Effects */
.stat-card,
.process-card,
.testimonial-card,
.faq-item {
    position: relative;
}

.stat-card::after,
.process-card::after,
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(69, 104, 130, 0.3), rgba(35, 76, 106, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover::after,
.process-card:hover::after,
.testimonial-card:hover::after {
    opacity: 1;
}

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

/* Enhanced Text Shadows */
.hero h1 {
    text-shadow: 0 0 30px rgba(227, 227, 227, 0.2);
}

/* Modern Gradient Overlays */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(69, 104, 130, 0.5), transparent);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cursor-follower,
    .cursor-dot {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 20px 100px;
        align-items: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* FAQ Mobile Styles */
    .faq {
        padding: 80px 20px;
    }
    
    .faq-list {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .faq-item {
        padding: 25px 20px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        font-size: 16px;
        gap: 15px;
    }
    
    .faq-answer {
        font-size: 14px;
        padding: 15px 0 0 0;
    }
}

/* ============================= */
/* SAMPLE WEB PROJECTS SECTION   */
/* ============================= */

.sample-websites {
    width: 100%;
    padding: 120px 50px;
    background: #061E29;
    color: #E3E3E3;
    position: relative;
    overflow: hidden;
}

.sample-websites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(69, 104, 130, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.sample-websites .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sample-websites .section-title {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #E3E3E3 0%, #456882 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(227, 227, 227, 0.2));
}

.sample-websites .section-subtitle {
    text-align: center;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.website-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

/* Simplified Website Cards */
.website-card {
    display: block;
    padding: 40px 30px;
    border-radius: 24px;
    text-decoration: none;
    color: #E3E3E3;
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.6), rgba(35, 76, 106, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(69, 104, 130, 0.3);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.website-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #456882, #234C6A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.website-card:hover {
    transform: translateY(-10px);
    border-color: rgba(69, 104, 130, 0.6);
    box-shadow: 0 20px 40px rgba(69, 104, 130, 0.4);
    background: linear-gradient(135deg, rgba(27, 60, 83, 0.8), rgba(35, 76, 106, 0.8));
    color: #E3E3E3;
}

.website-card.digital::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #00e1ff;
    border-radius: 0 4px 4px 0;
}

.website-card.realestate::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #00d26a;
    border-radius: 0 4px 4px 0;
}

.website-card.restaurant::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ffba00;
    border-radius: 0 4px 4px 0;
}

.website-card.startup::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff4df0;
    border-radius: 0 4px 4px 0;
}

.website-card.ecommerce::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #667eea;
    border-radius: 0 4px 4px 0;
}

.website-card.fitness::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #ff4500;
    border-radius: 0 4px 4px 0;
}

.website-card h3 {
    margin: 0 0 15px;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.website-card p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
}
    

/* Missing Keyframe Animations */
@keyframes floatingLights {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(50px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(40px, 50px) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes fadeInUpSweet {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

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

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Clean animations without forced visibility */
/* Language Switcher */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    background: rgba(69, 104, 130, 0.2);
    border-radius: 20px;
    padding: 4px;
    border: 1px solid rgba(69, 104, 130, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(227, 227, 227, 0.7);
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-btn.active {
    background: linear-gradient(135deg, #456882, #234C6A);
    color: #E3E3E3;
    box-shadow: 0 2px 8px rgba(69, 104, 130, 0.4);
}

.lang-btn:hover:not(.active) {
    color: #E3E3E3;
    background: rgba(69, 104, 130, 0.3);
}

/* Mobile Navigation Update */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .language-switcher {
        margin-right: 0;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}
/* FORCE FAQ TO WORK */
.faq-answer {
    display: none !important;
    padding: 20px 0 !important;
    color: #E3E3E3 !important;
    line-height: 1.7 !important;
    font-size: 16px !important;
}

.faq-item.active .faq-answer {
    display: block !important;
}

.faq-list .faq-item:first-child {
    /* İlk FAQ active olsun */
}

.faq-list .faq-item:first-child .faq-answer {
    display: block !important;
}

.faq-list .faq-item:first-child .faq-question::after {
    transform: rotate(45deg) !important;
    color: #E3E3E3 !important;
}