/* about-custom.css - Mavinokta Kurumsal Hakkımızda (Logolu Geniş Tasarım) */

.about-premium-section {
    background-color: #f8fafc !important;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

/* Mühendislik Hissiyatı Veren Nokta Deseni (Dot Matrix) */
.tech-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(15, 23, 42, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

/* İŞTE YENİ ARKA PLAN: Siyah Beyaz Dev Logo Filigranı */
.watermark-logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* Ekranın %65'ini kaplar */
    height: 65vh;
    background-image: url('/images/MavinoktaLogo.png'); /* Logonun yolu */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* Siyah beyaz yapıp, opaklığı çok düşürdük */
    filter: grayscale(100%) opacity(0.1);
    z-index: 0;
    pointer-events: none;
}

/* Devasa Başlık Tasarımı */
.mega-title {
    font-size: 4.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #0f172a;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #1e3a5f 0%, #05a0d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* İstatistik Alanı (Merkezlenmiş Şık Tasarım) */
.stat-item {
    border-bottom: 3px solid rgba(5, 160, 212, 0.15);
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

    .stat-item:hover {
        border-bottom-color: #05a0d4;
        transform: translateY(-3px);
    }

/* Modern Aksiyon Butonları */
.btn-premium-action {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: #ffffff;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

    .btn-premium-action:hover {
        background: linear-gradient(135deg, #05a0d4 0%, #1e3a5f 100%);
        color: #ffffff;
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(5, 160, 212, 0.3);
    }

.btn-about-outline {
    background-color: transparent;
    color: #1e3a5f;
    border: 2px solid rgba(30, 58, 95, 0.2);
    transition: all 0.3s ease;
}

    .btn-about-outline:hover {
        background-color: rgba(30, 58, 95, 0.05);
        border-color: #1e3a5f;
        color: #1e3a5f;
        transform: translateY(-4px);
    }

/* ====================================================
   BENTO BOX: DEĞERLERİMİZ KARTLARI (NEON IŞIKLI)
   ==================================================== */
.premium-value-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
    /* Normal Halde Gri Işık */
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 10px 35px rgba(148, 163, 184, 0.25) !important;
}

    .premium-value-card:hover {
        transform: translateY(-10px);
        z-index: 2;
        /* Üzerine Gelince Mavi Işık */
        border-color: rgba(5, 160, 212, 0.3);
        box-shadow: 0 20px 50px rgba(5, 160, 212, 0.35) !important;
    }

.val-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background-color: rgba(5, 160, 212, 0.08);
    color: #05a0d4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.premium-value-card:hover .val-icon-box {
    background-color: #05a0d4;
    color: #ffffff;
    transform: scale(1.1) rotate(10deg);
}

/* ====================================================
   MOBİL VE TABLET RESPONSİVE OPTİMİZASYONU
   ==================================================== */
@media (max-width: 991px) {
    .mega-title {
        font-size: 3.2rem;
        letter-spacing: -1px;
    }

    .watermark-logo {
        width: 80vw; /* Tablette logo biraz daha büyür */
    }
}

@media (max-width: 767px) {
    .about-premium-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .mega-title {
        font-size: 2.2rem;
    }

    .watermark-logo {
        width: 95vw; /* Mobilde tam ekrana yayılır */
        top: 35%;
        opacity: 0.03; /* Mobilde yazıyı boğmasın diye daha da sönük */
    }

    .about-text-content {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    /* Mobilde butonların tam genişlik (alt alta) kaplaması */
    .btn-premium-action, .btn-about-outline {
        width: 100%;
    }

    .premium-value-card {
        padding: 20px 10px;
    }

    .val-icon-box {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .value-title {
        font-size: 0.8rem;
    }
}
