 /* --- استایل‌های بخش مشاور --- */
        .agent-info {
            border-top: 1px solid #e0e0e0;
            padding-top: 1rem;
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .agent-profile {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .agent-icon {
            width: 50px;
            height: 50px;
            color: #7f8c8d;
            background-color: #ecf0f1;
            padding: 8px;
            border-radius: 50%;
        }

        .agent-details {
            display: flex;
            flex-direction: column;
        }

        .agent-name {
            font-size: 14px;
            color: #2c3e50;
            font-weight: 700;
        }

        .agent-title {
            font-size: 12px;
            color: #7f8c8d;
        }

        .contact-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .contact-button:hover {
            background-color: #229954;
            transform: scale(1.1);
        }

        .contact-button svg {
            width: 22px;
            height: 22px;
        }



