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

/* HERO BANNER - ÇOK ETKİLEYİCİ */
.solutions-detail-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a2a 0%, #0f0f3a 30%, #1a1a4a 70%, #0f0f3a 100%);
}

/* ARKA PLAN PARTİKÜLLERİ */
.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(96,165,250,0.4);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; top: 10%; left: 20%; animation-duration: 8s; }
.particle:nth-child(2) { width: 2px; height: 2px; top: 30%; left: 70%; animation-duration: 12s; }
.particle:nth-child(3) { width: 5px; height: 5px; top: 50%; left: 15%; animation-duration: 10s; }
.particle:nth-child(4) { width: 3px; height: 3px; top: 70%; left: 85%; animation-duration: 14s; }
.particle:nth-child(5) { width: 2px; height: 2px; top: 80%; left: 40%; animation-duration: 9s; }
.particle:nth-child(6) { width: 4px; height: 4px; top: 20%; left: 90%; animation-duration: 11s; }
.particle:nth-child(7) { width: 3px; height: 3px; top: 60%; left: 45%; animation-duration: 13s; }
.particle:nth-child(8) { width: 2px; height: 2px; top: 85%; left: 10%; animation-duration: 7s; }
.particle:nth-child(9) { width: 6px; height: 6px; top: 15%; left: 55%; animation-duration: 15s; }
.particle:nth-child(10) { width: 3px; height: 3px; top: 40%; left: 35%; animation-duration: 10s; }

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* AI ANİMASYON ÇEMBERLERİ */
.hero-ai-animation {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    z-index: 2;
}

.ai-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(96,165,250,0.05);
    border: 2px solid rgba(96,165,250,0.3);
    animation: pulseCircle 3s ease-in-out infinite;
}

.ai-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.ai-circle:nth-child(2) {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    animation-delay: 0.5s;
}

.ai-circle:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    animation-delay: 1s;
}

.ai-circle:nth-child(4) {
    width: 25%;
    height: 25%;
    top: 37.5%;
    left: 37.5%;
    animation-delay: 1.5s;
}

.ai-core {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(59,130,246,0.6);
    animation: pulseCore 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes pulseCircle {
    0%, 100% {
        border-color: rgba(96,165,250,0.3);
        transform: scale(1);
        background: rgba(96,165,250,0.02);
    }
    50% {
        border-color: rgba(96,165,250,0.8);
        transform: scale(1.05);
        background: rgba(96,165,250,0.05);
    }
}

@keyframes pulseCore {
    0%, 100% {
        box-shadow: 0 0 40px rgba(59,130,246,0.6);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(59,130,246,0.9);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 10;
    padding: 60px 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(96,165,250,0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 24px;
    border: 1px solid rgba(96,165,250,0.3);
}

.badge-icon {
    font-size: 1rem;
}

.hero-badge span:last-child {
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #c084fc, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59,130,246,0.5);
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 12px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: #1e3a8a;
    border-color: white;
}

.hero-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

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

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

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

/* HİZMET LİSTESİ BÖLÜMÜ */
.services-section {
    padding: 80px 0;
    background: #ffffff;
}

body.dark-mode .services-section {
    background: #0a0f2a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.services-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
}

/* HİZMET KARTLARI - ZENGİN TASARIM */
.service-detail-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

body.dark-mode .service-detail-card {
    background: #11173b;
    border-color: #1e2a5e;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}

.service-detail-card.premium {
    border: 2px solid #f59e0b;
    position: relative;
}

.service-detail-card.enterprise {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

body.dark-mode .service-detail-card.enterprise {
    background: linear-gradient(135deg, #11173b, #0f142e);
}

.service-card-header {
    position: relative;
    padding: 20px 24px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-large {
    font-size: 3rem;
    background: linear-gradient(135deg, #e0e7ff, #f0f4ff);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .service-icon-large {
    background: linear-gradient(135deg, #1e2a5e, #2d3a6e);
}

.service-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

.service-card-body {
    padding: 20px 24px;
}

.service-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

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

.service-card-body > p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

/* HIGHLIGHTS */
.service-highlights {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1e3a8a;
}

body.dark-mode .highlight-item {
    background: #1e2a5e;
    color: #cbd5e1;
}

.highlight-icon {
    font-size: 0.8rem;
}

/* FEATURES LIST */
.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #475569;
}

body.dark-mode .feature-item {
    color: #cbd5e1;
}

.feature-check {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
}

.service-card-footer {
    padding: 16px 24px 24px 24px;
    border-top: 1px solid #e2e8f0;
}

body.dark-mode .service-card-footer {
    border-top-color: #1e2a5e;
}

.service-link {
    display: inline-block;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

body.dark-mode .service-link {
    color: #60a5fa;
}

.service-link:hover {
    transform: translateX(5px);
}

/* TEKNOLOJİLER BÖLÜMÜ */
.tech-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

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

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    background: white;
    padding: 12px 28px;
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e3a8a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

body.dark-mode .tech-item {
    background: #11173b;
    color: #60a5fa;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* BAŞARI ÖYKÜLERİ */
.success-section {
    padding: 80px 0;
    background: #ffffff;
}

body.dark-mode .success-section {
    background: #0a0f2a;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.success-card {
    text-align: center;
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

body.dark-mode .success-card {
    background: #11173b;
    border-color: #1e2a5e;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
}

.success-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

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

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

.success-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

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

.success-author {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
}

/* SSS BÖLÜMÜ */
.faq-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

body.dark-mode .faq-detail-section {
    background: linear-gradient(135deg, #0f142e, #11173b);
}

.faq-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-detail-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

body.dark-mode .faq-detail-item {
    background: #11173b;
    border-color: #1e2a5e;
}

.faq-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question span {
    font-size: 1.5rem;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
}

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

.faq-answer {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    padding-left: 38px;
}

body.dark-mode .faq-answer {
    color: #cbd5e1;
}

/* CTA BÖLÜMÜ */
.detail-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    text-align: center;
    color: white;
}

.detail-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.detail-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}

.detail-cta .btn-primary {
    background: white;
    color: #1e3a8a;
    padding: 14px 38px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.detail-cta .btn-primary:hover {
    background: #e0e7ff;
    transform: translateY(-2px);
}

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

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* MOBİL UYUM */
@media (max-width: 1100px) {
    .hero-ai-animation {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .solutions-detail-hero {
        min-height: 580px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    .services-grid-detail {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card-body h3 {
        font-size: 1.1rem;
    }
    
    .service-highlights {
        gap: 10px;
    }
    
    .highlight-item {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .tech-grid {
        gap: 12px;
    }
    
    .tech-item {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-cta h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .detail-cta .btn-primary,
    .detail-cta .btn-outline-light {
        width: 80%;
        text-align: center;
    }
    
    .hero-wave-bottom svg {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .service-card-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-badge {
        align-self: flex-start;
    }
}
