/* ========== PROJECTS SAYFASI - ÖZEL STILLER ========== */
/* Header, footer ve genel stiller style.css'den gelir */

/* HERO BANNER */
.projects-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #312e81 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.projects-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.2), transparent 70%);
    pointer-events: none;
}

.projects-hero-content {
    position: relative;
    max-width: 800px;
    padding: 80px 24px;
    z-index: 2;
}

.projects-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #93c5fd;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.projects-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.projects-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.projects-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: #1e3a8a;
}

/* DALGA EFEKTİ */
.projects-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.projects-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.projects-hero-wave svg path {
    fill: #ffffff;
}

body.dark-mode .projects-hero-wave svg path {
    fill: #0a0f2a;
}

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

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

/* PROJE DETAY BÖLÜMÜ */
.project-detail {
    padding: 70px 0;
}

.project-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 16px;
}

body.dark-mode .project-header h2 {
    color: #60a5fa;
}

.project-tagline {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 20px;
}

body.dark-mode .project-tagline {
    color: #cbd5e1;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* PROJE BÖLÜMLERİ */
.project-section {
    margin-bottom: 60px;
}

.project-section h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.project-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 3px;
}

body.dark-mode .project-section h3 {
    color: #60a5fa;
}

.project-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
}

body.dark-mode .project-section p {
    color: #cbd5e1;
}

/* SORUNLAR GRID */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.problem-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

body.dark-mode .problem-card {
    background: #11173b;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-card h4 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 12px;
}

body.dark-mode .problem-card h4 {
    color: #60a5fa;
}

.problem-card p {
    color: #64748b;
    margin-bottom: 0;
}

body.dark-mode .problem-card p {
    color: #cbd5e1;
}

/* NASIL ÇALIŞIR - ADIMLAR */
.how-it-works {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 40px;
    border-radius: 24px;
}

body.dark-mode .how-it-works {
    background: linear-gradient(135deg, #0f142e, #11173b);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 16px;
    transition: transform 0.3s;
}

body.dark-mode .step {
    background: #1a1f3e;
}

.step:hover {
    transform: translateX(5px);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 8px;
}

body.dark-mode .step-content h4 {
    color: #60a5fa;
}

/* GÜVENLİK */
.security-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.security-card {
    text-align: center;
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s;
}

body.dark-mode .security-card {
    background: #11173b;
}

.security-card:hover {
    transform: translateY(-5px);
}

.security-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.security-card h4 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 12px;
}

body.dark-mode .security-card h4 {
    color: #60a5fa;
}

/* PROJE SAYFASI SSS */
.faq-grid-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item-projects {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    transition: transform 0.3s;
}

body.dark-mode .faq-item-projects {
    background: #11173b;
}

.faq-item-projects:hover {
    transform: translateY(-3px);
}

.faq-item-projects h4 {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 12px;
}

body.dark-mode .faq-item-projects h4 {
    color: #60a5fa;
}

.faq-item-projects p {
    margin-bottom: 0;
}

/* PROJE CTA */
.project-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    padding: 50px;
    border-radius: 24px;
    margin-top: 40px;
}

.project-cta p {
    color: white !important;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.project-cta strong {
    color: #fbbf24;
}

.project-cta .btn-primary {
    background: white;
    color: #1e3a8a;
}

.project-cta .btn-primary:hover {
    background: #e0e7ff;
}

/* DİĞER PROJELER */
.other-projects {
    padding: 70px 0;
    background-color: #f8fafc;
    text-align: center;
}

body.dark-mode .other-projects {
    background-color: #0f142e;
}

.other-projects h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 16px;
}

body.dark-mode .other-projects h2 {
    color: #60a5fa;
}

.coming-soon {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.coming-soon-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}

body.dark-mode .coming-soon-card {
    background: #11173b;
}

.coming-soon-card span {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.coming-soon-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 12px;
}

body.dark-mode .coming-soon-card h3 {
    color: #60a5fa;
}

.coming-soon-card p {
    color: #64748b;
}

body.dark-mode .coming-soon-card p {
    color: #cbd5e1;
}

/* ANA CTA */
.projects-main-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    text-align: center;
    color: white;
}

.projects-main-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.projects-main-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.85);
}

.projects-main-cta .btn-primary {
    background: white;
    color: #1e3a8a;
}

.projects-main-cta .btn-primary:hover {
    background: #e0e7ff;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .projects-hero {
        min-height: 450px;
    }
    
    .projects-hero-title {
        font-size: 2.2rem;
    }
    
    .projects-hero-subtitle {
        font-size: 1rem;
    }
    
    .projects-hero-buttons {
        gap: 12px;
    }
    
    .btn-outline-light {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .project-header h2 {
        font-size: 1.8rem;
    }
    
    .project-tagline {
        font-size: 1rem;
    }
    
    .project-section h3 {
        font-size: 1.5rem;
    }
    
    .how-it-works {
        padding: 24px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .project-cta {
        padding: 30px 20px;
    }
    
    .project-cta p {
        font-size: 0.95rem;
    }
    
    .projects-main-cta h2 {
        font-size: 1.6rem;
    }
    
    .projects-hero-wave svg {
        height: 35px;
    }
    
    .problems-grid {
        gap: 20px;
    }
    
    .security-grid {
        gap: 20px;
    }
    
    .faq-grid-projects {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .projects-hero-title {
        font-size: 1.8rem;
    }
    
    .projects-hero-badge {
        font-size: 0.7rem;
    }
    
    .project-header h2 {
        font-size: 1.5rem;
    }
    
    .project-section h3 {
        font-size: 1.3rem;
    }
}
