/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #000000;
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-container {
    text-align: center;
    color: #ffffff;
}

/* Neural Loader */
.neural-loader {
    position: relative;
    margin-bottom: 3rem;
}

.neural-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 50%;
    animation: neuralRotate 3s linear infinite;
}

.neural-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00FFFF;
    border-radius: 50%;
    animation: neuralPulse 2s ease-in-out infinite;
}

.neural-dot:nth-child(1) { top: -4px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.neural-dot:nth-child(2) { top: 15%; right: -4px; animation-delay: 0.3s; }
.neural-dot:nth-child(3) { bottom: 15%; right: -4px; animation-delay: 0.6s; }
.neural-dot:nth-child(4) { bottom: -4px; left: 50%; transform: translateX(-50%); animation-delay: 0.9s; }
.neural-dot:nth-child(5) { bottom: 15%; left: -4px; animation-delay: 1.2s; }
.neural-dot:nth-child(6) { top: 15%; left: -4px; animation-delay: 1.5s; }

.loading-waves {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 2rem;
}

.wave {
    width: 4px;
    height: 30px;
    background: linear-gradient(to top, #FF0000, #00FFFF);
    border-radius: 2px;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.4s; }

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

@keyframes neuralPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    50% { 
        transform: scale(1.5);
        box-shadow: 0 0 20px rgba(0, 255, 255, 1);
    }
}

@keyframes waveAnimation {
    0%, 100% { height: 30px; }
    50% { height: 50px; }
}

.loading-brand .brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #FF0000;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.loading-message {
    color: #00FFFF;
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.typing-text {
    display: inline-block;
}

.loading-dots span {
    animation: loadingDots 1.5s infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.3s; }
.loading-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes loadingDots {
    0%, 60%, 100% { opacity: 0; }
    30% { opacity: 1; }
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF0000, #00FFFF);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    padding: 1rem 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo-hologram {
    position: relative;
    width: 45px;
    height: 45px;
}

.logo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
    position: relative;
    z-index: 2;
}

.hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.logo-text {
    margin: 0;
}

.logo-text .glitch {
    color: #FF0000;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #00FFFF;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #FF00FF;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
    15%, 49% { transform: translate(-2px, 1px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
    21%, 62% { transform: translate(2px, -1px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-block;
}

.nav-link:hover {
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF0000, #00FFFF);
    transition: width 0.3s ease;
}

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

.ai-assistant-btn {
    margin-left: 1rem;
}

.ai-btn {
    background: linear-gradient(45deg, #FF0000, #FF3333);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-weight: 600px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.ai-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;
}

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

.ai-btn:hover {
    background: linear-gradient(45deg, #FF3333, #FF0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.ai-icon {
    font-size: ;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1px); }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #FF0000;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #FF0000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

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

.neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF0000;
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.float-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-element:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.float-element:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }
.float-element:nth-child(4) { top: 40%; left: 90%; animation-delay: 1s; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

#matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-title .main-title {
    margin-top: 50px;
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FF0000, #00FFFF, #FF0000);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
    text-shadow: 
        0 0 20px rgba(255, 0, 0, 0.6),
        0 0 40px rgba(0, 255, 255, 0.4);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
}

.hero-title .brand-name {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #00FFFF;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.3rem;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    margin-top: 0.5rem;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 1),
        0 0 30px rgba(255, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF0000;
    display: block;
    margin-bottom: 0.5rem;
}

.counter-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.cta-button.primary-glow {
    background: linear-gradient(45deg, #FF0000, #FF3333);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.cta-button.primary-glow:hover {
    background: linear-gradient(45deg, #FF3333, #FF0000);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.cta-button.secondary-glow {
    background: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cta-button.secondary-glow:hover {
    background: #00FFFF;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

/* Hakkımızda Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #00FFFF);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.ai-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #00FFFF, #FF00FF);
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
    animation: line-glow 2s ease-in-out infinite alternate;
    display: block;
}

.ai-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -10px;
    right: -10px;
    bottom: -2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    border-radius: 4px;
    animation: line-sweep 3s ease-in-out infinite;
}

@keyframes line-glow {
    0% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.5); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.8); }
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Hizmetler Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.4);
    border-color: #00FFFF;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF0000, #FF3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00FFFF;
    font-weight: bold;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF0000;
    margin-bottom: 1.5rem;
}

/* Trusted Partners Section */
.trusted-partners-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.partners-title {
    text-align: center;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.partners-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 1rem 0;
}

.partner-slide {
    min-width: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    
    
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
   
    backdrop-filter: blur(10px);
    width: 200px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}




.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.logo-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
}

.slider-btn {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #FF4444, #FF0000);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Responsive Design for Partners */
@media (max-width: 850px) {
    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .partner-slide {
        min-width: 150px;
    }
    
    .partner-logo {
        width: 140px;
        height: 100px;
        padding: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .partners-slider {
        gap: 1rem;
    }
    
    .partner-slide {
        min-width: 120px;
    }
    
    .partner-logo {
        width: 110px;
        height: 80px;
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 0.7rem;
    }
}
/* İletişim Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

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

.contact .section-title {
    color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #000000;
    padding: 0 10px;
    color: #00FFFF;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00FFFF;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
    border-color: #FF0000;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF0000 0%, #FF3333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.contact-details h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.footer-logo-text h3 {
    color: #FF0000;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.footer-logo-text p {
    color: #00FFFF;
    font-size: 1rem;
    font-weight: 500;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FF0000, #00FFFF);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
}

.footer-nav a:hover {
    color: #00FFFF;
    border-left-color: #FF0000;
    transform: translateX(5px);
}

.footer-contact p {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00FFFF;
}

.footer-legal span {
    color: #555555;
}

/* Çerez Banner Stilleri */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid #FF0000;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #FF0000, #FF3333);
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, #FF3333, #FF0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.cookie-btn.settings {
    background: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
}

.cookie-btn.settings:hover {
    background: #00FFFF;
    color: #000000;
}

.cookie-link {
    color: #cccccc;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #ffffff;
}

/* AI Modal Stilleri */
.ai-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.ai-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid #FF0000;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.ai-modal-header {
    background: linear-gradient(135deg, #FF0000, #FF3333);
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.ai-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.ai-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ai-chat-container {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.ai-chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #000000;
}

.ai-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-direction: row-reverse;
}

.ai-avatar,
.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF0000, #FF3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.user-avatar {
    background: linear-gradient(135deg, #00FFFF, #0099CC);
}

.ai-text,
.user-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 15px;
    color: #ffffff;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-text {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.2);
}

.ai-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.suggestion-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00FFFF;
    color: #00FFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-btn:hover {
    background: #00FFFF;
    color: #000000;
}

.ai-chat-input {
    padding: 1.5rem;
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
}

.ai-chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.8rem 1.2rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.ai-chat-input input:focus {
    outline: none;
    border-color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.ai-chat-input button {
    background: linear-gradient(135deg, #FF0000, #FF3333);
    border: none;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ai-chat-input button:hover {
    background: linear-gradient(135deg, #FF3333, #FF0000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

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

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .ai-assistant-btn {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .hero-title .main-title {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-title .brand-name {
        font-size: 1.4rem;
        letter-spacing: 0.2rem;
        margin-top: 0.3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .ai-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .ai-chat-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
    }
}



/* Hakkımızda Bölümü - Yeni Grid Yapısı */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.about-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stats {
    padding: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #FF0000;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.stat-icon {
    color: #00FFFF;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF0000;
    margin-bottom: 10px;
}

.stat-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00FFFF;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.feature-icon {
    color: #00FFFF;
    margin-bottom: 20px;
}

.feature-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-desc {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Referanslar Bölümü - 4'lü Grid Yapısı */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #00FFFF;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF0000, #00FFFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #cccccc;
    font-size: 0.85rem;
}

.clients-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 1),
        0 0 30px rgba(255, 0, 0, 0.3);
    position: relative;
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #00FFFF, #FF00FF);
    border-radius: 2px;
    animation: line-glow 2s ease-in-out infinite alternate;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.client-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    border-color: #FF0000;
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
}

.logo-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #FF0000;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.metric-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #FF0000;
    margin-bottom: 10px;
}

.metric-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Tasarım Optimizasyonu */
@media (max-width: 1400px) {
    .about-grid {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-info,
    .about-stats {
        padding: 30px 20px;
    }
    
    .testimonial-card,
    .feature-card,
    .stat-card,
    .metric-card {
        padding: 25px 15px;
    }
}

/* Zoom %80 Optimizasyonu */
@media (min-width: 1200px) and (max-width: 1600px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .features-grid,
    .testimonials-grid,
    .clients-grid,
    .success-metrics {
        gap: 25px;
    }
    
    .feature-card,
    .testimonial-card,
    .stat-card,
    .metric-card {
        padding: 25px 20px;
    }
    
    .stat-number,
    .metric-number {
        font-size: 2.2rem;
    }
}

/* Ultra-wide ekranlar için */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
    
    .features-grid,
    .testimonials-grid,
    .clients-grid,
    .success-metrics {
        gap: 40px;
    }
}


/* Hizmetler 6'lı Grid Stilleri */
.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .services-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Portfolyo Grid Stilleri */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

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

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

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

.portfolio-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-tags span {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.portfolio-btn {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-btn:hover {
    background: linear-gradient(135deg, #FF4444, #FF0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Testimonials Grid Stilleri */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.stars {
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF0000, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #888888;
    font-size: 0.9rem;
}

.client-logos {
    margin-top: 4rem;
    text-align: center;
}

.client-logos h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
}

.logo-icon {
    font-size: 2rem;
}

.logo-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* İletişim Link Stilleri */
.contact-link {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Footer Popup Modal Stilleri */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.legal-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.legal-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.legal-modal-close:hover {
    color: #FF0000;
}

.legal-modal h2 {
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-modal p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-modal h3 {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-modal ul {
    color: #e0e0e0;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-modal li {
    margin-bottom: 0.5rem;
}

/* Footer Link Stilleri */
.footer-links a {
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}



/* Demo Modal */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.demo-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    padding-bottom: 1rem;
}

.demo-modal-header h3 {
    color: #FF0000;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 0;
}

.demo-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.demo-modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: rotate(90deg);
}

.demo-modal-body p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* AI Assistant Improvements */
.ai-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ai-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #001a1a 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    height: 70vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.ai-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.ai-modal-header h3 {
    color: #00FFFF;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 0;
}

.ai-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ai-modal-close:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: rotate(90deg);
}

.ai-chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ai-chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(70vh - 140px);
}

.ai-message, .user-message {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    gap: 1rem;
}

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

.ai-avatar, .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ai-avatar {
    background: linear-gradient(135deg, #00FFFF, #0080FF);
}

.user-avatar {
    background: linear-gradient(135deg, #FF0000, #FF8000);
}

.ai-text, .user-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    color: #ffffff;
    line-height: 1.6;
    max-width: 80%;
}

.user-text {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.ai-text {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.ai-suggestions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-btn {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.4);
    color: #00FFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.ai-chat-input {
    display: flex;
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    gap: 1rem;
}

.ai-chat-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.ai-chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ai-chat-input input:focus {
    outline: none;
    border-color: #00FFFF;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.ai-chat-input button {
    background: linear-gradient(135deg, #00FFFF, #0080FF);
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-chat-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #00FFFF;
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .ai-modal-content {
        width: 95%;
        height: 80vh;
    }
    
    .demo-modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .ai-text, .user-text {
        max-width: 90%;
    }
    
    .ai-suggestions {
        flex-direction: column;
    }
    
    .suggestion-btn {
        text-align: center;
    }
}


/* Policy Modal */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.policy-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.policy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.policy-modal-header h3 {
    color: #FF0000;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 0;
}

.policy-modal-close {
    position: absolute;       /* ➤ Ekran içinde konumlandırmak için */
    top: 10px;                /* ➤ Yukarıdan 10px boşluk */
    right: 15px;
    z-index: 10000;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.policy-modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: rotate(90deg);
}

.policy-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.policy-modal-body h2 {
    color: #FF0000;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-modal-body h2:first-child {
    margin-top: 0;
}

.policy-modal-body p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-modal-body ul {
    color: #ffffff;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-modal-body li {
    margin-bottom: 0.5rem;
}

.policy-modal-body strong {
    color: #00FFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .policy-modal-header,
    .policy-modal-body {
        padding: 1rem;
    }
}


/* Video Gallery */
.video-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
    position: relative;
}

.video-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/ai-neural-background.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn:hover {
    background: linear-gradient(135deg, #FF4444, #FF0000);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.video-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.video-tags span {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.video-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.video-modal-header h3 {
    color: #FF0000;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 0;
}

.video-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: rotate(90deg);
}

.video-modal-body {
    padding: 0;
    flex: 1;
}

.video-modal-body video {
    width: 100%;
    height: auto;
    border-radius: 0 0 15px 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .video-modal-header,
    .video-modal-body {
        padding: 1rem;
    }
}


/* Enhanced AI Chatbot Styles */
.ai-message-bot .ai-message-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px 15px 15px 5px;
    padding: 1rem;
    color: #ffffff;
    line-height: 1.6;
    max-width: 80%;
}

.ai-message-user .ai-message-text {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
    border-radius: 15px 15px 5px 15px;
    padding: 1rem;
    color: #ffffff;
    margin-left: auto;
    max-width: 80%;
}

.ai-message-time {
    font-size: 0.7rem;
    color: #888888;
    margin-top: 0.5rem;
    text-align: right;
}

.ai-message-bot .ai-message-time {
    text-align: left;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0.5rem 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF0000;
    animation: typing-bounce 1.4s ease-in-out infinite both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
.typing-indicator span:nth-child(3) { animation-delay: 0s; }

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced Chat Input */
.ai-chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.ai-message-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 25px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    resize: none;
    min-height: 20px;
    max-height: 100px;
}

.ai-message-input:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.ai-message-input::placeholder {
    color: #888888;
}

.ai-send-btn {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ai-send-btn:hover {
    background: linear-gradient(135deg, #FF4444, #FF0000);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.ai-send-btn:active {
    transform: scale(0.95);
}

/* Enhanced Message Styling */
.ai-message-text strong {
    color: #00FFFF;
    font-weight: 600;
}

.ai-message-text code {
    background: rgba(0, 255, 255, 0.1);
    color: #00FFFF;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .ai-message-text {
        max-width: 90%;
        font-size: 0.9rem;
    }
    
    .ai-chat-input {
        padding: 0.8rem;
    }
    
    .ai-message-input {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .ai-send-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Enhanced Mobile Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-title .main-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-title .brand-name {
        font-size: 1.2rem;
        letter-spacing: 0.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        padding: 1rem;
        min-height: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-btn, .demo-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px; /* Touch target minimum */
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        padding-top: 1rem;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ai-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-btn, .demo-btn, .nav-link, .ai-btn {
        min-height: 48px;
        padding: 1rem;
    }
    
    .hamburger {
        padding: 1rem;
        min-height: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .portfolio-btn, .video-play-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Prevent horizontal scroll on all devices */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Better text rendering on mobile */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Improve tap targets */
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for mobile */
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
}


/* Portfolio Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.portfolio-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.portfolio-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.portfolio-modal-header h3 {
    color: #FF0000;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 0;
}

.portfolio-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.portfolio-modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: rotate(90deg);
}

.portfolio-modal-body {
    padding: 0;
    flex: 1;
    display: flex;
    overflow: hidden;
}

.portfolio-modal-body img {
    width: 50%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

.portfolio-modal-info {
    width: 50%;
    padding: 2rem;
    color: #ffffff;
    overflow-y: auto;
}

.portfolio-modal-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cccccc;
}

.portfolio-modal-details h4 {
    color: #00FFFF;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.portfolio-modal-details ul {
    list-style: none;
    padding: 0;
}

.portfolio-modal-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    padding-left: 1.5rem;
}

.portfolio-modal-details li:before {
    content: '▶';
    color: #FF0000;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.portfolio-modal-details li:last-child {
    border-bottom: none;
}

/* Responsive Portfolio Modal */
@media (max-width: 768px) {
    .portfolio-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .portfolio-modal-body {
        flex-direction: column;
    }
    
    .portfolio-modal-body img {
        width: 100%;
        max-height: 250px;
    }
    
    .portfolio-modal-info {
        width: 100%;
        padding: 1.5rem;
    }
    
    .portfolio-modal-header {
        padding: 1rem;
    }
    
    .portfolio-modal-header h3 {
        font-size: 1.2rem;
    }
}


/* Enhanced Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: #f0f0f0;
}

.small-text {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Enhanced CTA Buttons */
.cta-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #FF2222, #FF6666);
}

.cta-button.secondary {
    background: transparent;
    color: #00FFFF;
    border: 2px solid #00FFFF;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: #00FFFF;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}



