﻿
/* ===================================================================
           kh-card : صفحة "كل روابطي" الخاصة بكمال الدين حسين
           كل القواعد هنا محصورة جوه .kh-card عشان محدش يتعارض مع تنسيق باقي الموقع
           =================================================================== */
.kh-card {
    --kh-navy: #0E2A3D;
    --kh-navy-2: #163C55;
    --kh-gold: #C89B3C;
    --kh-teal: #157B80;
    --kh-ivory: #F6F1E7;
    --kh-ink: #1B2733;
    --kh-line: #E4DBC7;
    max-width: 430px;
    margin: 0 auto;
    padding: 28px 20px 60px;
    background: var(--kh-ivory);
    color: var(--kh-ink);
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    position: relative;
    overflow: hidden;
}

/* موجة خلفية خفيفة خلف الهيدر - العنصر المميز للتصميم */
.kh-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(21,123,128,0.16) 0%, rgba(21,123,128,0) 70%);
    z-index: 0;
}

.kh-card * {
    box-sizing: border-box;
}

.kh-header {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 6px;
}

.kh-avatar {
    width: 108px;
    height: 108px;
    object-fit: cover;
    display: block;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 3px solid var(--kh-gold);
    box-shadow: 0 2px 10px rgba(14,42,61,0.18);
}

.kh-flag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6B7686;
    margin: 2px 0 0;
}

.kh-name-en {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--kh-teal);
    margin: 0 0 4px;
}

.kh-name-ar {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--kh-navy);
    margin: 0;
}

.kh-title {
    font-size: 13px;
    color: #6B7686;
    margin: 6px 0 0;
}

/* خط الموجة الفاصل - توقيع بصري بسيط يتكرر مرة واحدة بس */
.kh-wave {
    display: block;
    width: 100%;
    height: 18px;
    margin: 22px 0 26px;
}

.kh-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--kh-navy);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

    .kh-save svg {
        width: 15px;
        height: 15px;
        fill: #fff;
    }

.kh-section {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.kh-section-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--kh-navy);
    margin: 0 0 12px;
    padding-right: 12px;
    border-right: 4px solid var(--kh-gold);
}

/* ---- روابط الأعمال (كروت بصفين نص) ---- */
.kh-biz {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--kh-line);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
    text-decoration: none !important;
    color: inherit;
    transition: border-color .15s ease, transform .15s ease;
}

    .kh-biz:hover, .kh-biz:focus-visible {
        border-color: var(--kh-teal);
        transform: translateY(-1px);
    }

.kh-biz-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kh-ivory);
}

    .kh-biz-icon svg {
        width: 20px;
        height: 20px;
    }

.kh-biz-text {
    flex: 1 1 auto;
    text-align: right;
}

.kh-biz-role {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--kh-navy);
    display: block;
}

.kh-biz-org {
    font-size: 12.5px;
    color: #6B7686;
    display: block;
    margin-top: 2px;
}

.kh-biz-logo {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

    .kh-biz-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* ---- شبكة التواصل (أيقونات مربعة) ---- */
.kh-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.kh-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 6px;
    background: #fff;
    border: 1px solid var(--kh-line);
    border-radius: 14px;
    text-decoration: none !important;
    color: var(--kh-navy);
    font-size: 11.5px;
    font-weight: 700;
    transition: border-color .15s ease, transform .15s ease;
}

    .kh-social:hover, .kh-social:focus-visible {
        border-color: var(--kh-teal);
        transform: translateY(-1px);
    }

    .kh-social svg {
        width: 24px;
        height: 24px;
    }

/* ---- زر InstaPay - معاملة بصرية مختلفة لأنه إجراء دفع ---- */
.kh-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, var(--kh-navy) 0%, var(--kh-navy-2) 100%);
    color: #fff !important;
    border-radius: 14px;
    padding: 14px 16px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
}

    .kh-pay img {
        height: 22px;
        width: auto;
        display: block;
    }

.kh-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 11.5px;
    color: #9AA3AD;
    margin-top: 34px;
}

@media (max-width: 380px) {
    .kh-card {
        padding: 22px 14px 46px;
    }

    .kh-name-ar {
        font-size: 21px;
    }
}


