﻿/* mobile-development.css */

/* Mobile Hero Section */
.mobile-hero {
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-tech-stack {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 2rem 0 2.5rem;
}

.tech-pill {
    padding: 0.6rem 1.2rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 25px;
    color: var(--text-glow);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .tech-pill i {
        color: var(--accent-neon);
        font-size: 1rem;
    }

    .tech-pill:hover {
        background: rgba(0, 243, 255, 0.2);
        border-color: var(--accent-neon);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
    }

/* Mobile Frames */
.mobile-frames {
    position: absolute;
    right: 5%;
    top: 100%;
    transform: translateY(-50%);
    display: flex;
    gap: 2rem;
}

.phone-frame {
    width: 200px;
    height: 400px;
    background: #1a1a2e;
    border-radius: 30px;
    padding: 10px;
    border: 2px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-1 {
    animation-delay: 0s;
}

.phone-2 {
    animation-delay: -3s;
    transform: translateY(50px);
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    padding: 1rem;
    overflow: hidden;
}

    .phone-screen .app-icon {
        width: 50px;
        height: 50px;
        background: rgba(0, 243, 255, 0.2);
        border-radius: 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0.5rem;
        color: var(--accent-neon);
        font-size: 1.5rem;
        border: 1px solid rgba(0, 243, 255, 0.3);
        animation: pulseIcon 2s infinite;
    }

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.code-snippet {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.7rem;
}

    .code-snippet .keyword {
        color: #569cd6;
    }

    .code-snippet .class {
        color: #4ec9b0;
    }

/* Services Section */
.mobile-services {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(26, 26, 46, 0.6) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
        transition: left 0.6s;
    }

    .service-card:hover::before {
        left: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-neon);
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
    }

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(0, 243, 255, 0.2);
    transform: scale(1.1) rotate(360deg);
    border-color: var(--accent-neon);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-glow);
    font-family: 'Orbitron', sans-serif;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

    .service-features li {
        padding: 0.5rem 0;
        color: var(--text-glow);
        opacity: 0.9;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .service-features i {
        color: var(--accent-cyan);
        font-size: 0.9rem;
    }

/* Architecture Section */
.architecture-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 100%);
}

.architecture-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.arch-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .arch-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent-neon);
        box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
    }

.arch-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-neon);
    border: 2px solid rgba(0, 243, 255, 0.3);
}

.arch-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-glow);
}

.arch-card p {
    opacity: 0.8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.arch-desc {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    opacity: 0.8;
}

.arch-arrow {
    color: var(--accent-neon);
    font-size: 1.5rem;
    animation: arrowPulse 1.5s infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Features Section */
.features-section {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        border-color: var(--accent-neon);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 243, 255, 0.1);
    }

    .feature-item i {
        font-size: 2.5rem;
        color: var(--accent-neon);
        margin-bottom: 1rem;
    }

    .feature-item h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-glow);
    }

    .feature-item p {
        opacity: 0.7;
        font-size: 0.9rem;
        line-height: 1.5;
    }

/* Dev Tools Section */
.devtools-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #151528 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tool-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

    .tool-item:hover {
        border-color: var(--accent-neon);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 243, 255, 0.1);
    }

    .tool-item i {
        font-size: 2rem;
        color: var(--accent-neon);
    }

    .tool-item span {
        font-weight: 600;
        color: var(--text-glow);
        font-size: 0.9rem;
        text-align: center;
    }

/* Platform Icons */
.platform-icons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

    .platform-icons i {
        font-size: 1.2rem;
        color: var(--accent-cyan);
    }

/* Tech Categories */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
}

    .tech-category h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-glow);
        font-family: 'Orbitron', sans-serif;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

        .tech-category h3 i {
            color: var(--accent-neon);
        }

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .tech-item:hover {
        background: rgba(0, 243, 255, 0.1);
        transform: translateX(10px);
    }

    .tech-item i {
        font-size: 1.5rem;
        color: var(--accent-neon);
        width: 30px;
    }

    .tech-item span {
        flex: 1;
        color: var(--text-glow);
        font-weight: 600;
    }

.tech-level {
    background: rgba(0, 243, 255, 0.15);
    color: var(--accent-cyan);
    padding: 0.2rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.portfolio-card {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a3a 0%, #1a1a2a 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    background: rgba(0, 243, 255, 0.2);
    color: var(--accent-neon);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-glow);
}

.portfolio-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0;
}

    .portfolio-tech span {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-cyan);
        padding: 0.2rem 0.8rem;
        border-radius: 12px;
        font-size: 0.8rem;
    }

.portfolio-more {
    text-align: center;
}

/* FAQ Section */
/* FAQ Section - Ek düzenlemeler */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: rgba(0, 243, 255, 0.05);
    }

    .faq-question h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-glow);
        margin: 0;
        pointer-events: none; /* Tıklama sorunlarını önler */
    }

    .faq-question i {
        color: var(--accent-neon);
        transition: transform 0.3s ease;
        pointer-events: none; /* Tıklama sorunlarını önler */
    }

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    color: var(--text-glow);
}

/* CTA Section */
.mobile-cta {
    padding: 6rem 5%;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-glow);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .mobile-frames {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .architecture-grid {
        flex-direction: column;
    }

    .arch-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tech-stack {
        justify-content: center;
    }

    .services-grid,
    .tech-categories,
    .features-grid,
    .portfolio-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}
