﻿/* =========================================
           2. TEKNİK DESTEK ÖZEL CSS (OPTİMİZE EDİLMİŞ)
           ========================================= */

/* 1. Hero Banner: Şık ama Sade */
.support-hero {
    position: relative;
    padding: 100px 0;
    /* Yarı saydam görsel + mavi filtre = Okunaklı ve Profesyonel */
    background-image: linear-gradient(rgba(10, 31, 51, 0.9), rgba(15, 43, 70, 0.8)), url('https://images.unsplash.com/photo-1581093450021-4a7360e9a6b5?q=80&w=2070');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

    .support-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .support-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto 30px;
        font-weight: 300;
    }

.cta-btn {
    background: #25d366; /* WhatsApp Yeşili */
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

    .cta-btn:hover {
        background: #1ebc57;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    }

/* 2. Hizmet Kartları: Temiz ve Modern */
.services-wrapper {
    padding: 80px 0;
    background-color: white;
}

.tech-card {
    background: var(--light-bg);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

    .tech-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        border-color: var(--accent-orange);
    }

.tech-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.tech-card h4 {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tech-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 3. Acil Destek Şeridi: Vurgulu */
.urgent-bar {
    background-color: var(--dark-blue);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.urgent-phone {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

    .urgent-phone:hover {
        color: white;
    }

@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2.2rem;
    }

    .urgent-phone {
        font-size: 1.6rem;
    }
}
