/* projeler.css — Projeler sayfası */

/* Hizmet kartları (services grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem; padding: 0 1.5rem 5rem;
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
}
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,245,255,0.2);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    transition: var(--transition); backdrop-filter: blur(16px);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-cyan);
    box-shadow: 0 20px 50px rgba(0,245,255,0.2);
}
.service-icon { font-size: 2.5rem; margin-bottom: 1.1rem; display: block; }
.service-card h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem; font-weight: 700;
    color: var(--brand-purple); margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-muted); line-height: 1.7;
    font-size: 0.9rem; margin-bottom: 1rem;
}
.service-features { list-style: none; margin-top: 1rem; }
.service-features li {
    color: var(--brand-cyan); padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative; font-size: 0.875rem; font-weight: 600;
}
.service-features li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--brand-cyan); font-weight: 700;
}

/* Kategori başlığı */
.category-section {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    padding: 0 1.5rem 4rem;
}
.category-title {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.4rem; font-weight: 700;
    color: #fff; margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,245,255,0.15);
}
.category-title span:first-child { font-size: 1.5rem; }
.category-divider {
    max-width: 1200px; margin: 0 auto 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.25), transparent);
}

/* Proje kartları */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}
.project-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,245,255,0.2);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    transition: var(--transition); backdrop-filter: blur(16px);
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
}
.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-purple);
    box-shadow: 0 20px 50px rgba(124,58,237,0.25);
}
.project-icon-img {
    width: 96px; height: 96px; border-radius: 22px;
    object-fit: contain; margin-bottom: 1.25rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.project-card:hover .project-icon-img { transform: scale(1.06); }
.project-card h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700;
    color: var(--brand-purple); margin-bottom: 0.4rem;
}
.project-subtitle {
    font-size: 0.875rem; color: var(--brand-cyan);
    font-weight: 700; margin-bottom: 1rem;
}
.project-card p.desc {
    color: var(--text-muted); line-height: 1.7;
    font-size: 0.875rem; margin-bottom: 1rem;
    text-align: left;
}
.project-features { list-style: none; width: 100%; margin: 0.75rem 0; text-align: left; }
.project-features li {
    color: var(--brand-cyan); padding: 0.35rem 0 0.35rem 1.6rem;
    position: relative; font-size: 0.85rem; font-weight: 600;
}
.project-features li::before {
    content: '⭐'; position: absolute; left: 0; font-size: 0.8rem;
}
.project-tags {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    justify-content: center; margin-top: 1rem;
}
.tag {
    background: rgba(124,58,237,0.12);
    color: #c4b5fd; padding: 0.3rem 0.75rem;
    border-radius: 20px; font-size: 0.75rem; font-weight: 700;
    border: 1px solid rgba(124,58,237,0.3);
}
.badge-new {
    position: absolute; top: 14px; right: 14px;
    background: var(--brand-purple);
    color: #fff; font-size: 0.65rem; font-weight: 800;
    padding: 3px 10px; border-radius: 20px;
    letter-spacing: 0.08em; text-transform: uppercase;
    font-family: var(--font-heading);
}

/* Yakında kartı */
.placeholder-card {
    background: rgba(255,255,255,0.02);
    border: 2px dashed rgba(0,245,255,0.2);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    min-height: 260px;
}
.placeholder-card:hover { border-color: rgba(0,245,255,0.4); }
.placeholder-icon { font-size: 3rem; opacity: 0.2; margin-bottom: 1rem; }
.placeholder-title { color: rgba(0,245,255,0.35) !important; font-size: 1.2rem !important; }
.placeholder-sub   { color: rgba(0,245,255,0.25) !important; }
.placeholder-desc  { color: rgba(192,192,255,0.25) !important; font-size: 0.82rem !important; }
.placeholder-number {
    position: absolute; top: 12px; left: 16px;
    font-size: 0.72rem; font-weight: 800;
    color: rgba(0,245,255,0.25);
}
.placeholder-dots { display: flex; gap: 8px; margin-top: 1rem; }
.placeholder-dots span {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(124,58,237,0.35);
    animation: pulseDot 1.5s ease-in-out infinite;
}
.placeholder-dots span:nth-child(2) { animation-delay: 0.3s; }
.placeholder-dots span:nth-child(3) { animation-delay: 0.6s; }
@keyframes pulseDot {
    0%,100% { opacity: 0.2; transform: scale(0.8); }
    50%      { opacity: 0.7; transform: scale(1.2); }
}
