/* Temel Sıfırlama */
body.aesy-card-body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f6f8;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Kart Kutusu */
.aesy-card-container {
    width: 100%;
    max-width: 400px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin: 20px;
    text-align: center;
}

/* Header & Logo - GÜNCELLENDİ */
.aesy-header {
    background-color: #0f172a; /* Koyu Lacivert */
    color: #fff;
    padding: 30px 20px 60px 20px; /* Alttan boşluğu biraz artırdık ki fotoğrafla iç içe girmesin */
    text-align: center; /* Logoyu ortalar */
}

/* Logo Görsel Ayarları */
.aesy-logo-img {
    max-width: 180px; /* Logonun genişliğini sınırladık, çok devasa durmasın */
    height: auto;     /* Orantıyı koru */
    display: inline-block;
}

/* Eski .aesy-logo-text kodlarını silebilirsiniz, artık kullanılmıyor. */

/* Profil Fotoğrafı */
.aesy-profile {
    margin-top: -50px; /* Fotoğrafı yukarı taşı */
    padding: 0 20px;
}

.aesy-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: #fff;
}

.aesy-name {
    margin: 15px 0 5px 0;
    font-size: 22px;
    color: #0f172a;
}

.aesy-title {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buton Grubu */
.aesy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 25px;
}

.aesy-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s ease;
}

.aesy-btn:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

.aesy-btn i {
    font-size: 20px;
    margin-bottom: 8px;
    color: #0f172a;
}

.aesy-btn span {
    font-size: 13px;
    font-weight: 600;
}

/* Rehbere Kaydet Butonu */
.aesy-save-contact {
    padding: 0 25px 25px 25px;
}

.aesy-btn-primary {
    display: block;
    background-color: #0f172a;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.2);
}

.aesy-btn-primary:hover {
    background-color: #1e293b;
}

.aesy-btn-primary i {
    margin-right: 8px;
}

/* Adres */
.aesy-address {
    border-top: 1px solid #e2e8f0;
    padding: 20px;
    color: #64748b;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.aesy-footer {
    background-color: #f8fafc;
    padding: 15px;
    font-size: 12px;
    color: #94a3b8;
}