/* ═══════════════════════════════════════════════════════════════
   گلونی - رابط کاربری عمومی
   رنگ‌بندی: زرشکی | گلبهی | کرمی | طلایی
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

:root {
    --g-primary:     #7B2D42;
    --g-primary-lt:  #9B3D55;
    --g-primary-dk:  #5A1F2F;
    --g-rose:        #E8A0B0;
    --g-rose-lt:     #F7DDE4;
    --g-rose-xlt:    #FDF0F3;
    --g-cream:       #FDF6F0;
    --g-cream-dk:    #F5E8DE;
    --g-gold:        #C4963A;
    --g-gold-lt:     #E8C87A;
    --g-gold-xlt:    #FEF3D0;
    --g-text:        #2C1820;
    --g-text-muted:  #7A5C65;
    --g-border:      #E0C5CC;
    --g-white:       #FFFFFF;
    --g-success:     #3D7A5A;
    --g-error:       #C0392B;
    --g-shadow:      0 4px 20px rgba(123,45,66,0.10);
    --g-shadow-lg:   0 12px 40px rgba(123,45,66,0.16);
    --g-radius:      14px;
    --g-radius-sm:   8px;
    --g-radius-xs:   5px;
}

/* ── پایه ── */
.geloni-section { direction: rtl; font-family: 'Vazirmatn', Tahoma, Arial, sans-serif; color: var(--g-text); }
.geloni-section * { box-sizing: border-box; }
.geloni-container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }

/* ── بردکرامب ── */
.geloni-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--g-text-muted);
    direction: rtl;
}
.geloni-breadcrumb a { color: var(--g-primary); text-decoration: none; font-weight: 600; }
.geloni-breadcrumb a:hover { text-decoration: underline; }

/* ══════════════════════════════════
   صفحه جستجوی مدرک
══════════════════════════════════ */
.geloni-search-hero {
    background: linear-gradient(135deg, var(--g-primary-dk) 0%, var(--g-primary) 50%, var(--g-primary-lt) 100%);
    border-radius: var(--g-radius);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.geloni-search-hero::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(232,200,122,0.15);
    border-radius: 50%;
}
.geloni-search-hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    background: rgba(232,160,176,0.12);
    border-radius: 50%;
}
.geloni-search-hero-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--g-white);
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}
.geloni-search-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 32px;
    position: relative;
    z-index: 1;
}

.geloni-search-box {
    display: flex;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.geloni-search-box input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-family: inherit;
    color: var(--g-text);
    background: var(--g-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    direction: rtl;
    text-align: right;
}
.geloni-search-box input:focus { outline: 2px solid var(--g-gold); }
.geloni-search-box button {
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--g-gold), var(--g-gold-lt));
    color: var(--g-white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(196,150,58,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.geloni-search-box button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,150,58,0.5); }

/* نتایج جستجو */
.geloni-search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.geloni-result-card {
    background: var(--g-white);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: var(--g-text);
    transition: all 0.2s;
    box-shadow: var(--g-shadow);
}
.geloni-result-card:hover {
    border-color: var(--g-primary);
    transform: translateY(-3px);
    box-shadow: var(--g-shadow-lg);
    color: var(--g-text);
    text-decoration: none;
}
.geloni-result-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 3px solid var(--g-rose);
    display: block;
}
.geloni-result-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g-primary), var(--g-rose));
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--g-white);
}
.geloni-result-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.geloni-result-specialty { font-size: 12px; color: var(--g-text-muted); }

/* ══════════════════════════════════
   پروفایل هنرجو
══════════════════════════════════ */
.geloni-profile-card {
    background: var(--g-white);
    border-radius: var(--g-radius);
    overflow: hidden;
    box-shadow: var(--g-shadow);
    margin-bottom: 28px;
    border: 1px solid var(--g-border);
}
.geloni-profile-banner {
    height: 130px;
    background: linear-gradient(135deg, var(--g-primary-dk) 0%, var(--g-primary) 60%, var(--g-rose) 100%);
    position: relative;
}
.geloni-profile-avatar-wrap {
    position: absolute;
    bottom: -50px;
    right: 36px;
}
.geloni-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--g-white);
    object-fit: cover;
    background: var(--g-cream);
    box-shadow: 0 4px 16px rgba(123,45,66,0.2);
}
.geloni-profile-avatar-ph {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--g-white);
    background: linear-gradient(135deg, var(--g-primary), var(--g-rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--g-white);
    box-shadow: 0 4px 16px rgba(123,45,66,0.2);
}
.geloni-profile-body {
    padding: 60px 36px 32px;
    direction: rtl;
}
.geloni-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--g-gold-xlt), #FFF8E6);
    color: var(--g-gold);
    border: 1px solid var(--g-gold-lt);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}
.geloni-profile-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--g-primary-dk);
    margin: 0 0 8px;
}
.geloni-profile-specialty {
    font-size: 14px;
    color: var(--g-primary);
    font-weight: 600;
    margin-bottom: 4px;
}
.geloni-profile-city {
    font-size: 13px;
    color: var(--g-text-muted);
    margin-bottom: 12px;
}
.geloni-profile-bio {
    font-size: 14px;
    color: var(--g-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
}
.geloni-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}
.geloni-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--g-text-muted);
}
.geloni-meta-item svg { color: var(--g-primary); flex-shrink: 0; }

/* شبکه‌های اجتماعی */
.geloni-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.geloni-social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--g-cream-dk);
    border: 1px solid var(--g-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    color: var(--g-primary);
}
.geloni-social-icon-btn:hover { background: var(--g-primary); color: var(--g-white); border-color: var(--g-primary); transform: translateY(-2px); }
.geloni-social-instagram:hover { background: #E1306C; border-color: #E1306C; }
.geloni-social-whatsapp:hover  { background: #25D366; border-color: #25D366; }
.geloni-social-telegram:hover  { background: #0088CC; border-color: #0088CC; }
.geloni-social-youtube:hover   { background: #FF0000; border-color: #FF0000; }
.geloni-social-tiktok:hover    { background: #000000; border-color: #000000; }
.geloni-social-linkedin:hover  { background: #0077B5; border-color: #0077B5; }

/* ═ دکمه اشتراک‌گذاری ═ */
.geloni-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--g-gold), var(--g-gold-lt));
    color: var(--g-white);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.geloni-share-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.geloni-copy-feedback { font-size: 12px; color: var(--g-success); font-weight: 600; }

/* ══════════════════════════════════
   مدارک
══════════════════════════════════ */
.geloni-section-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--g-primary-dk);
    margin: 0 0 20px;
    padding-right: 16px;
    border-right: 4px solid var(--g-gold);
    direction: rtl;
}

.geloni-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.geloni-cert-card {
    background: var(--g-white);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    overflow: hidden;
    box-shadow: var(--g-shadow);
    transition: all 0.2s;
    direction: rtl;
}
.geloni-cert-card:hover { transform: translateY(-3px); box-shadow: var(--g-shadow-lg); }
.geloni-cert-card-header {
    background: linear-gradient(135deg, var(--g-primary) 0%, var(--g-primary-lt) 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.geloni-cert-card-header::after {
    content: '🪡';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    opacity: 0.3;
}
.geloni-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    color: var(--g-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}
.geloni-cert-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--g-white);
    margin: 0;
}
.geloni-cert-category {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}
.geloni-cert-card-body {
    padding: 20px;
}
.geloni-cert-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.geloni-cert-meta-item { font-size: 12px; }
.geloni-cert-meta-label { color: var(--g-text-muted); margin-bottom: 2px; }
.geloni-cert-meta-val { font-weight: 700; color: var(--g-text); }
.geloni-cert-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.geloni-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--g-primary);
    color: var(--g-white);
    border: none;
    border-radius: var(--g-radius-xs);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s;
}
.geloni-btn-primary:hover { background: var(--g-primary-dk); color: var(--g-white); text-decoration: none; }
.geloni-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--g-gold), var(--g-gold-lt));
    color: var(--g-white);
    border: none;
    border-radius: var(--g-radius-xs);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: opacity 0.2s;
}
.geloni-btn-gold:hover { opacity: 0.9; color: var(--g-white); text-decoration: none; }
.geloni-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: var(--g-primary);
    border: 2px solid var(--g-primary);
    border-radius: var(--g-radius-xs);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: all 0.2s;
}
.geloni-btn-outline:hover { background: var(--g-primary); color: var(--g-white); text-decoration: none; }

/* ══════════════════════════════════
   پورتفولیو
══════════════════════════════════ */
.geloni-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}
.geloni-portfolio-item {
    position: relative;
    border-radius: var(--g-radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid var(--g-border);
    cursor: pointer;
    transition: all 0.2s;
}
.geloni-portfolio-item:hover { border-color: var(--g-primary); transform: scale(1.02); }
.geloni-portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.geloni-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123,45,66,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.2s;
}
.geloni-portfolio-item:hover .geloni-portfolio-overlay { opacity: 1; }
.geloni-portfolio-caption {
    color: var(--g-white);
    font-size: 12px;
    font-weight: 600;
    direction: rtl;
}

/* ══════════════════════════════════
   تأیید مدرک
══════════════════════════════════ */
.geloni-verify-card {
    background: var(--g-white);
    border-radius: var(--g-radius);
    overflow: hidden;
    box-shadow: var(--g-shadow-lg);
    border: 1px solid var(--g-border);
    max-width: 700px;
    margin: 0 auto;
    direction: rtl;
}
.geloni-verify-header {
    background: linear-gradient(135deg, var(--g-primary-dk), var(--g-primary));
    padding: 32px;
    text-align: center;
    color: var(--g-white);
    position: relative;
}
.geloni-verify-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.geloni-verify-title { font-size: 24px; font-weight: 800; margin: 0 0 8px; }
.geloni-verify-subtitle { font-size: 14px; opacity: 0.8; margin: 0; }
.geloni-verify-body { padding: 32px; }
.geloni-verify-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}
.geloni-verify-field { background: var(--g-cream); border-radius: var(--g-radius-sm); padding: 16px; }
.geloni-verify-field-label { font-size: 11px; color: var(--g-text-muted); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; }
.geloni-verify-field-val { font-size: 16px; font-weight: 700; color: var(--g-primary-dk); }
.geloni-verify-valid {
    background: linear-gradient(135deg, #E8F5EE, #D4EDDA);
    border: 2px solid #A8D5B5;
    border-radius: var(--g-radius-sm);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--g-success);
    font-weight: 700;
}

/* ══════════════════════════════════
   ورود
══════════════════════════════════ */
.geloni-login-wrap {
    max-width: 440px;
    margin: 60px auto;
    direction: rtl;
}
.geloni-login-card {
    background: var(--g-white);
    border-radius: var(--g-radius);
    overflow: hidden;
    box-shadow: var(--g-shadow-lg);
    border: 1px solid var(--g-border);
}
.geloni-login-header {
    background: linear-gradient(135deg, var(--g-primary-dk), var(--g-primary));
    padding: 32px;
    text-align: center;
}
.geloni-login-logo {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.geloni-login-title { font-size: 22px; font-weight: 800; color: var(--g-white); margin: 0 0 6px; }
.geloni-login-subtitle { font-size: 13px; color: rgba(255,255,255,0.75); margin: 0; }
.geloni-login-body { padding: 32px; }
.geloni-form-group {
    margin-bottom: 18px;
}
.geloni-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--g-text); margin-bottom: 7px; }
.geloni-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--g-border);
    border-radius: var(--g-radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--g-text);
    background: var(--g-cream);
    direction: rtl;
    text-align: right;
    transition: border-color 0.2s;
}
.geloni-form-group input:focus { outline: none; border-color: var(--g-primary); background: var(--g-white); box-shadow: 0 0 0 3px rgba(123,45,66,0.08); }
.geloni-form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--g-primary), var(--g-primary-lt));
    color: var(--g-white);
    border: none;
    border-radius: var(--g-radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.geloni-form-submit:hover { background: linear-gradient(135deg, var(--g-gold), var(--g-gold-lt)); }
.geloni-login-feedback {
    padding: 12px;
    border-radius: var(--g-radius-sm);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    display: none;
}
.geloni-login-feedback.error { background: #FAD7D3; color: var(--g-error); }
.geloni-login-footer {
    padding: 18px 32px;
    background: var(--g-cream);
    text-align: center;
    font-size: 13px;
    color: var(--g-text-muted);
    direction: rtl;
}

/* ══════════════════════════════════
   داشبورد هنرجو
══════════════════════════════════ */
.geloni-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
    direction: rtl;
}
.geloni-sidebar {
    background: var(--g-white);
    border-radius: var(--g-radius);
    border: 1px solid var(--g-border);
    overflow: hidden;
    box-shadow: var(--g-shadow);
    position: sticky;
    top: 24px;
}
.geloni-sidebar-header {
    background: linear-gradient(135deg, var(--g-primary-dk), var(--g-primary));
    padding: 24px;
    text-align: center;
    position: relative;
}
.geloni-sidebar-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.5);
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
    cursor: pointer;
    transition: border-color 0.2s;
}
.geloni-sidebar-avatar:hover { border-color: var(--g-gold); }
.geloni-sidebar-avatar-ph {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.2);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--g-white);
    cursor: pointer;
}
.geloni-sidebar-name { font-size: 16px; font-weight: 700; color: var(--g-white); margin: 0 0 4px; }
.geloni-sidebar-specialty { font-size: 12px; color: rgba(255,255,255,0.7); }
.geloni-sidebar-nav { padding: 12px 0; }
.geloni-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--g-text);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    direction: rtl;
}
.geloni-sidebar-nav a:hover,
.geloni-sidebar-nav a.active { background: var(--g-rose-xlt); color: var(--g-primary); }
.geloni-sidebar-nav a .nav-icon { font-size: 18px; width: 24px; text-align: center; }
.geloni-sidebar-nav a span { font-size: 12px; background: var(--g-primary); color: var(--g-white); padding: 2px 8px; border-radius: 10px; margin-right: auto; }

/* بخش اصلی داشبورد */
.geloni-dash-main { flex: 1; }
.geloni-dash-section { display: none; }
.geloni-dash-section.active { display: block; }
.geloni-dash-card {
    background: var(--g-white);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--g-shadow);
    direction: rtl;
}

/* آمار داشبورد */
.geloni-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.geloni-dash-stat {
    background: var(--g-white);
    border: 1px solid var(--g-border);
    border-radius: var(--g-radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--g-shadow);
    position: relative;
    overflow: hidden;
}
.geloni-dash-stat::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; left: 0;
    height: 3px;
    background: linear-gradient(to left, var(--g-primary), var(--g-rose));
}
.geloni-dash-stat-val { font-size: 28px; font-weight: 800; color: var(--g-primary); }
.geloni-dash-stat-label { font-size: 12px; color: var(--g-text-muted); margin-top: 4px; }

/* ══════════════════════════════════
   نمایش نقشه گوگل
══════════════════════════════════ */
.geloni-map-wrap {
    margin-top: 20px;
    border-radius: var(--g-radius-sm);
    overflow: hidden;
    border: 1px solid var(--g-border);
}
.geloni-map-wrap iframe { display: block; }

/* ══════════════════════════════════
   پیام‌ها
══════════════════════════════════ */
.geloni-feedback {
    padding: 12px 18px;
    border-radius: var(--g-radius-sm);
    font-size: 13px;
    font-weight: 600;
    margin: 12px 0;
    display: none;
    direction: rtl;
}
.geloni-feedback.success { background: #D4EDDA; color: var(--g-success); border: 1px solid #A8D5B5; }
.geloni-feedback.error   { background: #FAD7D3; color: var(--g-error); border: 1px solid #F0A8A3; }

/* نشانگر بارگذاری */
.geloni-loading {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2.5px solid var(--g-rose-lt);
    border-top-color: var(--g-primary);
    border-radius: 50%;
    animation: g-spin 0.7s linear infinite;
}
@keyframes g-spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════
   ریسپانسیو
══════════════════════════════════ */
@media (max-width: 900px) {
    .geloni-dashboard { grid-template-columns: 1fr; }
    .geloni-sidebar { position: static; }
    .geloni-verify-fields { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .geloni-search-hero { padding: 36px 20px; }
    .geloni-search-hero-title { font-size: 22px; }
    .geloni-search-box { flex-direction: column; }
    .geloni-container { padding: 20px 16px; }
    .geloni-dash-stats { grid-template-columns: 1fr 1fr; }
    .geloni-profile-body { padding: 55px 20px 24px; }
    .geloni-certs-grid { grid-template-columns: 1fr; }
    .geloni-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
