.support-hero {
    background: radial-gradient(120% 100% at 50% 0%, #0f172a 50%, #1e1b4b 100%);
    padding: 140px 0 160px; /* Alt tarafı biraz uzun tuttuk ki kartlar üstüne binsin */
    position: relative;
    text-align: center;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-pattern {
    position: absolute; inset: 0; opacity: 0.1;
    background-image: radial-gradient(#6366f1 1px, transparent 1px);
    background-size: 40px 40px; pointer-events: none;
}

.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #a5b4fc; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -1px;
}
.hero-subtitle {
    color: #94a3b8; font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px;
}

/* Arama Kutusu */
.search-container {
    max-width: 700px; margin: 0 auto; position: relative;
}
.search-box {
    background: white; border-radius: 16px; padding: 8px;
    display: flex; align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.search-box:focus-within { transform: translateY(-2px) scale(1.01); }

.search-icon {
    width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
    color: #64748b; font-size: 1.2rem;
}
.search-input {
    flex: 1; height: 60px; border: none; outline: none; font-size: 1.1rem; color: #1e293b;
}
.search-btn {
    background: #3b82f6; color: white; border: none; height: 60px; padding: 0 30px;
    border-radius: 12px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.search-btn:hover { background: #2563eb; }


/* 2. BODY SECTION (Light & Cards) */
.support-body {
    background: #f8fafc; padding-bottom: 100px; position: relative;
}

.content-wrapper {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    position: relative; top: -80px; /* Hero'nun içine girsin */
    z-index: 10;
}

/* Kategori Grid */
.topics-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px;
}

.topic-card {
    background: white; padding: 40px 30px; border-radius: 24px;
    border: 1px solid #e2e8f0; text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; position: relative; overflow: hidden;
}
.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.icon-box {
    width: 70px; height: 70px; margin: 0 auto 25px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
    transition: 0.3s;
}
.topic-card:hover .icon-box { transform: scale(1.1) rotate(5deg); }

.topic-title { font-size: 1.25rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.topic-desc { color: #64748b; font-size: 0.95rem; line-height: 1.6; }
.topic-link {
    color: #3b82f6; font-weight: 700; margin-top: 20px; display: inline-block;
    font-size: 0.9rem; opacity: 0; transform: translateY(10px); transition: 0.3s;
}
.topic-card:hover .topic-link { opacity: 1; transform: translateY(0); }

/* Renk Temaları */
.bg-blue { background: #eff6ff; color: #3b82f6; }
.bg-green { background: #f0fdf4; color: #22c55e; }
.bg-purple { background: #faf5ff; color: #a855f7; }
.bg-orange { background: #fff7ed; color: #f97316; }
.bg-red { background: #fef2f2; color: #ef4444; }
.bg-indigo { background: #e0e7ff; color: #4338ca; }


/* 3. TICKET ACTION SECTION */
.ticket-section {
    background: white; border-radius: 24px; padding: 50px;
    border: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: space-between;
    gap: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.ticket-text h3 { font-size: 1.8rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.ticket-text p { color: #64748b; font-size: 1.1rem; max-width: 500px; }

.ticket-actions { display: flex; gap: 15px; }
.btn-ticket {
    padding: 15px 30px; border-radius: 12px; font-weight: 700; text-decoration: none;
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}
.btn-create { background: #0f172a; color: white; }
.btn-create:hover { background: #3b82f6; transform: translateY(-2px); }

.btn-check { background: white; color: #0f172a; border: 2px solid #e2e8f0; }
.btn-check:hover { border-color: #0f172a; background: #f8fafc; }


/* 4. CONTACT STRIP */
.contact-strip {
    margin-top: 60px; text-align: center;
}
.contact-title { font-weight: 700; color: #94a3b8; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 20px; }
.contact-grid {
    display: inline-flex; gap: 40px; align-items: center; justify-content: center;
    flex-wrap: wrap;
}
.contact-item {
    display: flex; align-items: center; gap: 12px; color: #475569; font-weight: 600;
    transition: 0.3s; cursor: pointer; padding: 10px 20px; border-radius: 50px;
}
.contact-item:hover { background: white; color: #3b82f6; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.contact-icon { font-size: 1.2rem; }


/* RESPONSIVE */
@media (max-width: 1024px) {
    .topics-grid { grid-template-columns: repeat(2, 1fr); }
    .ticket-section { flex-direction: column; text-align: center; padding: 30px; }
    .ticket-actions { flex-direction: column; width: 100%; }
    .btn-ticket { justify-content: center; }
}
@media (max-width: 640px) {
    .hero-title { font-size: 2.5rem; }
    .topics-grid { grid-template-columns: 1fr; }
    .search-btn { padding: 0 15px; }
    .search-btn span { display: none; } /* Mobilde "Ara" yazısını gizle, sadece ikon kalsın */
}