﻿/* =========================================
           6. DİJİTAL ÖLÇME ÖZEL CSS
           ========================================= */

/* Banner Alanı */
.digital-hero {
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

    .digital-hero::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        /* Hafif bulanık teknolojik arka plan */
        background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070');
        background-size: cover;
        background-position: center;
        filter: blur(5px);
        z-index: -2;
    }

    .digital-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 31, 51, 0.7); /* Mavi perde */
        z-index: -1;
    }

    .digital-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }

    .digital-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 40px;
        font-weight: 300;
    }

/* Ürün Kartları (Sade) */
.digital-section {
    padding: 60px 0;
    background-color: #fff;
}

.digital-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .digital-card:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        transform: translateY(-5px);
        border-color: var(--accent-orange);
    }

.digital-img-box {
    height: 250px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    position: relative;
}
    /* Büyüteç */
    .digital-img-box::after {
        content: '\f00e';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        color: var(--accent-orange);
        font-size: 1.5rem;
        opacity: 0;
        transition: 0.3s;
        transform: scale(0.5);
    }

    .digital-img-box:hover::after {
        opacity: 1;
        transform: scale(1);
    }

    .digital-img-box:hover img {
        opacity: 0.8;
    }

    .digital-img-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: 0.3s;
    }

.digital-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.digital-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.digital-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

.digital-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #555;
    text-align: left;
    display: inline-block;
}

    .digital-specs li {
        margin-bottom: 5px;
        display: flex;
        align-items: center;
    }

        .digital-specs li i {
            color: var(--accent-orange);
            margin-right: 8px;
            width: 15px;
        }

.btn-digital {
    background: var(--primary-blue);
    color: white;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    transition: 0.3s;
}

    .btn-digital:hover {
        background: var(--accent-orange);
    }

/* MONTAJ HİZMETİ BANNER (YENİLENDİ: RESİMLİ VE BLURLU) */
.service-banner-image {
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

    .service-banner-image::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        /* Montaj/Servis ile ilgili görsel */
        background-image: url('https://images.unsplash.com/photo-1581093450021-4a7360e9a6b5?q=80&w=2070');
        background-size: cover;
        background-position: center;
        filter: blur(4px); /* Blur efekti */
        z-index: -2;
    }

    .service-banner-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 31, 51, 0.75); /* Koyu Perde */
        z-index: -1;
    }

/* İçerik ön planda ve tıklanabilir */
.service-content {
    position: relative;
    z-index: 2;
}

.service-banner-image h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-banner-image p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .digital-hero h1 {
        font-size: 2.2rem;
    }

    .digital-img-box {
        height: 200px;
    }

    .digital-specs {
        display: block;
    }

    .service-banner-image {
        text-align: center;
        padding: 60px 0;
    }

        .service-banner-image .text-lg-end {
            margin-top: 20px;
        }
}
