/* Genel Reset ve Tipografi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    position: relative;
}

/* Arka Plan Teknolojik Detayı */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 10%, rgba(0, 119, 182, 0.04) 0%, transparent 60%);
    z-index: -1;
}

/* Ana Konteyner */
.main-container {
    max-width: 850px; /* 3 kart sığması için konteyner biraz genişletildi */
    width: 100%;
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    text-align: center;
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Logo */
.logo-wrapper {
    margin-bottom: 10px;
}

.brand-logo {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

/* İnce Ayırıcı Çizgi */
.custom-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
    margin: 25px auto;
    width: 90%;
}

/* Metin Alanı */
.message-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0b2545;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.message-content .blue-text {
    color: #0077b6;
}

.message-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* İlerleme Çubuğu */
.status-section {
    max-width: 70%;
    margin: 0 auto 30px auto;
}

.status-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.status-meta .ratio {
    color: #0077b6;
}

.bar-background {
    background: #f1f5f9;
    height: 8px;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
}

.bar-fill {
    background: linear-gradient(90deg, #0b2545, #0077b6);
    height: 100%;
    width: 85%;
    border-radius: 20px;
    animation: loadBar 1.8s ease-out forwards;
}

/* Hizmet Rozetleri */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.tag-badge {
    background: rgba(0, 119, 182, 0.06);
    border: 1px solid rgba(0, 119, 182, 0.12);
    color: #0077b6;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* İletişim Kartları Kart Yapısı (3 Sütunlu Grid) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column; /* Kart içi dikey yerleşim */
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 20px 14px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.contact-card:hover {
    background: #ffffff;
    border-color: #0077b6;
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.06);
    transform: translateY(-2px);
}

.contact-card i {
    font-size: 1.3rem;
    color: #0077b6;
    background: #ffffff;
    padding: 12px;
    border-radius: 50%; /* İkonları yuvarlak yaptık */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.contact-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-info .label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-info .value {
    font-size: 0.82rem;
    color: #1e293b;
    font-weight: 600;
    margin-top: 4px;
    word-break: break-all; /* E-postalar uzunsa taşma yapmasın */
}

/* Alt Bilgi */
footer {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Animasyon Tanımları */
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes loadBar {
    from { width: 0%; }
    to { width: 85%; }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Tablet ve mobilde alt alta sıralansın */
        gap: 12px;
    }
    .contact-card {
        flex-direction: row; /* Mobilde kart içi yatay yerleşim daha okunaklı olur */
        text-align: left;
        padding: 16px;
    }
    .contact-card i {
        border-radius: 12px;
    }
    .status-section {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 30px 16px;
    }
    .message-content h1 {
        font-size: 1.6rem;
    }
}