/* =============================================
   HİZMETLER SAYFASI STİLLERİ
   AKTEKNİK v2.0
   ============================================= */

/* Hero */
.services-hero {
    position: relative;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}
.shape-1 { width: 400px; height: 400px; background: #4361ee; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: #7209b7; bottom: -80px; left: -80px; }
.shape-3 { width: 200px; height: 200px; background: #f72585; top: 40%; left: 60%; }
.hero-badge {
    display: inline-block;
    background: rgba(67,97,238,0.15);
    color: #818cf8;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(67,97,238,0.2);
}
.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}
.hero-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(67,97,238,0.4); color: #fff; }
.btn-hero-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

/* Service Premium Cards */
.service-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #7209b7);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.service-card-premium:hover::before { opacity: 1; }
.card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
}
.gradient-1 { background: linear-gradient(135deg, #4361ee, #3a0ca3); }
.gradient-2 { background: linear-gradient(135deg, #7209b7, #560bad); }
.gradient-3 { background: linear-gradient(135deg, #f72585, #b5179e); }
.gradient-4 { background: linear-gradient(135deg, #4cc9f0, #4895ef); }
.service-card-premium h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}
.service-card-premium p { color: #6b7280; font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.85rem;
    color: #374151;
}
.card-features li i { color: #4361ee; font-size: 0.8rem; }
.card-link {
    display: inline-flex;
    align-items: center;
    color: #4361ee;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.card-link:hover { color: #3a0ca3; gap: 8px; }

/* Stats */
.stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    margin: -40px 20px 0;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 48px 32px;
}
.stat-item { padding: 16px; }
.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    display: inline;
}
.stat-plus { display: inline; font-size: 2rem; font-weight: 700; color: #4361ee; }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 4px; }

/* Section styles */
.section-badge {
    display: inline-block;
    background: rgba(67,97,238,0.1);
    color: #4361ee;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
}

/* Why Us Cards */
.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0f4ff, #e8eeff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #4361ee;
    margin: 0 auto 16px;
}
.why-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.why-card p { color: #6b7280; font-size: 0.85rem; line-height: 1.5; margin: 0; }

/* Workflow */
.workflow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.workflow-step {
    text-align: center;
    max-width: 200px;
    padding: 16px;
}
.step-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(67,97,238,0.15);
    margin-bottom: 8px;
    line-height: 1;
}
.workflow-step h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.workflow-step p { color: #6b7280; font-size: 0.8rem; line-height: 1.5; }
.workflow-connector { display: flex; align-items: center; color: #d1d5db; font-size: 1.5rem; padding-top: 24px; }

/* CTA Gradient */
.cta-gradient {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 50%, #7209b7 100%);
    padding: 80px 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-section { margin: -20px 10px 0; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 1.8rem; }
    .services-hero { padding: 60px 0 50px; }
    .stats-grid { grid-template-columns: 1fr 1fr; padding: 32px 16px; }
    .stat-number { font-size: 2rem; }
    .workflow-connector { display: none; }
    .workflow-steps { flex-direction: column; align-items: center; }
    .section-title { font-size: 1.6rem; }
}
