/* Genel Stil */
:root {
    --coral: #FF5F5D;
    --teal: #3F7C85;
    --white: #F9F9F9;
    --carbon: #2D2D2D;
    --mango: #FFBD69;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--carbon);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background-color: var(--carbon);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 10%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    position: relative;
}

.logo span {
    color: var(--coral);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--mango);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--coral);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--coral);
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 150px 10% 50px;
    text-align: center;
    background-color: var(--carbon);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 95, 93, 0.1) 0%, rgba(45, 45, 45, 1) 70%);
    z-index: 1;
}

/* Animation Container */
.animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 2rem 0;
}

/* Audio Visualizer */
.audio-visualizer {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.audio-visualizer .bar {
    width: 4px;
    background: linear-gradient(to top, var(--coral), var(--mango));
    border-radius: 2px;
    animation: audioWave 1.2s ease-in-out infinite;
}

.audio-visualizer .bar:nth-child(1) { height: 40px; animation-delay: 0s; }
.audio-visualizer .bar:nth-child(2) { height: 60px; animation-delay: 0.1s; }
.audio-visualizer .bar:nth-child(3) { height: 80px; animation-delay: 0.2s; }
.audio-visualizer .bar:nth-child(4) { height: 100px; animation-delay: 0.3s; }
.audio-visualizer .bar:nth-child(5) { height: 120px; animation-delay: 0.4s; }
.audio-visualizer .bar:nth-child(6) { height: 100px; animation-delay: 0.5s; }
.audio-visualizer .bar:nth-child(7) { height: 80px; animation-delay: 0.6s; }
.audio-visualizer .bar:nth-child(8) { height: 60px; animation-delay: 0.7s; }
.audio-visualizer .bar:nth-child(9) { height: 40px; animation-delay: 0.8s; }
.audio-visualizer .bar:nth-child(10) { height: 60px; animation-delay: 0.9s; }
.audio-visualizer .bar:nth-child(11) { height: 80px; animation-delay: 1s; }
.audio-visualizer .bar:nth-child(12) { height: 100px; animation-delay: 1.1s; }
.audio-visualizer .bar:nth-child(13) { height: 80px; animation-delay: 1.2s; }
.audio-visualizer .bar:nth-child(14) { height: 60px; animation-delay: 1.3s; }
.audio-visualizer .bar:nth-child(15) { height: 40px; animation-delay: 1.4s; }
.audio-visualizer .bar:nth-child(16) { height: 60px; animation-delay: 1.5s; }
.audio-visualizer .bar:nth-child(17) { height: 80px; animation-delay: 1.6s; }
.audio-visualizer .bar:nth-child(18) { height: 100px; animation-delay: 1.7s; }
.audio-visualizer .bar:nth-child(19) { height: 80px; animation-delay: 1.8s; }
.audio-visualizer .bar:nth-child(20) { height: 60px; animation-delay: 1.9s; }

@keyframes audioWave {
    0%, 100% {
        transform: scaleY(0.3);
    }
    50% {
        transform: scaleY(1);
    }
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease;
}

.hero h1 span {
    color: var(--coral);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--coral);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.cta-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: all 0.4s ease;
}

.cta-btn:hover {
    background-color: var(--mango);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: var(--coral);
    border-radius: 50px;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

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

/* AI Upscale Animation */
.ai-upscale-animation {
    position: relative;
}

.pixel-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
    animation: pixelate 4s ease-in-out infinite;
}

.pixel {
    width: 20px;
    height: 20px;
    background-color: var(--coral);
    opacity: 0.5;
    border-radius: 2px;
    animation: pixelFlicker 0.5s ease-in-out infinite alternate;
}

.pixel:nth-child(odd) {
    animation-delay: 0.1s;
}

.pixel:nth-child(even) {
    animation-delay: 0.2s;
}

@keyframes pixelate {
    0%, 100% {
        filter: blur(0);
        transform: scale(1);
    }
    50% {
        filter: blur(2px);
        transform: scale(0.9);
    }
}

@keyframes pixelFlicker {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Hizmetler */
.services {
    padding: 6rem 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--carbon);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background-color: var(--coral);
}

.section-title p {
    color: var(--carbon);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--coral);
    transition: all 0.3s ease;
}

.service-card:hover::before {
    height: 10px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--coral);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

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

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 0.5s; }
.service-card:nth-child(3) .service-icon { animation-delay: 1s; }
.service-card:nth-child(4) .service-icon { animation-delay: 1.5s; }
.service-card:nth-child(5) .service-icon { animation-delay: 2s; }

.service-card:hover .service-icon {
    background-color: var(--teal);
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(63, 124, 133, 0.4);
}

.service-content {
    padding: 0 2rem 2rem;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--carbon);
}

.service-content p {
    color: var(--carbon);
    opacity: 0.7;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 6rem 10%;
    background-color: var(--teal);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg"><g fill="%23FFFFFF" fill-opacity="0.05"><circle cx="19" cy="19" r="3"/></g></svg>');
    z-index: 1;
}

.process .section-title h2,
.process .section-title p {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 4rem auto;
    position: relative;
    z-index: 2;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--coral);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
}

.process-arrow {
    color: var(--coral);
    font-size: 2rem;
    margin: 0 1rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--white);
    opacity: 0.9;
}

/* İletişim */
.contact {
    padding: 6rem 10%;
    background-color: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 95, 93, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--coral);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.success {
    background-color: #4CAF50;
}

.submit-btn.error {
    background-color: #f44336;
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status:not(:empty) {
    display: block;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}

/* Footer */
.footer {
    background-color: var(--carbon);
    padding: 3rem 10%;
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-logo span {
    color: var(--coral);
}

.footer p {
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer .location {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--coral);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--mango);
    transform: translateY(-3px);
}

.copyright {
    opacity: 0.5;
    font-size: 0.9rem;
}

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


/* Mobil Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--carbon);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        gap: 3rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .hero {
        padding: 120px 5% 50px;
        justify-content: flex-start;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services,
    .process,
    .contact {
        padding: 4rem 5%;
    }
    
    .process-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .animation-container {
        gap: 30px;
        flex-direction: column;
    }
    
    .pixel-grid {
        gap: 2px;
        grid-template-columns: repeat(6, 1fr);
    }
    
    .pixel {
        width: 15px;
        height: 15px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 5% 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 0.8rem 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .animation-container {
        gap: 20px;
    }
    
    .pixel-grid {
        gap: 2px;
        grid-template-columns: repeat(6, 1fr);
    }
    
    .pixel {
        width: 10px;
        height: 10px;
    }
    
    .audio-visualizer .bar {
        width: 3px;
    }
}