/* ================================================================
   [FILE] training-consulting.css
   [PURPOSE] Training & Consulting Page Styles
   [THEME] Strategy/Growth (Indigo Main + Teal Accents)
   ================================================================ */

/* --- RENK PALETİ --- */
:root {
    /* 1. SİTE ANA RENGİ (Başlıklar/Kartlar için Mor/Indigo) */
    --tc-primary: #6366f1;
    
    /* 2. GELİŞİM RENGİ (Grafikler/Hedefler için Turkuaz) */
    --tc-growth: #2dd4bf;     /* Teal - Büyüme ve Gelişim */
    --tc-accent: #f472b6;     /* Pink - Vurgu (Target/Skill) */
    
    /* Parlama Efekti */
    --tc-glow: rgba(99, 102, 241, 0.5);
    --growth-glow: rgba(45, 212, 191, 0.5);
}

/* --- HERO SECTION --- */
.tc-hero {
    /* Hizalama diğer sayfalarla birebir aynı */
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    
    /* ARKA PLAN: Mor/Indigo Parlama (Site geneliyle uyumlu) */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 20%),
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    
    background-color: var(--bg-body);
    border-bottom: 1px solid var(--border-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* BADGE (ETİKET) - Site Uyumu İçin Mor */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1); 
    color: var(--tc-primary); 
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-main);
    margin-bottom: 1.5rem;
}

/* BAŞLIK */
.tc-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex; gap: 1rem;
}

/* --- ANIMATION BOX (STRATEGY BOARD) --- */
.tc-anim-box {
    position: relative;
    height: 350px;
    
    /* Mor tonlu hafif arka plan */
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, rgba(0,0,0,0) 70%);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    
    overflow: hidden;
}

/* 1. BOARD GRID (Arka Plan Çizgileri) */
.board-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
}

/* 2. YÜKSELEN GRAFİK BARLARI */
.growth-chart {
    position: absolute;
    bottom: 50px; left: 40px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.bar {
    width: 30px;
    background: linear-gradient(to top, var(--tc-primary), var(--tc-growth));
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 15px var(--growth-glow);
    animation: growBar 3s ease-out infinite alternate;
    opacity: 0.9;
}

.b1 { height: 60px; animation-duration: 2.5s; }
.b2 { height: 90px; animation-duration: 3s; animation-delay: 0.2s; }
.b3 { height: 130px; animation-duration: 2.8s; animation-delay: 0.4s; }
.b4 { height: 180px; animation-duration: 3.2s; animation-delay: 0.6s; }

@keyframes growBar {
    0% { transform: scaleY(0.9); opacity: 0.7; }
    100% { transform: scaleY(1.1); opacity: 1; }
}

/* 3. YETKİNLİK KARTLARI (Skill Cards) */
.skill-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px;
    border-radius: 8px;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 5;
}

.skill-card i { font-size: 1.2rem; color: #fff; }

.skill-line {
    width: 30px; height: 3px;
    background: var(--tc-growth);
    border-radius: 2px;
}

/* Kart Pozisyonları */
.sc-1 { top: 30%; left: 20%; animation-delay: 0s; } /* Code */
.sc-2 { top: 20%; right: 30%; animation-delay: 1.5s; } /* Gear */
.sc-3 { bottom: 40%; right: 15%; animation-delay: 0.8s; } /* Pie Chart */

.sc-1 i { color: #60a5fa; }
.sc-2 i { color: #f472b6; }
.sc-3 i { color: var(--tc-growth); }

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

/* 4. HEDEF NOKTASI (Target Circle) */
.target-circle {
    position: absolute;
    top: 15%; right: 10%;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
}

.target-circle i {
    font-size: 2rem;
    color: var(--tc-accent);
    z-index: 2;
}

.target-ring {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px dashed var(--tc-accent);
    border-radius: 50%;
    animation: spinTarget 10s linear infinite;
}

@keyframes spinTarget {
    to { transform: rotate(360deg); }
}


/* --- CONTENT SECTION --- */
.tc-content {
    padding: 4rem 0 6rem 0;
}

.intro-text-center {
    max-width: 800px;
    margin: 0 auto 6rem auto; 
    text-align: center;
}
.intro-text-center h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.intro-text-center p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-heading {
    text-align: center;
    font-size: 1.75rem;
    color: #fff;
    margin-top: 4rem;
    margin-bottom: 5rem;
}

/* Kartlar Grid (Mor Vurgulu - Site Standardı) */
.benefit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem; 
    margin-bottom: 6rem;
}

.benefit-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--tc-primary); /* Mor Kenarlık */
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.2);
}

.benefit-icon {
    width: 50px; height: 50px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--tc-primary);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
}
.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Use Cases */
.use-cases-wrapper {
    margin-bottom: 6rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
}

.use-case-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: 0.3s;
    cursor: default;
}

.use-case-item:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--tc-primary);
    transform: scale(1.02);
}

.uc-icon {
    font-size: 2rem;
    color: var(--tc-primary);
    margin-bottom: 1rem;
}

.use-case-item span {
    color: var(--text-main);
    font-weight: 500;
}

.bottom-cta {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-ctas { justify-content: center; }
    .hero-badge { margin: 0 auto 1.5rem auto; }
    
    .tc-anim-box {
        height: 250px;
    }
    
    /* Mobilde grafikleri biraz küçült */
    .growth-chart { left: 20px; }
    .bar { width: 20px; }
    .b4 { height: 140px; }
    
    .benefit-cards-grid { gap: 2rem; margin-bottom: 4rem; }
    .section-heading { margin-bottom: 3rem; margin-top: 3rem; }
}

